summary refs log tree commit diff
path: root/synapse/metrics
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-08-07 22:11:45 +0100
committerRichard van der Hoff <richard@matrix.org>2018-08-07 22:11:45 +0100
commitbab94da79cb71cc483184c2732707e40f7a708ce (patch)
tree9814fc739a75c673cca61fc87782f6b902ea0261 /synapse/metrics
parentmore metrics for the federation and appservice senders (diff)
downloadsynapse-bab94da79cb71cc483184c2732707e40f7a708ce.tar.xz
fix metric name
Diffstat (limited to 'synapse/metrics')
-rw-r--r--synapse/metrics/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/metrics/__init__.py b/synapse/metrics/__init__.py
index b7cb3a730a..550f8443f7 100644
--- a/synapse/metrics/__init__.py
+++ b/synapse/metrics/__init__.py
@@ -175,7 +175,7 @@ sent_transactions_counter = Counter("synapse_federation_client_sent_transactions
 events_processed_counter = Counter("synapse_federation_client_events_processed", "")
 
 event_processing_loop_counter = Counter(
-    "synapse_event_processing_loop",
+    "synapse_event_processing_loop_count",
     "Event processing loop iterations",
     ["name"],
 )