-
Notifications
You must be signed in to change notification settings - Fork 805
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
[Merged by Bors] - Fix metric for total block production time #4794
Conversation
42a910f
to
6af8b62
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
ta will throw this in the next batch bors r+ |
## Proposed Changes Fix the misplacement of the total block production time metric, which occurred during a previous refactor. Total block production times are no longer skewed low (data from Holesky + blockdreamer): ``` # HELP beacon_block_production_seconds Full runtime of block production # TYPE beacon_block_production_seconds histogram beacon_block_production_seconds_bucket{le="0.005"} 0 beacon_block_production_seconds_bucket{le="0.01"} 0 beacon_block_production_seconds_bucket{le="0.025"} 0 beacon_block_production_seconds_bucket{le="0.05"} 0 beacon_block_production_seconds_bucket{le="0.1"} 0 beacon_block_production_seconds_bucket{le="0.25"} 0 beacon_block_production_seconds_bucket{le="0.5"} 37 beacon_block_production_seconds_bucket{le="1"} 65 beacon_block_production_seconds_bucket{le="2.5"} 66 beacon_block_production_seconds_bucket{le="5"} 66 beacon_block_production_seconds_bucket{le="10"} 66 beacon_block_production_seconds_bucket{le="+Inf"} 66 beacon_block_production_seconds_sum 34.225780452 beacon_block_production_seconds_count 66 ``` ## Additional Info Cheers to @jimmygchen for helping spot this.
Build failed: |
bors r+ |
## Proposed Changes Fix the misplacement of the total block production time metric, which occurred during a previous refactor. Total block production times are no longer skewed low (data from Holesky + blockdreamer): ``` # HELP beacon_block_production_seconds Full runtime of block production # TYPE beacon_block_production_seconds histogram beacon_block_production_seconds_bucket{le="0.005"} 0 beacon_block_production_seconds_bucket{le="0.01"} 0 beacon_block_production_seconds_bucket{le="0.025"} 0 beacon_block_production_seconds_bucket{le="0.05"} 0 beacon_block_production_seconds_bucket{le="0.1"} 0 beacon_block_production_seconds_bucket{le="0.25"} 0 beacon_block_production_seconds_bucket{le="0.5"} 37 beacon_block_production_seconds_bucket{le="1"} 65 beacon_block_production_seconds_bucket{le="2.5"} 66 beacon_block_production_seconds_bucket{le="5"} 66 beacon_block_production_seconds_bucket{le="10"} 66 beacon_block_production_seconds_bucket{le="+Inf"} 66 beacon_block_production_seconds_sum 34.225780452 beacon_block_production_seconds_count 66 ``` ## Additional Info Cheers to @jimmygchen for helping spot this.
Pull request successfully merged into unstable. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page.
|
## Proposed Changes Fix the misplacement of the total block production time metric, which occurred during a previous refactor. Total block production times are no longer skewed low (data from Holesky + blockdreamer): ``` # HELP beacon_block_production_seconds Full runtime of block production # TYPE beacon_block_production_seconds histogram beacon_block_production_seconds_bucket{le="0.005"} 0 beacon_block_production_seconds_bucket{le="0.01"} 0 beacon_block_production_seconds_bucket{le="0.025"} 0 beacon_block_production_seconds_bucket{le="0.05"} 0 beacon_block_production_seconds_bucket{le="0.1"} 0 beacon_block_production_seconds_bucket{le="0.25"} 0 beacon_block_production_seconds_bucket{le="0.5"} 37 beacon_block_production_seconds_bucket{le="1"} 65 beacon_block_production_seconds_bucket{le="2.5"} 66 beacon_block_production_seconds_bucket{le="5"} 66 beacon_block_production_seconds_bucket{le="10"} 66 beacon_block_production_seconds_bucket{le="+Inf"} 66 beacon_block_production_seconds_sum 34.225780452 beacon_block_production_seconds_count 66 ``` ## Additional Info Cheers to @jimmygchen for helping spot this.
Proposed Changes
Fix the misplacement of the total block production time metric, which occurred during a previous refactor.
Total block production times are no longer skewed low (data from Holesky + blockdreamer):
Additional Info
Cheers to @jimmygchen for helping spot this.