libprom
@VERSION@
C based libraries to expose metrics in Promtheus exposition format
|
prom/include/prom.h [code] | Include prom.h to include the entire public API |
prom/include/prom_alloc.h [code] | Memory management |
prom/include/prom_collector.h [code] | A prom_collector is used to collect metrics |
prom/include/prom_collector_registry.h [code] | The collector registry registers collectors for metric exposition |
prom/include/prom_counter.h [code] | Https://prometheus.io/docs/concepts/metric_types/#counter |
prom/include/prom_gauge.h [code] | Https://prometheus.io/docs/concepts/metric_types/#gauge |
prom/include/prom_histogram.h [code] | Https://prometheus.io/docs/concepts/metric_types/#histogram |
prom/include/prom_histogram_buckets.h [code] | Https://prometheus.io/docs/concepts/metric_types/#histogram |
prom/include/prom_linked_list.h [code] | |
prom/include/prom_log.h [code] | Logging |
prom/include/prom_map.h [code] | |
prom/include/prom_metric.h [code] | Functions for retrieving metric samples from metrics given an ordered set of labels |
prom/include/prom_metric_sample.h [code] | Functions for interfacting with metric samples directly |
prom/include/prom_metric_sample_histogram.h [code] | Functions for interacting with histogram metric samples directly |
prom/include/prom_string_builder.h [code] | A StringBuilder: uses an internal buffer to append strings and characters as needed and keeps track of the constructed string, grows the buffer by factor 2 automagically |
promhttp/include/promhttp.h [code] | Provides a HTTP endpoint for metric exposition References: * MHD_FLAG: https://www.gnu.org/software/libmicrohttpd/manual/libmicrohttpd.html#microhttpd_002dconst * MHD_AcceptPolicyCallback: https://www.gnu.org/software/libmicrohttpd/manual/libmicrohttpd.html#index-_002aMHD_005fAcceptPolicyCallback |