-
Notifications
You must be signed in to change notification settings - Fork 635
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
feature: add custom message for systemlogmonitor rule #997
base: master
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: googs1025 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
friendly ping @wangzhen127 @hakman @andyxning |
@@ -42,4 +42,7 @@ type Rule struct { | |||
// Pattern is the regular expression to match the problem in log. | |||
// Notice that the pattern must match to the end of the line. | |||
Pattern string `json:"pattern"` | |||
// Message is an optional static message to append to the matching log message. | |||
// This can provide additional context or instructions for resolving the issue. | |||
Message string `json:"message,omitempty"` |
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.
rename Message
name to UserDefinedAdditionalMatchingLogMessage
?
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.
maybe PatternSuffix
or PatternMessage
is better ? 🤔
Because our new field is actually an extended info
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.
PatternGeneratedMessageSuffix
?
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.
naming is difficult. :-(
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.
also the comment and code should be adjusted.
/kind feature
Fix: #979