Skip to content
Snippets Groups Projects
Unverified Commit 3371e1ab authored by Brad Murray's avatar Brad Murray Committed by GitHub
Browse files

Add prometheus counters for content types other than events (#13175)

parent 4db7862e
Branches
Tags
No related merge requests found
Add prometheus counters for ephemeral events and to device messages pushed to app services. Contributed by Brad @ Beeper.
......@@ -53,6 +53,18 @@ sent_events_counter = Counter(
"synapse_appservice_api_sent_events", "Number of events sent to the AS", ["service"]
)
sent_ephemeral_counter = Counter(
"synapse_appservice_api_sent_ephemeral",
"Number of ephemeral events sent to the AS",
["service"],
)
sent_todevice_counter = Counter(
"synapse_appservice_api_sent_todevice",
"Number of todevice messages sent to the AS",
["service"],
)
HOUR_IN_MS = 60 * 60 * 1000
......@@ -310,6 +322,8 @@ class ApplicationServiceApi(SimpleHttpClient):
)
sent_transactions_counter.labels(service.id).inc()
sent_events_counter.labels(service.id).inc(len(serialized_events))
sent_ephemeral_counter.labels(service.id).inc(len(ephemeral))
sent_todevice_counter.labels(service.id).inc(len(to_device_messages))
return True
except CodeMessageException as e:
logger.warning(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment