Struct PrometheusLayerBuilder
pub struct PrometheusLayerBuilder {
operation_duration_seconds_buckets: Vec<f64>,
operation_bytes_buckets: Vec<f64>,
path_label_level: usize,
}
Expand description
PrometheusLayerBuilder
is a config builder to build a PrometheusLayer
.
Fields§
§operation_duration_seconds_buckets: Vec<f64>
§operation_bytes_buckets: Vec<f64>
§path_label_level: usize
Implementations§
§impl PrometheusLayerBuilder
impl PrometheusLayerBuilder
pub fn operation_duration_seconds_buckets(
self,
buckets: Vec<f64>,
) -> PrometheusLayerBuilder
pub fn operation_duration_seconds_buckets( self, buckets: Vec<f64>, ) -> PrometheusLayerBuilder
Set buckets for operation_duration_seconds
histogram.
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let registry = prometheus::default_registry();
let buckets = prometheus::exponential_buckets(0.01, 2.0, 16).unwrap();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.operation_duration_seconds_buckets(buckets)
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
pub fn operation_bytes_buckets(
self,
buckets: Vec<f64>,
) -> PrometheusLayerBuilder
pub fn operation_bytes_buckets( self, buckets: Vec<f64>, ) -> PrometheusLayerBuilder
Set buckets for operation_bytes
histogram.
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let registry = prometheus::default_registry();
let buckets = prometheus::exponential_buckets(1.0, 2.0, 16).unwrap();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.operation_bytes_buckets(buckets)
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
pub fn path_label(self, level: usize) -> PrometheusLayerBuilder
pub fn path_label(self, level: usize) -> PrometheusLayerBuilder
Set the level of path label.
- level = 0: we will ignore the path label.
- level > 0: the path label will be the path split by “/” and get the last n level, if n=1 and input path is “abc/def/ghi”, and then we will get “abc/” as the path label.
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let registry = prometheus::default_registry();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.path_label(1)
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
pub fn register(self, registry: &Registry) -> Result<PrometheusLayer, Error>
pub fn register(self, registry: &Registry) -> Result<PrometheusLayer, Error>
Register the metrics into the given registry and return a PrometheusLayer
.
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let registry = prometheus::default_registry();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
pub fn register_default(self) -> Result<PrometheusLayer, Error>
pub fn register_default(self) -> Result<PrometheusLayer, Error>
Register the metrics into the default registry and return a PrometheusLayer
.
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.register_default()
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
Auto Trait Implementations§
impl Freeze for PrometheusLayerBuilder
impl RefUnwindSafe for PrometheusLayerBuilder
impl Send for PrometheusLayerBuilder
impl Sync for PrometheusLayerBuilder
impl Unpin for PrometheusLayerBuilder
impl UnwindSafe for PrometheusLayerBuilder
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request