Struct opentelemetry::sdk::metrics::data::HistogramDataPoint
source · pub struct HistogramDataPoint<T> {
pub attributes: AttributeSet,
pub start_time: SystemTime,
pub time: SystemTime,
pub count: u64,
pub bounds: Vec<f64>,
pub bucket_counts: Vec<u64>,
pub min: Option<T>,
pub max: Option<T>,
pub sum: T,
pub exemplars: Vec<Exemplar<T>>,
}
Expand description
A single histogram data point in a time series.
Fields§
§attributes: AttributeSet
The set of key value pairs that uniquely identify the time series.
start_time: SystemTime
The time when the time series was started.
time: SystemTime
The time when the time series was recorded.
count: u64
The number of updates this histogram has been calculated with.
bounds: Vec<f64>
The upper bounds of the buckets of the histogram.
Because the last boundary is +infinity this one is implied.
bucket_counts: Vec<u64>
The count of each of the buckets.
min: Option<T>
The minimum value recorded.
max: Option<T>
The maximum value recorded.
sum: T
The sum of the values recorded.
exemplars: Vec<Exemplar<T>>
The sampled Exemplars collected during the time series.
Trait Implementations§
source§impl<T> Clone for HistogramDataPoint<T>where
T: Copy,
impl<T> Clone for HistogramDataPoint<T>where T: Copy,
source§fn clone(&self) -> HistogramDataPoint<T>
fn clone(&self) -> HistogramDataPoint<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<T> RefUnwindSafe for HistogramDataPoint<T>where T: RefUnwindSafe,
impl<T> Send for HistogramDataPoint<T>where T: Send,
impl<T> Sync for HistogramDataPoint<T>where T: Sync,
impl<T> Unpin for HistogramDataPoint<T>where T: Unpin,
impl<T> UnwindSafe for HistogramDataPoint<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more