Struct tremor_otelapis::opentelemetry::proto::metrics::v1::DoubleSummaryDataPoint[][src]

pub struct DoubleSummaryDataPoint {
    pub labels: Vec<StringKeyValue>,
    pub start_time_unix_nano: u64,
    pub time_unix_nano: u64,
    pub count: u64,
    pub sum: f64,
    pub quantile_values: Vec<ValueAtQuantile>,
}

DoubleSummaryDataPoint is a single data point in a timeseries that describes the time-varying values of a Summary metric.

Fields

labels: Vec<StringKeyValue>

The set of labels that uniquely identify this timeseries.

start_time_unix_nano: u64

start_time_unix_nano is the last time when the aggregation value was reset to “zero”. For some metric types this is ignored, see data types for more details.

The aggregation value is over the time interval (start_time_unix_nano, time_unix_nano].

Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.

Value of 0 indicates that the timestamp is unspecified. In that case the timestamp may be decided by the backend.

time_unix_nano: u64

time_unix_nano is the moment when this aggregation value was reported.

Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.

count: u64

count is the number of values in the population. Must be non-negative.

sum: f64

sum of the values in the population. If count is zero then this field must be zero.

quantile_values: Vec<ValueAtQuantile>

(Optional) list of values at different quantiles of the distribution calculated from the current snapshot. The quantiles must be strictly increasing.

Trait Implementations

impl Clone for DoubleSummaryDataPoint[src]

impl Debug for DoubleSummaryDataPoint[src]

impl Default for DoubleSummaryDataPoint[src]

impl Message for DoubleSummaryDataPoint[src]

impl PartialEq<DoubleSummaryDataPoint> for DoubleSummaryDataPoint[src]

impl StructuralPartialEq for DoubleSummaryDataPoint[src]

Auto Trait Implementations

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>, 

impl<T> WithSubscriber for T[src]