Class: Google::Cloud::Container::V1beta1::MonitoringComponentConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::MonitoringComponentConfig
- 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
-
#enable_components ⇒ ::Array<::Google::Cloud::Container::V1beta1::MonitoringComponentConfig::Component>
Select components to collect metrics.
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.
6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 6296 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 # CADVISOR CADVISOR = 13 # KUBELET KUBELET = 14 # NVIDIA Data Center GPU Manager (DCGM) DCGM = 15 end end |