mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-09-18 11:04:36 -04:00
Fix Prometheus recording rules to not use legacy metric names. (#13718)
This commit is contained in:
parent
1cc729c177
commit
526f84bc2e
6 changed files with 22 additions and 37 deletions
|
@ -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",
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue