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:



1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 1598

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