pub struct StorageDiskMetrics {
pub last_minute: BTreeMap<String, Value>,
pub api_calls: BTreeMap<String, u64>,
pub total_waiting: u32,
pub total_errors_availability: u64,
pub total_errors_timeout: u64,
pub total_writes: u64,
pub total_deletes: u64,
}Expand description
Per-operation disk counters from storage information.
Fields§
§last_minute: BTreeMap<String, Value>§api_calls: BTreeMap<String, u64>§total_waiting: u32§total_errors_availability: u64§total_errors_timeout: u64§total_writes: u64§total_deletes: u64Trait Implementations§
Source§impl Clone for StorageDiskMetrics
impl Clone for StorageDiskMetrics
Source§fn clone(&self) -> StorageDiskMetrics
fn clone(&self) -> StorageDiskMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StorageDiskMetrics
impl Debug for StorageDiskMetrics
Source§impl Default for StorageDiskMetrics
impl Default for StorageDiskMetrics
Source§fn default() -> StorageDiskMetrics
fn default() -> StorageDiskMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageDiskMetrics
impl<'de> Deserialize<'de> for StorageDiskMetrics
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
impl Eq for StorageDiskMetrics
Source§impl PartialEq for StorageDiskMetrics
impl PartialEq for StorageDiskMetrics
Source§impl Serialize for StorageDiskMetrics
impl Serialize for StorageDiskMetrics
impl StructuralPartialEq for StorageDiskMetrics
Auto Trait Implementations§
impl Freeze for StorageDiskMetrics
impl RefUnwindSafe for StorageDiskMetrics
impl Send for StorageDiskMetrics
impl Sync for StorageDiskMetrics
impl Unpin for StorageDiskMetrics
impl UnsafeUnpin for StorageDiskMetrics
impl UnwindSafe for StorageDiskMetrics
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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