Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Fix test_metrics.py compatibility prometheus_client 0.5 #4317

Merged
merged 1 commit into from
Dec 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/4317.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix test_metric.py compatibility with prometheus_client 0.5. Contributed by Maarten de Vries <maarten@de-vri.es>.
24 changes: 23 additions & 1 deletion tests/test_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,28 @@
from tests import unittest


def get_sample_labels_value(sample):
""" Extract the labels and values of a sample.

prometheus_client 0.5 changed the sample type to a named tuple with more
members than the plain tuple had in 0.4 and earlier. This function can
extract the labels and value from the sample for both sample types.

Args:
sample: The sample to get the labels and value from.
Returns:
A tuple of (labels, value) from the sample.
"""

# If the sample has a labels and value attribute, use those.
if hasattr(sample, "labels") and hasattr(sample, "value"):
return sample.labels, sample.value
# Otherwise fall back to treating it as a plain 3 tuple.
else:
_, labels, value = sample
return labels, value


class TestMauLimit(unittest.TestCase):
def test_basic(self):
gauge = InFlightGauge(
Expand Down Expand Up @@ -75,7 +97,7 @@ def get_metrics_from_gauge(self, gauge):
for r in gauge.collect():
results[r.name] = {
tuple(labels[x] for x in gauge.labels): value
for _, labels, value in r.samples
for labels, value in map(get_sample_labels_value, r.samples)
}

return results