Skip to contents

Returns total counts of chunk deliveries, failures, and timeouts since the node started.

Usage

mc_get_chunk_queue_totals(conn)

Arguments

conn

A connection object created by mc_connect.

Value

A list with cumulative statistics:

delivered

Number of chunks successfully delivered.

undelivered

Number of chunks not yet delivered.

timeouts

Number of delivery timeouts.

...

Other totals.

See also

mc_get_chunk_queue_info for current queue state.

Other off-chain data: mc_get_chunk_queue_info()

Examples

if (FALSE) { # \dontrun{
totals <- mc_get_chunk_queue_totals(conn)
print(totals)
} # }