-
Notifications
You must be signed in to change notification settings - Fork 98
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
Gather metrics from all connected subscribers #50
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
joedixon
force-pushed
the
feat/gather-metrics
branch
from
February 29, 2024 14:09
62cbf54
to
39fc703
Compare
This was referenced Apr 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR aims to solve an issue with gathering metrics when running Reverb on multiple servers.
In a scenario when a request is made to
/connections
and with Reverb running in a load balanced configuration, at the moment, only the connections for the server selected to handle that request will be counted.To resolve this, we can use the existing Redis pub/sub implementation to ask the other servers to report their status.
When a request to any of the metrics endpoints is made, we delegate to the
MetricsHandler
class. When running in a multi-server setup, the handler will publish an event with typemetrics
which signals all subscribers to gather their results for the given metric and publish their response using themetrics-retrieved
event. When the initial request is made, the total number of subscribers is stored and used to track responses. When all responses are received, the metrics are merged and returned in the HTTP response.One big difference here is the need for promises. Due to having to wait for responses from all subscribers (or a timeout in case of any issue), there is a requirement to only return the response when the promise resolves.