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.
6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 6938 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 # JobSet JOBSET = 16 end end |