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:



1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 1342

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