Skip to content
Snippets Groups Projects
Commit cbbfaa4b authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Fix description of "python_gc_time" metric

parent 02bfc581
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ gc_time = Histogram(
class GCCounts(object):
def collect(self):
cm = GaugeMetricFamily("python_gc_counts", "GC cycle counts", labels=["gen"])
cm = GaugeMetricFamily("python_gc_counts", "GC object counts", labels=["gen"])
for n, m in enumerate(gc.get_count()):
cm.add_metric([str(n)], m)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment