-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
telemetry: Log error reason for failure to get SQL Metric (#40778) #41137
telemetry: Log error reason for failure to get SQL Metric (#40778) #41137
Conversation
With JSON formatted logs: ``` $ jq 'select(.error) | select(.error | contains("Prometheus"))' tidb.log { "level": "INFO", "time": "2023/01/27 10:00:35.554 +01:00", "caller": "data_slow_query.go:67", "message": "Failed to get Slow Query Stats", "error": "[domain:9009]Prometheus address is not set in PD and etcd" } { "level": "INFO", "time": "2023/01/27 10:01:36.223 +01:00", "caller": "data_window.go:257", "message": "Error exists when getting the SQL Metric.", "error": "[domain:9009]Prometheus address is not set in PD and etcd" } { "level": "INFO", "time": "2023/01/27 10:02:36.225 +01:00", "caller": "data_window.go:257", "message": "Error exists when getting the SQL Metric.", "error": "[domain:9009]Prometheus address is not set in PD and etcd" } ```
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
@@ -61,7 +62,7 @@ func getFeatureUsage(ctx sessionctx.Context) (*featureUsage, error) { | |||
var err error | |||
usage.NewClusterIndex, usage.ClusterIndex, err = getClusterIndexUsageInfo(ctx) | |||
if err != nil { | |||
logutil.BgLogger().Info(err.Error()) | |||
logutil.BgLogger().Info("Failed to get feature usage", zap.Error(err)) |
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.
How about make it more clear, for example something like: 'Failed to get cluster index usage'?
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.
Just realized this is a cherry-pick. Please ignore this comment
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.
Rest LGTM
@sunxiaoguang: Thanks for your review. The bot only counts approvals from reviewers and higher roles in list, but you're still welcome to leave your comments. In response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
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.
LGTM
/merge |
This pull request has been accepted and is ready to merge. Commit hash: d1103c8
|
/retest |
This is an automated cherry-pick of #40778
What problem does this PR solve?
Issue Number: close #40777
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note
With this PR:
Without this PR: