pub struct RegisterStats {
pub total_uris: u64,
pub size_bytes: u64,
pub cache: CacheStats,
pub pool: PoolStats,
}Expand description
Statistics about the URI register for observability and OpenTelemetry
Fields§
§total_uris: u64Total number of URIs in the register
size_bytes: u64Total storage size in bytes (includes indexes)
cache: CacheStatsCache performance metrics
pool: PoolStatsConnection pool metrics
Trait Implementations§
Source§impl Clone for RegisterStats
impl Clone for RegisterStats
Source§fn clone(&self) -> RegisterStats
fn clone(&self) -> RegisterStats
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for RegisterStats
impl RefUnwindSafe for RegisterStats
impl Send for RegisterStats
impl Sync for RegisterStats
impl Unpin for RegisterStats
impl UnwindSafe for RegisterStats
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