pub struct AnalyticsOverview {
pub total_queries: u64,
pub avg_latency_ms: f64,
pub p95_latency_ms: f64,
pub p99_latency_ms: f64,
pub queries_per_second: f64,
pub error_rate: f64,
pub cache_hit_rate: f64,
pub storage_used_bytes: u64,
pub total_vectors: u64,
pub total_namespaces: u64,
pub uptime_seconds: u64,
}Expand description
Analytics overview response
Fields§
§total_queries: u64§avg_latency_ms: f64§p95_latency_ms: f64§p99_latency_ms: f64§queries_per_second: f64§error_rate: f64§cache_hit_rate: f64§storage_used_bytes: u64§total_vectors: u64§total_namespaces: u64§uptime_seconds: u64Trait Implementations§
Source§impl Clone for AnalyticsOverview
impl Clone for AnalyticsOverview
Source§fn clone(&self) -> AnalyticsOverview
fn clone(&self) -> AnalyticsOverview
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 moreSource§impl Debug for AnalyticsOverview
impl Debug for AnalyticsOverview
Source§impl<'de> Deserialize<'de> for AnalyticsOverview
impl<'de> Deserialize<'de> for AnalyticsOverview
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnalyticsOverview
impl RefUnwindSafe for AnalyticsOverview
impl Send for AnalyticsOverview
impl Sync for AnalyticsOverview
impl Unpin for AnalyticsOverview
impl UnsafeUnpin for AnalyticsOverview
impl UnwindSafe for AnalyticsOverview
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