You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR rename some existing observability metrics and introduce more
detailed metrics:
On message brokering:
- Rename `current_connections` to `concurrent_subscription` and split
subscriptions per issuer,
- Rename `connections[created / released]` to
`subscription_lifecycle[created/released]` and split per issuer,
- Add `subscription_duration_ms` to track the duration of SSE
subscriptions and split per issuer,
- Rename `messages[received/published]` by `messages[published/sent]`
and split per issuer (published = message published on the internal API,
sent = message sent through a SSE connection),
- Add `topic_count` to track how many topics are stored in the in-memory
message retention.
On system metrics:
- Add the boolean `stopping` that turned to `true` when a node is in the
graceful shutdown process.
Add http metrics:
- `http_request_count[public/internal, status]` count the number of http
request on each interfaces and per HTTP status, it is incremented at the
end of the request processing.
- `http_request_duration_ms[public/internal]` report the duration of
http request on each interfaces.
0 commit comments