-
Notifications
You must be signed in to change notification settings - Fork 163
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 metrics to common library code #2329
Comments
Messenger doesn't have access to packet bytes, but it could at least keep track of messages sent/received by type. |
lukedirtwalker
added a commit
to lukedirtwalker/scion
that referenced
this issue
Jan 18, 2019
Rationale: The error counters help to detect where an issue of a service might be (i.e. in this case the DB). The total counters give an idea on the pressure on the DB. Contributes scionproto#2329
lukedirtwalker
added a commit
to lukedirtwalker/scion
that referenced
this issue
Jan 22, 2019
Rationale: The error counters help to detect where an issue of a service might be (i.e. in this case the DB). The total counters give an idea on the pressure on the DB. Contributes scionproto#2329
lukedirtwalker
added a commit
to lukedirtwalker/scion
that referenced
this issue
Jan 22, 2019
Rationale: The error counters help to detect where an issue of a service might be (i.e. in this case the DB). The total counters give an idea on the pressure on the DB. Contributes scionproto#2329
lukedirtwalker
added a commit
that referenced
this issue
Jan 22, 2019
Rationale: The result counters help to detect where an issue of a service might be (i.e. in this case the DB). The total counters give an idea on the pressure on the DB. Contributes #2329
Merged
Merged
lukedirtwalker
added a commit
that referenced
this issue
Feb 22, 2019
A handler that is registered at the messenger will now have metrics by default. There are three metrics: in_calls_total: counts the total received requests. in_results_total: counts the results of the received requests. in_calls_latency: a histogram of the latency of the requests. Analogous to in_* the current messenger metrics (for outgoing requests) have been renamed to out_*. Also fixes the registration of messenger metrics (init() doesn't work because we don't want to register on the default Prometheus registerer). Note that not all handlers always return the correct result/status, that will be done in separate commits. Contributes #2329, #2330, #1819
This is issue has been superseded by multiple issues labeled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: