Struct PrometheusLayer
pub struct PrometheusLayer {
interceptor: PrometheusInterceptor,
}
Expand description
Add prometheus for every operation.
§Prometheus Metrics
We provide several metrics, please see the documentation of observe
module.
For a more detailed explanation of these metrics and how they are used, please refer to the Prometheus documentation.
§Examples
let registry = prometheus::default_registry();
let op = Operator::new(services::Memory::default())?
.layer(
PrometheusLayer::builder()
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
// Write data into object test.
op.write("test", "Hello, World!").await?;
// Read data from object.
let bs = op.read("test").await?;
info!("content: {}", String::from_utf8_lossy(&bs.to_bytes()));
// Get object metadata.
let meta = op.stat("test").await?;
info!("meta: {:?}", meta);
// Export prometheus metrics.
let mut buffer = Vec::<u8>::new();
let encoder = prometheus::TextEncoder::new();
encoder.encode(&prometheus::gather(), &mut buffer).unwrap();
println!("## Prometheus Metrics");
println!("{}", String::from_utf8(buffer.clone()).unwrap());
Ok(())
Fields§
§interceptor: PrometheusInterceptor
Implementations§
§impl PrometheusLayer
impl PrometheusLayer
pub fn builder() -> PrometheusLayerBuilder
pub fn builder() -> PrometheusLayerBuilder
Create a PrometheusLayerBuilder
to set the configuration of metrics.
§Default Configuration
operation_duration_seconds_buckets
:exponential_buckets(0.01, 2.0, 16)
operation_bytes_buckets
:exponential_buckets(1.0, 2.0, 16)
path_label
:0
§Example
// Pick a builder and configure it.
let builder = services::Memory::default();
let registry = prometheus::default_registry();
let duration_seconds_buckets = prometheus::exponential_buckets(0.01, 2.0, 16).unwrap();
let bytes_buckets = prometheus::exponential_buckets(1.0, 2.0, 16).unwrap();
let op = Operator::new(builder)?
.layer(
PrometheusLayer::builder()
.operation_duration_seconds_buckets(duration_seconds_buckets)
.operation_bytes_buckets(bytes_buckets)
.path_label(0)
.register(registry)
.expect("register metrics successfully"),
)
.finish();
debug!("operator: {op:?}");
Ok(())
Trait Implementations§
§impl Clone for PrometheusLayer
impl Clone for PrometheusLayer
§fn clone(&self) -> PrometheusLayer
fn clone(&self) -> PrometheusLayer
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 more§impl Debug for PrometheusLayer
impl Debug for PrometheusLayer
§impl<A> Layer<A> for PrometheusLayerwhere
A: Access,
impl<A> Layer<A> for PrometheusLayerwhere
A: Access,
§type LayeredAccess = MetricsAccessor<A, PrometheusInterceptor>
type LayeredAccess = MetricsAccessor<A, PrometheusInterceptor>
The layered accessor that returned by this layer.
§fn layer(&self, inner: A) -> <PrometheusLayer as Layer<A>>::LayeredAccess
fn layer(&self, inner: A) -> <PrometheusLayer as Layer<A>>::LayeredAccess
Intercept the operations on the underlying storage.
Auto Trait Implementations§
impl Freeze for PrometheusLayer
impl !RefUnwindSafe for PrometheusLayer
impl Send for PrometheusLayer
impl Sync for PrometheusLayer
impl Unpin for PrometheusLayer
impl !UnwindSafe for PrometheusLayer
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,
§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