Lines Matching full:gauge
14 * @brief Prometheus gauge APIs.
24 * @brief Type used to represent a Prometheus gauge metric.
27 * * See https://prometheus.io/docs/concepts/metric_types/#gauge
30 /** Base of the Prometheus gauge metric */
32 /** Value of the Prometheus gauge metric */
39 * @brief Prometheus Gauge definition.
41 * This macro defines a Gauge metric. If you want to make the gauge static,
44 * @param _name The gauge metric name.
45 * @param _desc Gauge description
53 * PROMETHEUS_GAUGE_DEFINE(http_request_gauge, "HTTP request gauge",
75 * @brief Set the value of a Prometheus gauge metric
77 * Sets the value of the specified gauge metric to the given value.
79 * @param gauge Pointer to the gauge metric to set.
80 * @param value Value to set the gauge metric to.
84 int prometheus_gauge_set(struct prometheus_gauge *gauge, double value);