Asterisk - The Open Source Telephony Project
21.4.1
|
A function table for a metrics provider. More...
#include <res_prometheus.h>
Data Fields | |
const char * | name |
Handy name of the provider for debugging purposes. | |
int(*const | reload_cb )(struct prometheus_general_config *config) |
Reload callback. More... | |
void(*const | unload_cb )(void) |
Unload callback. | |
A function table for a metrics provider.
It's generally nice to separate out things that provide metrics from the core of this module. For those that want to be notified when things happen in the core module, they can provide an instance of this function table using prometheus_metrics_provider_register
and be notified when module affecting changes occur.
Definition at line 94 of file res_prometheus.h.
int(* const reload_cb) (struct prometheus_general_config *config) |
Reload callback.
config | The reloaded config |
0 | success |
-1 | error |
Definition at line 107 of file res_prometheus.h.