pub struct ClusterStatistics {
pub metrics: MetricsSnapshot,
pub scheduler: SchedulerStats,
pub worker_pool: WorkerPoolStatistics,
pub coordinator: CoordinatorStatistics,
pub fault_tolerance: FaultToleranceStatistics,
pub locality: LocalityStats,
pub cache: CacheStats,
pub replication: ReplicationStatistics,
}Expand description
Cluster-wide statistics.
Fields§
§metrics: MetricsSnapshotMetrics snapshot
scheduler: SchedulerStatsScheduler statistics
worker_pool: WorkerPoolStatisticsWorker pool statistics
coordinator: CoordinatorStatisticsCoordinator statistics
fault_tolerance: FaultToleranceStatisticsFault tolerance statistics
locality: LocalityStatsLocality statistics
cache: CacheStatsCache statistics
replication: ReplicationStatisticsReplication statistics
Trait Implementations§
Source§impl Clone for ClusterStatistics
impl Clone for ClusterStatistics
Source§fn clone(&self) -> ClusterStatistics
fn clone(&self) -> ClusterStatistics
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 ClusterStatistics
impl Debug for ClusterStatistics
Source§impl<'de> Deserialize<'de> for ClusterStatistics
impl<'de> Deserialize<'de> for ClusterStatistics
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 ClusterStatistics
impl RefUnwindSafe for ClusterStatistics
impl Send for ClusterStatistics
impl Sync for ClusterStatistics
impl Unpin for ClusterStatistics
impl UnsafeUnpin for ClusterStatistics
impl UnwindSafe for ClusterStatistics
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