Get cumulative statistics on off-chain chunk requests
Source:R/node_runtime.R
mc_get_chunk_queue_totals.RdReturns total counts of chunk deliveries, failures, and timeouts since the node started.
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)
} # }