+8
-8
@@ -4,18 +4,18 @@ package alert.v1;
|
||||
|
||||
import "base/v1/msg.proto";
|
||||
|
||||
|
||||
message AlertFilter{
|
||||
message AlertFilter {
|
||||
base.v1.Filter base_filter = 1;
|
||||
Importance importance = 2;
|
||||
LogSource source = 3;
|
||||
Importance importance = 2;
|
||||
LogSource source = 3;
|
||||
}
|
||||
|
||||
//Importance of given event
|
||||
enum Importance {
|
||||
LOW = 0;
|
||||
MEDIUM = 1;
|
||||
HIGH = 2;
|
||||
CRITICAL = 3;
|
||||
LOW = 0; // Low Severity ( unimportant and can be ignored )
|
||||
MEDIUM = 1; // MEDIUM Severity
|
||||
HIGH = 2; // High Severity
|
||||
CRITICAL = 3; // CRITICAL Severity ( can cause panics and data lost )
|
||||
}
|
||||
|
||||
enum LogSource {
|
||||
|
||||
Reference in New Issue
Block a user