Struct etcd::stats::SelfStats [] [src]

pub struct SelfStats {
    pub id: String,
    pub name: String,
    pub leader_info: LeaderInfo,
    pub received_append_request_count: u64,
    pub received_bandwidth_rate: Option<f64>,
    pub received_package_rate: Option<f64>,
    pub sent_append_request_count: u64,
    pub sent_bandwidth_rate: Option<f64>,
    pub sent_package_rate: Option<f64>,
    pub start_time: String,
    pub state: String,
}

Statistics about an etcd cluster member.

Fields

The unique Raft ID of the member.

The member's name.

A small amount of information about the leader of the cluster.

The number of received requests.

The bandwidth rate of received requests.

The package rate of received requests.

The number of sent requests.

The bandwidth rate of sent requests.

The package rate of sent requests.

The time the member started.

The Raft state of the member.

Trait Implementations

impl Clone for SelfStats
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SelfStats
[src]

Formats the value using the given formatter.