-
-
Notifications
You must be signed in to change notification settings - Fork 310
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
chore: fix import head late (> 4 sec) rate panel #7323
Conversation
@@ -1570,7 +1598,7 @@ | |||
"uid": "${DS_PROMETHEUS}" | |||
}, | |||
"editorMode": "code", | |||
"expr": "rate(lodestar_gossip_block_elapsed_time_till_processed_count[$rate_interval])\n- on(instance)\nrate(lodestar_gossip_block_elapsed_time_till_processed_bucket{le=\"4\"}[$rate_interval])", | |||
"expr": "rate(lodestar_gossip_block_elapsed_time_till_processed_count[$rate_interval])\n- on(instance)\nrate(lodestar_gossip_block_elapsed_time_till_processed_bucket{le=\"4.0\"}[$rate_interval])", |
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.
this is the actual change, other changes are due to new schema version
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## unstable #7323 +/- ##
=========================================
Coverage 48.75% 48.75%
=========================================
Files 601 601
Lines 40222 40222
Branches 2061 2061
=========================================
Hits 19609 19609
Misses 20575 20575
Partials 38 38 |
Performance Report✔️ no performance regression detected Full benchmark results
|
Motivation
Panel does not show any data right now, need to update the bucket
Description
le
needs to match4.0
instead of4
for some reason