public sealed class DroppedLabels : IMessage<DroppedLabels>, IEquatable<DroppedLabels>, IDeepCloneable<DroppedLabels>, IBufferMessage, IMessage
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["The page details the `DroppedLabels` class within the `Google.Cloud.Monitoring.V3` namespace, which is used to manage label-value pairs removed during aggregation of Distribution time series."],["The `DroppedLabels` class is part of the Google Cloud Monitoring .NET library and is available in multiple versions, with version 3.15.0 being the latest."],["`DroppedLabels` implements several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, making it versatile for data manipulation and comparison."],["The class constructor `DroppedLabels` can create an empty instance or a copy from another `DroppedLabels` object, and has one main property called `Label` which provides a map of strings to represent the label and its corresponding value."],["The purpose of `DroppedLabels` is to reduce storage by only storing aggregated distribution values while allowing for the identification of specific entities through the reconstruction of full label sets using dropped labels with remaining labels."]]],[]]