Struct etcd::stats::StoreStats [] [src]

pub struct StoreStats {
    pub compare_and_delete_fail: u64,
    pub compare_and_delete_success: u64,
    pub compare_and_swap_fail: u64,
    pub compare_and_swap_success: u64,
    pub create_fail: u64,
    pub create_success: u64,
    pub delete_fail: u64,
    pub delete_success: u64,
    pub expire_count: u64,
    pub get_fail: u64,
    pub get_success: u64,
    pub set_fail: u64,
    pub set_success: u64,
    pub update_fail: u64,
    pub update_success: u64,
    pub watchers: u64,
}

Statistics about the operations handled by an etcd member.

Fields

compare_and_delete_fail

The number of failed compare and delete operations.

compare_and_delete_success

The number of successful compare and delete operations.

compare_and_swap_fail

The number of failed compare and swap operations.

compare_and_swap_success

The number of successful compare and swap operations.

create_fail

The number of failed create operations.

create_success

The number of successful create operations.

delete_fail

The number of failed delete operations.

delete_success

The number of successful delete operations.

expire_count

The number of expire operations.

get_fail

The number of failed get operations.

get_success

The number of successful get operations.

set_fail

The number of failed set operations.

set_success

The number of successful set operations.

update_fail

The number of failed update operations.

update_success

The number of successful update operations.

watchers

The number of watchers.

Trait Implementations

impl Deserialize for StoreStats

fn deserialize<__D>(deserializer: &mut __D) -> Result<StoreStats, __D::Error> where __D: Deserializer

Derived Implementations

impl Debug for StoreStats

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for StoreStats

fn clone(&self) -> StoreStats

1.0.0fn clone_from(&mut self, source: &Self)