Class: Google::Cloud::Container::V1::MonitoringComponentConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::MonitoringComponentConfig
- 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
-
#enable_components ⇒ ::Array<::Google::Cloud::Container::V1::MonitoringComponentConfig::Component>
Select components to collect metrics.
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.
5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 5904 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 # 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 |