Skip to content

Commit

Permalink
Add unbatched outbound stats
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoDiasAbly committed Aug 1, 2024
1 parent e0c77a3 commit 5a6a104
Showing 1 changed file with 17 additions and 2 deletions.
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

0 comments on commit 5a6a104

Please sign in to comment.