Merge pull request #3418 from matrix-org/rav/fix_metric_desc

Fix description of "python_gc_time" metric
This commit is contained in:
Amber Brown 2018-06-22 09:43:26 +01:00 committed by GitHub
commit 9a685d60ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)