Metrics for events processed in appservice and fed sender

More metrics I wished I'd had
This commit is contained in:
Richard van der Hoff 2018-01-15 18:20:30 +00:00
parent 5e16c1dc8c
commit a027c2af8d
2 changed files with 11 additions and 0 deletions

View file

@ -42,6 +42,8 @@ sent_edus_counter = client_metrics.register_counter("sent_edus")
sent_transactions_counter = client_metrics.register_counter("sent_transactions")
events_processed_counter = client_metrics.register_counter("events_processed")
class TransactionQueue(object):
"""This class makes sure we only have one transaction in flight at
@ -205,6 +207,8 @@ class TransactionQueue(object):
self._send_pdu(event, destinations)
events_processed_counter.inc_by(len(events))
yield self.store.update_federation_out_pos(
"events", next_token
)