Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
metrics.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24open Prometheus let namespace = "ocurrent" let subsystem = "docker" let docker_pull_events = let help = "Incoming docker pull events" in Gauge.v ~help ~namespace ~subsystem "pull_events" let docker_push_events = let help = "Outgoing docker push events" in Gauge.v ~help ~namespace ~subsystem "push_events" let docker_push_manifest_events = let help = "Outgoing docker push manifest events" in Gauge.v ~help ~namespace ~subsystem "push_manifest_events" let docker_peek_events = let help = "Incoming docker peek events" in Gauge.v ~help ~namespace ~subsystem "peek_events" let docker_build_events = let help = "Docker build events" in Gauge.v ~help ~namespace ~subsystem "build_events"