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:



7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
# File 'proto_docs/google/container/v1/cluster_service.rb', line 7866

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