Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unbatched outbound stats #257

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions json-schemas/src/app-stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@
"inclusiveMinimum": 0,
"description": "Total uncompressed presence message size, excluding delta compression https://ably.com/docs/channels/options/deltas."
},
"messages.all.messages.failed": {
"messages.all.presence.failed": {
"type": "number",
"inclusiveMinimum": 0,
"description": "Total number of presence messages excluding presence messages that failed (which did not succeed for some reason other than Ably explicitly refusing it, such as rejected by an external integration target, or a service issue on Ably's side)"
},
"messages.all.messages.refused": {
"messages.all.presence.refused": {
"type": "number",
"inclusiveMinimum": 0,
"description": "Total number of presence messages excluding presence messages that were refused by Ably (eg due to a rate limit, a malformed message, or incorrect permissions on the client's part)"
Expand Down Expand Up @@ -318,6 +318,11 @@
"inclusiveMinimum": 0,
"description": "Total outbound realtime message count (sent from the Ably service to clients)."
},
"messages.outbound.realtime.all.unbatchedCount": {
"type": "number",
"inclusiveMinimum": 0,
"description": "Total outbound realtime message count (sent from the Ably service to clients) without considering the effects of server-side batching."
},
"messages.outbound.realtime.all.data": {
"type": "number",
"inclusiveMinimum": 0,
Expand All @@ -343,6 +348,11 @@
"inclusiveMinimum": 0,
"description": "Total outbound realtime message count (sent from the Ably service to clients), excluding presence messages."
},
"messages.outbound.realtime.messages.unbatchedCount": {
"type": "number",
"inclusiveMinimum": 0,
"description": "Total outbound realtime message count (sent from the Ably service to clients), excluding presence messages and without considering the effects of server-side batching."
},
"messages.outbound.realtime.messages.data": {
"type": "number",
"inclusiveMinimum": 0,
Expand All @@ -368,6 +378,11 @@
"inclusiveMinimum": 0,
"description": "Total outbound realtime presence message count (sent from the Ably service to clients)."
},
"messages.outbound.realtime.presence.unbatchedCount": {
"type": "number",
"inclusiveMinimum": 0,
"description": "Total outbound realtime presence message count (sent from the Ably service to clients) without considering the effects of server-side batching."
},
"messages.outbound.realtime.presence.data": {
"type": "number",
"inclusiveMinimum": 0,
Expand Down
Loading