Module Mavryk_store_unix.Store_metrics
type metrics = {
checkpoint_level : Prometheus.Gauge.t;
savepoint_level : Prometheus.Gauge.t;
caboose_level : Prometheus.Gauge.t;
alternate_heads_count : Prometheus.Gauge.t;
last_written_block_size : Prometheus.Gauge.t;
last_store_merge_time : Prometheus.Gauge.t;
}
type collectors = {
mutable invalid_blocks : unit -> float Lwt.t;
}
val set_invalid_blocks_collector : (unit -> float Lwt.t) -> unit