summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-05-22 16:28:23 -0500
committerAmber Brown <hawkowl@atleastfornow.net>2018-05-22 16:28:23 -0500
commit85ba83eb5100abf02cf373d9a8d5010526facd45 (patch)
treee896a3ee04b5dbe59c07ba72293278795e0490b8 /synapse/push
parentfix the test failures (diff)
downloadsynapse-85ba83eb5100abf02cf373d9a8d5010526facd45.tar.xz
fixes
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/httppusher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py
index e22088ad6f..bf7ff74a1a 100644
--- a/synapse/push/httppusher.py
+++ b/synapse/push/httppusher.py
@@ -28,9 +28,9 @@ from prometheus_client import Counter
 
 logger = logging.getLogger(__name__)
 
-http_push_processed_counter = Counter("http_pushes_processed", "")
+http_push_processed_counter = Counter("synapse_http_httppusher_http_pushes_processed", "")
 
-http_push_failed_counter = Counter("http_pushes_failed", "")
+http_push_failed_counter = Counter("synapse_http_httppusher_http_pushes_failed", "")
 
 
 class HttpPusher(object):