Class: Google::Cloud::Container::V1::ManagedOpenTelemetryConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::ManagedOpenTelemetryConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/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::V1::ManagedOpenTelemetryConfig::Scope
Scope of the Managed OpenTelemetry pipeline.
Instance Attribute Details
#scope ⇒ ::Google::Cloud::Container::V1::ManagedOpenTelemetryConfig::Scope
Returns Scope of the Managed OpenTelemetry pipeline.
8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 8392 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 |