Class: Google::Cloud::Container::V1beta1::ManagedOpenTelemetryConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::ManagedOpenTelemetryConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
ManagedOpenTelemetryConfig is the configuration for the GKE Managed OpenTelemetry pipeline.
Defined Under Namespace
Modules: Scope
Instance Attribute Summary collapse
-
#scope ⇒ ::Google::Cloud::Container::V1beta1::ManagedOpenTelemetryConfig::Scope
Scope of the Managed OpenTelemetry pipeline.
Instance Attribute Details
#scope ⇒ ::Google::Cloud::Container::V1beta1::ManagedOpenTelemetryConfig::Scope
Returns Scope of the Managed OpenTelemetry pipeline.
9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 9141 class ManagedOpenTelemetryConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Scope is the scope of the Managed OpenTelemetry pipeline. module Scope # SCOPE_UNSPECIFIED is when the scope is not set. SCOPE_UNSPECIFIED = 0 # NONE is used to disable the Managed OpenTelemetry pipeline. NONE = 1 # COLLECTION_AND_INSTRUMENTATION_COMPONENTS is used to enable the Managed # OpenTelemetry pipeline for collection and instrumentation components. COLLECTION_AND_INSTRUMENTATION_COMPONENTS = 2 end end |