Class: Google::Cloud::Container::V1beta1::MonitoringComponentConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1beta1/cluster_service.rb

Overview

MonitoringComponentConfig is cluster monitoring component configuration.

Defined Under Namespace

Modules: Component

Instance Attribute Summary collapse

Instance Attribute Details

#enable_components::Array<::Google::Cloud::Container::V1beta1::MonitoringComponentConfig::Component>

Returns Select components to collect metrics. An empty set would disable all monitoring.

Returns:



5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 5990

class MonitoringComponentConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # GKE components exposing metrics
  module Component
    # Default value. This shouldn't be used.
    COMPONENT_UNSPECIFIED = 0

    # system components
    SYSTEM_COMPONENTS = 1

    # Deprecated: Use Google Cloud Managed Service for Prometheus.
    WORKLOADS = 2

    # kube-apiserver
    APISERVER = 3

    # kube-scheduler
    SCHEDULER = 4

    # kube-controller-manager
    CONTROLLER_MANAGER = 5

    # Storage
    STORAGE = 7

    # Horizontal Pod Autoscaling
    HPA = 8

    # Pod
    POD = 9

    # DaemonSet
    DAEMONSET = 10

    # Deployment
    DEPLOYMENT = 11

    # Statefulset
    STATEFULSET = 12
  end
end