Zephyr API Documentation 4.0.0-rc2
A Scalable Open Source RTOS
|
Type used to represent a Prometheus histogram metric. More...
#include <histogram.h>
Data Fields | |
struct prometheus_metric * | base |
Base of the Prometheus histogram metric. | |
struct prometheus_histogram_bucket * | buckets |
Array of buckets in the histogram. | |
size_t | num_buckets |
Number of buckets in the histogram. | |
double | sum |
Sum of all observed values in the histogram. | |
unsigned long | count |
Total count of observations in the histogram. | |
Type used to represent a Prometheus histogram metric.
struct prometheus_metric* prometheus_histogram::base |
Base of the Prometheus histogram metric.
struct prometheus_histogram_bucket* prometheus_histogram::buckets |
Array of buckets in the histogram.
unsigned long prometheus_histogram::count |
Total count of observations in the histogram.
size_t prometheus_histogram::num_buckets |
Number of buckets in the histogram.
double prometheus_histogram::sum |
Sum of all observed values in the histogram.