Class: Google::Cloud::Container::V1::LoggingComponentConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::LoggingComponentConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
LoggingComponentConfig is cluster logging component configuration.
Defined Under Namespace
Modules: Component
Instance Attribute Summary collapse
-
#enable_components ⇒ ::Array<::Google::Cloud::Container::V1::LoggingComponentConfig::Component>
Select components to collect logs.
Instance Attribute Details
#enable_components ⇒ ::Array<::Google::Cloud::Container::V1::LoggingComponentConfig::Component>
Returns Select components to collect logs. An empty set would disable all logging.
7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 7508 class LoggingComponentConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # GKE components exposing logs module Component # Default value. This shouldn't be used. COMPONENT_UNSPECIFIED = 0 # system components SYSTEM_COMPONENTS = 1 # workloads WORKLOADS = 2 # kube-apiserver APISERVER = 3 # kube-scheduler SCHEDULER = 4 # kube-controller-manager CONTROLLER_MANAGER = 5 # kcp-sshd KCP_SSHD = 7 # kcp connection logs KCP_CONNECTION = 8 # horizontal pod autoscaler decision logs KCP_HPA = 9 end end |