pub struct TableStats {
pub table_name: String,
pub total_queries: u64,
pub by_access_pattern: HashMap<AccessPattern, u64>,
pub by_workload: HashMap<WorkloadType, u64>,
pub avg_latency_us: u64,
pub p99_latency_us: u64,
pub shard_hit_rate: f64,
pub cache_hit_rate: f64,
pub last_query_time: Option<Instant>,
}Expand description
Statistics for a specific table
Fields§
§table_name: StringTable name
total_queries: u64Total queries routed
by_access_pattern: HashMap<AccessPattern, u64>Queries by access pattern
by_workload: HashMap<WorkloadType, u64>Queries by workload type
avg_latency_us: u64Average latency in microseconds
p99_latency_us: u64P99 latency in microseconds
shard_hit_rate: f64Shard hit rate (queries with shard key)
cache_hit_rate: f64Cache utilization
last_query_time: Option<Instant>Last query time
Implementations§
Source§impl TableStats
impl TableStats
Sourcepub fn record_query(
&mut self,
pattern: AccessPattern,
workload: WorkloadType,
latency_us: u64,
)
pub fn record_query( &mut self, pattern: AccessPattern, workload: WorkloadType, latency_us: u64, )
Record a query
Trait Implementations§
Source§impl Clone for TableStats
impl Clone for TableStats
Source§fn clone(&self) -> TableStats
fn clone(&self) -> TableStats
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 TableStats
impl Debug for TableStats
Source§impl Default for TableStats
impl Default for TableStats
Source§fn default() -> TableStats
fn default() -> TableStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableStats
impl RefUnwindSafe for TableStats
impl Send for TableStats
impl Sync for TableStats
impl Unpin for TableStats
impl UnsafeUnpin for TableStats
impl UnwindSafe for TableStats
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more