Merge pull request #2121 from matrix-org/paul/sent-transactions-metric

Add a counter metric for successfully-sent transactions
This commit is contained in:
Paul Evans 2017-04-12 11:04:31 +01:00 committed by GitHub
commit 8fbc0d29ee

View file

@ -41,6 +41,8 @@ sent_pdus_destination_dist = client_metrics.register_distribution(
)
sent_edus_counter = client_metrics.register_counter("sent_edus")
sent_transactions_counter = client_metrics.register_counter("sent_transactions")
class TransactionQueue(object):
"""This class makes sure we only have one transaction in flight at
@ -374,6 +376,7 @@ class TransactionQueue(object):
destination, pending_pdus, pending_edus, pending_failures,
)
if success:
sent_transactions_counter.inc()
# Remove the acknowledged device messages from the database
# Only bother if we actually sent some device messages
if device_message_edus: