-
-
Notifications
You must be signed in to change notification settings - Fork 331
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
Track gossipsub iwant promises that never delivered percentage #5092
Track gossipsub iwant promises that never delivered percentage #5092
Conversation
Performance Report✔️ no performance regression detected Full benchmark results
|
@@ -92,6 +45,10 @@ | |||
"panels": [ | |||
{ | |||
"collapsed": false, | |||
"datasource": { | |||
"type": "prometheus", | |||
"uid": "prometheus_local" |
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.
need to use ${DS_PROMETHEUS}
here, you can just run node scripts/lint-grafana-dashboards.mjs ./dashboards
to fix the dashboard
"uid": "prometheus_local" | |
"uid": "${DS_PROMETHEUS}" |
@@ -1,58 +1,12 @@ | |||
{ | |||
"__inputs": [ |
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.
should this __inputs
header be removed? I think if you do Export for sharing externally
it is added
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.
I'm not sure, not related to this change so I reverted
7fdda9e
to
ddb2568
Compare
🎉 This PR is included in v1.6.0 🎉 |
Motivation
Iwant promises that's never delivered are not tracked correctly because we only keep
iwantPromiseDeliveryTime
items in gossipsub tracer up to 120s then they are prunedDescription
1 - sum(rate(gossipsub_iwant_promise_delivery_seconds_count[$__rate_interval])) / sum(rate(gossipsub_iwant_promise_sent_total[$__rate_interval]))
part of #5074