Struct nakadion::metrics::DevNullMetricsCollector[][src]

pub struct DevNullMetricsCollector;

Using this disables metrics collection.

Trait Implementations

impl Clone for DevNullMetricsCollector
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl MetricsCollector for DevNullMetricsCollector
[src]

A connect attempt for streaming has been made.

A connect attempt for streaming failed.

A connect attempt the consumer requested succeeded. Read more

The instant of when the connection that just shut down was initiated. Used to determine for how long Nakadion was connected. Read more

A line with the given number of bytes was reveived.

A line with an info field was received. The info fieldhad bytes bytes.. Read more

A keep alive line with the given number of bytes was reveived.

A line of events with the given number of bytes was reveived.

Time elapsed from receiving the batch from Nakadi.

Time elapsed from receiving the batch from Nakadi.

The number of workers currently processing partitions.

Time elapsed from receiving the batch from Nakadi.

A worker was started

A worker was stopped

Events with a comined legth of bytes bytes have been received. Read more

A batch has been processed where processing was started at 'started`.

The worker processed n events of the same batch.

Time elapsed from receiving the batch from Nakadi.

A cursor has been committed and the instant when the commit attempt was started is given. Read more

The number of batches that have been committed with the last cursor.

The number of events that have been committed with the last cursor.

A commit attempt has been made. It was started at commit_attempt_started. No difference is made between success and failure. Read more

A cursor has not been committed and the instant when the commit attempt was started is given. Read more

How old is this cursor first(oldest) that is committed with the current cursor? received_at is the timestamp when Nakadion received the batch Read more

How old is this cursor that is currently committed? This is the cursor that also commits the previously buffered cursors. received_at is the timestamp when Nakadion received the batch Read more

How much time has elapsed from receiving intial cursor to be committed until that cursor finally got committed? Read more

The time left when committing the cursor until the stream would have become invalid. Read more

A panic occured somewhere.

Auto Trait Implementations