Class: Google::Apis::MonitoringV3::DroppedLabels

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 set of (label, value) pairs which were dropped during aggregation, attached to google.api.Distribution.Exemplars in google.api.Distribution values during aggregation.These values are used in combination with the label values that remain on the aggregated Distribution timeseries to construct the full label set for the exemplar values. The resulting full label set may be used to identify the specific task/job/instance (for example) which may be contributing to a long-tail, while allowing the storage savings of only storing aggregated distribution values for a large group.Note that there are no guarantees on ordering of the labels from exemplar-to-exemplar and from distribution-to-distribution in the same stream, and there may be duplicates. It is up to clients to resolve any ambiguities.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DroppedLabels

Returns a new instance of DroppedLabels.



1035
1036
1037
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1035

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

Instance Attribute Details

#labelHash<String,String>

Map from label to its value, for all labels dropped in any aggregation. Corresponds to the JSON property label

Returns:

  • (Hash<String,String>)


1033
1034
1035
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1033

def label
  @label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1040
1041
1042
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1040

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