Class: Google::Apis::MonitoringV3::Metric

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb

Overview

A specific metric, identified by specifying values for all of the labels of a MetricDescriptor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Metric

Returns a new instance of Metric.



2144
2145
2146
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2144

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#labelsHash<String,String>

The set of label values that uniquely identify this metric. All labels listed in the MetricDescriptor must be assigned values. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


2136
2137
2138
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2136

def labels
  @labels
end

#typeString

An existing metric type, see google.api.MetricDescriptor. For example, custom. googleapis.com/invoice/paid/amount. Corresponds to the JSON property type

Returns:

  • (String)


2142
2143
2144
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2142

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2149
2150
2151
2152
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2149

def update!(**args)
  @labels = args[:labels] if args.key?(:labels)
  @type = args[:type] if args.key?(:type)
end