Class: Google::Cloud::Monitoring::V3::DroppedLabels

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/monitoring/v3/dropped_labels.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.

Defined Under Namespace

Classes: LabelEntry

Instance Attribute Summary collapse

Instance Attribute Details

#label::Google::Protobuf::Map{::String => ::String}

Returns Map from label to its value, for all labels dropped in any aggregation.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Map from label to its value, for all labels dropped in any aggregation.



43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'proto_docs/google/monitoring/v3/dropped_labels.rb', line 43

class DroppedLabels
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end