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
*[BUGFIX] promlint: Relax metric type in name linter rule. #1455
30
36
*[BUGFIX] promhttp: Make sure server instrumentation wrapping supports new and future extra responseWriter methods. #1480
31
-
*[BUGFIX] testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424
37
+
*[BUGFIX]**breaking**testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424 (reverted in 1.20.5)
// ScrapeAndCompare calls a remote exporter's endpoint which is expected to return some metrics in
159
159
// plain text format. Then it compares it with the results that the `expected` would return.
160
160
// If the `metricNames` is not empty it would filter the comparison only to the given metric names.
161
+
//
162
+
// NOTE: Be mindful of accidental discrepancies between expected and metricNames; metricNames filter
163
+
// both expected and scraped metrics. See https://github.com/prometheus/client_golang/issues/1351.
// CollectAndCompare collects the metrics identified by `metricNames` and compares them in the Prometheus text
187
190
// exposition format to the data read from expected.
191
+
//
192
+
// NOTE: Be mindful of accidental discrepancies between expected and metricNames; metricNames filter
193
+
// both expected and collected metrics. See https://github.com/prometheus/client_golang/issues/1351.
// it to an expected output read from the provided Reader in the Prometheus text
198
204
// exposition format. If any metricNames are provided, only metrics with those
199
205
// names are compared.
206
+
//
207
+
// NOTE: Be mindful of accidental discrepancies between expected and metricNames; metricNames filter
208
+
// both expected and gathered metrics. See https://github.com/prometheus/client_golang/issues/1351.
// it to an expected output read from the provided Reader in the Prometheus text
206
215
// exposition format. If any metricNames are provided, only metrics with those
207
216
// names are compared.
217
+
//
218
+
// NOTE: Be mindful of accidental discrepancies between expected and metricNames; metricNames filter
219
+
// both expected and gathered metrics. See https://github.com/prometheus/client_golang/issues/1351.
0 commit comments