pub struct HistogramOpts {
    pub common_opts: Opts,
    pub buckets: Vec<f64>,
}
Expand description

A struct that bundles the options for creating a Histogram metric. It is mandatory to set Name and Help to a non-empty string. All other fields are optional and can safely be left at their zero value.

Fields§

§common_opts: Opts

A container holding various options.

§buckets: Vec<f64>

Defines the buckets into which observations are counted. Each element in the slice is the upper inclusive bound of a bucket. The values must be sorted in strictly increasing order. There is no need to add a highest bucket with +Inf bound, it will be added implicitly. The default value is DefBuckets.

Implementations§

source§

impl HistogramOpts

source

pub fn new<S1, S2>(name: S1, help: S2) -> HistogramOpts
where S1: Into<String>, S2: Into<String>,

Create a HistogramOpts with the name and help arguments.

source

pub fn namespace<S>(self, namespace: S) -> HistogramOpts
where S: Into<String>,

namespace sets the namespace.

source

pub fn subsystem<S>(self, subsystem: S) -> HistogramOpts
where S: Into<String>,

subsystem sets the sub system.

source

pub fn const_labels( self, const_labels: HashMap<String, String> ) -> HistogramOpts

const_labels sets the const labels.

source

pub fn const_label<S1, S2>(self, name: S1, value: S2) -> HistogramOpts
where S1: Into<String>, S2: Into<String>,

const_label adds a const label.

source

pub fn variable_labels(self, variable_labels: Vec<String>) -> HistogramOpts

variable_labels sets the variable labels.

source

pub fn variable_label<S>(self, name: S) -> HistogramOpts
where S: Into<String>,

variable_label adds a variable label.

source

pub fn fq_name(&self) -> String

fq_name returns the fq_name.

source

pub fn buckets(self, buckets: Vec<f64>) -> HistogramOpts

buckets set the buckets.

Trait Implementations§

source§

impl Clone for HistogramOpts

source§

fn clone(&self) -> HistogramOpts

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for HistogramOpts

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Describer for HistogramOpts

source§

fn describe(&self) -> Result<Desc, Error>

describe returns a Desc.
source§

impl From<Opts> for HistogramOpts

source§

fn from(opts: Opts) -> HistogramOpts

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more