Struct gapi_grpc::google::monitoring::v3::DroppedLabels[][src]

pub struct DroppedLabels {
    pub label: HashMap<String, String>,
}

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.

Fields

label: HashMap<String, String>

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

Trait Implementations

impl Clone for DroppedLabels[src]

impl Debug for DroppedLabels[src]

impl Default for DroppedLabels[src]

impl Message for DroppedLabels[src]

impl PartialEq<DroppedLabels> for DroppedLabels[src]

impl StructuralPartialEq for DroppedLabels[src]

Auto Trait Implementations

impl RefUnwindSafe for DroppedLabels

impl Send for DroppedLabels

impl Sync for DroppedLabels

impl Unpin for DroppedLabels

impl UnwindSafe for DroppedLabels

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]