Class: Google::Apis::MonitoringV3::DroppedLabels
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::DroppedLabels
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb
Overview
A set of (label, value) pairs that were removed from a Distribution time series during aggregation and then added as an attachment to a Distribution. Exemplar.The full label set for the exemplars is constructed by using the dropped pairs in combination with the label values that remain on the aggregated Distribution time series. The constructed full label set can be used to identify the specific entity, such as the instance or job, which might be contributing to a long-tail. However, with dropped labels, the storage requirements are reduced because only the aggregated distribution values for a large group of time series are stored.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
-
#label ⇒ Hash<String,String>
Map from label to its value, for all labels dropped in any aggregation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DroppedLabels
constructor
A new instance of DroppedLabels.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DroppedLabels
Returns a new instance of DroppedLabels.
1282 1283 1284 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1282 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label ⇒ Hash<String,String>
Map from label to its value, for all labels dropped in any aggregation.
Corresponds to the JSON property label
1280 1281 1282 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1280 def label @label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1287 1288 1289 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1287 def update!(**args) @label = args[:label] if args.key?(:label) end |