Skip to content
Snippets Groups Projects
Commit 11dbceb7 authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Add a counter metric for successfully-sent transactions

parent f3cf3ff8
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,8 @@ sent_pdus_destination_dist = client_metrics.register_distribution( ...@@ -41,6 +41,8 @@ sent_pdus_destination_dist = client_metrics.register_distribution(
) )
sent_edus_counter = client_metrics.register_counter("sent_edus") sent_edus_counter = client_metrics.register_counter("sent_edus")
sent_transactions_counter = client_metrics.register_counter("sent_transactions")
class TransactionQueue(object): class TransactionQueue(object):
"""This class makes sure we only have one transaction in flight at """This class makes sure we only have one transaction in flight at
...@@ -374,6 +376,7 @@ class TransactionQueue(object): ...@@ -374,6 +376,7 @@ class TransactionQueue(object):
destination, pending_pdus, pending_edus, pending_failures, destination, pending_pdus, pending_edus, pending_failures,
) )
if success: if success:
sent_transactions_counter.inc()
# Remove the acknowledged device messages from the database # Remove the acknowledged device messages from the database
# Only bother if we actually sent some device messages # Only bother if we actually sent some device messages
if device_message_edus: if device_message_edus:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment