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

The number of failed compare and delete operations.

The number of successful compare and delete operations.

The number of failed compare and swap operations.

The number of successful compare and swap operations.

The number of failed create operations.

The number of successful create operations.

The number of failed delete operations.

The number of successful delete operations.

The number of expire operations.

The number of failed get operations.

The number of successful get operations.

The number of failed set operations.

The number of successful set operations.

The number of failed update operations.

The number of successful update operations.

The number of watchers.

Trait Implementations

impl Clone for StoreStats
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StoreStats
[src]

Formats the value using the given formatter.

impl Eq for StoreStats
[src]

impl Hash for StoreStats
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for StoreStats
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.