Struct opentelemetry_sdk::metrics::data::HistogramDataPoint
source · pub struct HistogramDataPoint<T> {
pub attributes: Vec<KeyValue>,
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: Vec<KeyValue>
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: Copy> Clone for HistogramDataPoint<T>
impl<T: Copy> Clone for HistogramDataPoint<T>
Auto Trait Implementations§
impl<T> Freeze for HistogramDataPoint<T>where
T: Freeze,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)