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.
9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 9080 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 |