Legend:
Library
Module
Module type
Parameter
Class
Class type
Tags indexes metric sources, and allow to enable/disable data collection at runtime.
Tags
Tags are heterogeneous lists of key names and type of values, which are associated to data sources. Filters on key names allow to select which data sources is enabled at runtime. Disabled data sources have a very low cost -- only allocating a closure.
For instance, to define the tags "PID", "IP" and "host", respectively of type int, Ipaddr.t:
let ipaddr = Tags.v Ipaddr.pp_hum let t =
Tags.[ int "PID" ; ipaddr "IP" ; string "host"; ]