You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TT-6799 Prometheus pump: Support to disable certain metric families from exposition. (#492)
* support disabling prometheus metric families
* update readme and changelog
* fix language
* disabling of metrics should only work for the base metrics
* do not collect and log out disabled metrics
* exclude base metrics entirely if they are disabled
* checkpoint
* update docs
//Observe will fill hitogramMap with the sum of totalRequest and hits per label value if aggregate_observations is true. If aggregate_observations is set to false (default) it will execute prometheus Observe directly.
389
+
//Observe will fill hitogramMap with the sum of totalRequest and hits per label value if aggregate_observations is true. If aggregate_observations is set to false (default) it will execute prometheus Observe directly.
//Expose executes prometheus library functions using the counter/histogram vector from the PrometheusMetric struct.
403
-
//If the PrometheusMetric is COUNTER_TYPE, it will execute prometheus client Add function to add the counters from counterMap to the labels value metric
404
-
//If the PrometheusMetric is HISTOGRAM_TYPE and aggregate_observations config is true, it will calculate the average value of the metrics in the histogramMap and execute prometheus Observe.
405
-
//If aggregate_observations is false, it won't do anything since it means that we already exposed the metric.
418
+
//Expose executes prometheus library functions using the counter/histogram vector from the PrometheusMetric struct.
419
+
//If the PrometheusMetric is COUNTER_TYPE, it will execute prometheus client Add function to add the counters from counterMap to the labels value metric
420
+
//If the PrometheusMetric is HISTOGRAM_TYPE and aggregate_observations config is true, it will calculate the average value of the metrics in the histogramMap and execute prometheus Observe.
421
+
//If aggregate_observations is false, it won't do anything since it means that we already exposed the metric.
0 commit comments