#[non_exhaustive]pub struct HistogramBuilder<'a, T> {
pub instrument_provider: &'a dyn InstrumentProvider,
pub name: Cow<'static, str>,
pub description: Option<Cow<'static, str>>,
pub unit: Option<Cow<'static, str>>,
pub boundaries: Option<Vec<f64>>,
/* private fields */
}
Available on crate feature
metrics
only.Expand description
Configuration for building a Histogram.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.instrument_provider: &'a dyn InstrumentProvider
Instrument provider is used to create the instrument.
name: Cow<'static, str>
Name of the Histogram.
description: Option<Cow<'static, str>>
Description of the Histogram.
unit: Option<Cow<'static, str>>
Unit of the Histogram.
boundaries: Option<Vec<f64>>
Bucket boundaries for the histogram.
Implementations§
Source§impl<'a, T> HistogramBuilder<'a, T>
impl<'a, T> HistogramBuilder<'a, T>
Sourcepub fn with_description<S: Into<Cow<'static, str>>>(
self,
description: S,
) -> Self
pub fn with_description<S: Into<Cow<'static, str>>>( self, description: S, ) -> Self
Set the description for this instrument
Sourcepub fn with_unit<S: Into<Cow<'static, str>>>(self, unit: S) -> Self
pub fn with_unit<S: Into<Cow<'static, str>>>(self, unit: S) -> Self
Set the unit for this instrument.
Unit is case sensitive(kb
is not the same as kB
).
Unit must be:
- ASCII string
- No longer than 63 characters
Sourcepub fn with_boundaries(self, boundaries: Vec<f64>) -> Self
pub fn with_boundaries(self, boundaries: Vec<f64>) -> Self
Set the boundaries for this histogram.
Setting boundaries is optional. By default, the boundaries are set to:
[0.0, 5.0, 10.0, 25.0, 50.0, 75.0, 100.0, 250.0, 500.0, 750.0, 1000.0, 2500.0, 5000.0, 7500.0, 10000.0]
Source§impl<'a> HistogramBuilder<'a, Histogram<f64>>
impl<'a> HistogramBuilder<'a, Histogram<f64>>
Source§impl<'a> HistogramBuilder<'a, Histogram<u64>>
impl<'a> HistogramBuilder<'a, Histogram<u64>>
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for HistogramBuilder<'a, T>
impl<'a, T> !RefUnwindSafe for HistogramBuilder<'a, T>
impl<'a, T> !Send for HistogramBuilder<'a, T>
impl<'a, T> !Sync for HistogramBuilder<'a, T>
impl<'a, T> Unpin for HistogramBuilder<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for HistogramBuilder<'a, T>
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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Available on crate feature
trace
only.Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Available on crate feature
trace
only.