Class: Google::Cloud::Container::V1::ManagedOpenTelemetryConfig

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#scope::Google::Cloud::Container::V1::ManagedOpenTelemetryConfig::Scope

Returns Scope of the Managed OpenTelemetry pipeline.

Returns:



8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
# File 'proto_docs/google/container/v1/cluster_service.rb', line 8317

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