Class: Google::Cloud::Container::V1beta1::ClusterTelemetry

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1beta1/cluster_service.rb

Overview

Telemetry integration for the cluster.

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Attribute Details

#type::Google::Cloud::Container::V1beta1::ClusterTelemetry::Type

Returns Type of the integration.

Returns:



1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 1006

class ClusterTelemetry
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Type of the integration.
  module Type
    # Not set.
    UNSPECIFIED = 0

    # Monitoring integration is disabled.
    DISABLED = 1

    # Monitoring integration is enabled.
    ENABLED = 2

    # Only system components are monitored and logged.
    SYSTEM_ONLY = 3
  end
end