[][src]Struct plumcast::metrics::NodeMetrics

pub struct NodeMetrics { /* fields omitted */ }

Metrics of a Node.

Methods

impl NodeMetrics[src]

pub fn broadcasted_messages(&self) -> u64[src]

Metric: plumcast_node_broadcasted_messages_total <COUNTER>

pub fn forgot_messages(&self) -> u64[src]

Metric: plumcast_node_forgot_messages_total <COUNTER>

pub fn delivered_messages(&self) -> u64[src]

Metric: plumcast_node_delivered_messages_total <COUNTER>

pub fn connected_neighbors(&self) -> u64[src]

Metric: plumcast_node_connected_neighbors_total <COUNTER>

pub fn disconnected_neighbors(&self) -> u64[src]

Metric: plumcast_node_disconnected_neighbors_total <COUNTER>

pub fn isolated_times(&self) -> u64[src]

Metric: plumcast_node_isolated_times_total <COUNTER>

pub fn deisolated_times(&self) -> u64[src]

Metric: plumcast_node_deisolated_times_total <COUNTER>

pub fn forget_unknown_message_errors(&self) -> u64[src]

Metric: plumcast_node_errors_total { kind="forget_unknown_message" } <COUNTER>

pub fn cannot_send_hyparview_message_errors(&self) -> u64[src]

Metric: plumcast_node_errors_total { kind="cannot_send_hyparview_message" } <COUNTER>

pub fn cannot_send_plumtree_message_errors(&self) -> u64[src]

Metric: plumcast_node_errors_total { kind="cannot_send_plumtree_message" } <COUNTER>

pub fn unknown_plumtree_node_errors(&self) -> u64[src]

Metric: plumcast_node_errors_total { kind="unknown_plumtree_node" } <COUNTER>

Trait Implementations

impl Clone for NodeMetrics[src]

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

Performs copy-assignment from source. Read more

impl Debug for NodeMetrics[src]

Auto Trait Implementations

impl Send for NodeMetrics

impl Sync for NodeMetrics

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]