-
Couldn't load subscription status.
- Fork 21.5k
metrics: add chain/gas for cumulative gas usage #32004
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
Conversation
This is a followup to ethereum#31753. A cumulative counter is more useful when we need to measure / aggregate the metric over a longer peruid of time. It also means we won't miss data, e.g. our prometheus scrapes every 30 seconds, and so may miss a transient spike in the preaggregated mgas/s.
763f288 to
f1eee7f
Compare
|
Not sure what happened in this PR, but the |
|
@rjl493456442 was it your intention to drop the chain/gas metric I added? |
This is a followup to ethereum#31753. A cumulative counter is more useful when we need to measure / aggregate the metric over a longer period of time. It also means we won't miss data, e.g. our prometheus scrapes every 30 seconds, and so may miss a transient spike in the pre-aggregated mgas/s. --------- Co-authored-by: Gary Rong <[email protected]>
This is a followup to ethereum#31753. A cumulative counter is more useful when we need to measure / aggregate the metric over a longer period of time. It also means we won't miss data, e.g. our prometheus scrapes every 30 seconds, and so may miss a transient spike in the pre-aggregated mgas/s. --------- Co-authored-by: Gary Rong <[email protected]>
This is a followup to #31753.
A cumulative counter is more useful when we need to measure / aggregate the metric over a longer period of time.
It also means we won't miss data,
e.g. our prometheus scrapes every 30 seconds,
and so may miss a transient spike in the preaggregated mgas/s.