|
Zephyr Project API 4.0.0
A Scalable Open Source RTOS
|
Type used to represent a Prometheus summary metric. More...
#include <summary.h>
Data Fields | |
| struct prometheus_metric * | base |
| Base of the Prometheus summary metric. | |
| struct prometheus_summary_quantile * | quantiles |
| Array of quantiles associated with the Prometheus summary metric. | |
| size_t | num_quantiles |
| Number of quantiles associated with the Prometheus summary metric. | |
| double | sum |
| Sum of all observed values in the summary metric. | |
| unsigned long | count |
| Total count of observations in the summary metric. | |
Type used to represent a Prometheus summary metric.
| struct prometheus_metric* prometheus_summary::base |
Base of the Prometheus summary metric.
| unsigned long prometheus_summary::count |
Total count of observations in the summary metric.
| size_t prometheus_summary::num_quantiles |
Number of quantiles associated with the Prometheus summary metric.
| struct prometheus_summary_quantile* prometheus_summary::quantiles |
Array of quantiles associated with the Prometheus summary metric.
| double prometheus_summary::sum |
Sum of all observed values in the summary metric.