summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorreivilibre <oliverw@matrix.org>2022-09-08 14:01:42 +0000
committerGitHub <noreply@github.com>2022-09-08 15:01:42 +0100
commit526f84bc2ea78a44ef612bf79caf5cfb7966c1ed (patch)
treefd5cb95cb69db033d7e1e4110df252de4f026087 /synapse/federation
parentFix latest deps (#13743) (diff)
downloadsynapse-526f84bc2ea78a44ef612bf79caf5cfb7966c1ed.tar.xz
Fix Prometheus recording rules to not use legacy metric names. (#13718)
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/sender/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/federation/sender/__init__.py b/synapse/federation/sender/__init__.py
index 8bc60e3e3e..a6cb3ba58f 100644
--- a/synapse/federation/sender/__init__.py
+++ b/synapse/federation/sender/__init__.py
@@ -62,12 +62,12 @@ if TYPE_CHECKING:
 logger = logging.getLogger(__name__)
 
 sent_pdus_destination_dist_count = Counter(
-    "synapse_federation_client_sent_pdu_destinations:count",
+    "synapse_federation_client_sent_pdu_destinations_count",
     "Number of PDUs queued for sending to one or more destinations",
 )
 
 sent_pdus_destination_dist_total = Counter(
-    "synapse_federation_client_sent_pdu_destinations:total",
+    "synapse_federation_client_sent_pdu_destinations",
     "Total number of PDUs queued for sending across all destinations",
 )