C++ Actor Framework 1.0.0
|
Contains a scraper for exposing metrics from an actor system to Prometheus. More...
Classes | |
class | scrape_state |
State for scraping Metrics data. More... | |
Functions | |
auto | scraper (telemetry::metric_registry *registry, timespan proc_import_interval=std::chrono::seconds{1}) |
Creates a scraper for the given actor system. | |
auto | scraper (actor_system &sys, timespan proc_import_interval=std::chrono::seconds{1}) |
Creates a scraper for the given actor system. | |
Contains a scraper for exposing metrics from an actor system to Prometheus.
auto caf::net::prometheus::scraper | ( | actor_system & | sys, |
timespan | proc_import_interval = std::chrono::seconds{1} ) |
Creates a scraper for the given actor system.
sys | The actor system for collecting the metrics from. |
proc_import_interval | Minimum time between importing process metrics. |
auto caf::net::prometheus::scraper | ( | telemetry::metric_registry * | registry, |
timespan | proc_import_interval = std::chrono::seconds{1} ) |
Creates a scraper for the given actor system.
registry | The registry for collecting the metrics from. |
proc_import_interval | Minimum time between importing process metrics. |