-
Notifications
You must be signed in to change notification settings - Fork 31
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
refactor(Graphana): RHINENG-15507 replace kafka lag metric #2358
base: master
Are you sure you want to change the base?
refactor(Graphana): RHINENG-15507 replace kafka lag metric #2358
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2358 +/- ##
=======================================
Coverage 98.24% 98.24%
=======================================
Files 200 200
Lines 4454 4454
=======================================
Hits 4376 4376
Misses 78 78 ☔ View full report in Codecov by Sentry. |
45a57fc
to
39ff8ec
Compare
/retest |
}, | ||
"expr": "sum(kafka_consumergroup_group_topic_sum_lag{topic=~\".*platform.inventory.events\", group=\"complianceinventory-events-consumer\"}) by (topic)", | ||
"editorMode": "code", | ||
"expr": "sum by(topic) (aws_kafka_max_offset_lag_sum{consumer_group=\"complianceinventory-events-consumer\", topic=~\".*platform.inventory.events\"})", |
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.
According to the latest update, this should be changed to
"expr": "sum by(topic) (aws_kafka_max_offset_lag_sum{consumer_group=\"complianceinventory-events-consumer\", topic=~\".*platform.inventory.events\"})", | |
"expr": "sum by(topic) (aws_kafka_sum_offset_lag_sum{consumer_group=\"complianceinventory-events-consumer\", topic=~\".*platform.inventory.events\"})", |
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.
Metric needs to be corrected.
979d1c0
to
2a17246
Compare
Secure Coding Practices Checklist GitHub Link
Secure Coding Checklist