[][src]Struct opentelemetry_otlp::proto::metrics::v1::IntDataPoint

pub struct IntDataPoint {
    pub labels: Vec<StringKeyValue>,
    pub start_time_unix_nano: u64,
    pub time_unix_nano: u64,
    pub value: i64,
    pub exemplars: Vec<IntExemplar>,
}

IntDataPoint is a single data point in a timeseries that describes the time-varying values of a int64 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.

value: i64

value itself.

exemplars: Vec<IntExemplar>

(Optional) List of exemplars collected from measurements that were used to form the data point

Trait Implementations

impl Clone for IntDataPoint[src]

impl Debug for IntDataPoint[src]

impl Default for IntDataPoint[src]

impl Message for IntDataPoint[src]

impl PartialEq<IntDataPoint> for IntDataPoint[src]

impl StructuralPartialEq for IntDataPoint[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> FutureExt 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]