Class: Google::Cloud::Container::V1::MonitoringComponentConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1/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::V1::MonitoringComponentConfig::Component>

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

Returns:



4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
# File 'proto_docs/google/container/v1/cluster_service.rb', line 4254

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

    # kube-apiserver
    APISERVER = 3

    # kube-scheduler
    SCHEDULER = 4

    # kube-controller-manager
    CONTROLLER_MANAGER = 5
  end
end