v2: some code clean up
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
parent
6375702e2a
commit
6ae0050be8
@ -3,6 +3,7 @@ syntax = "proto3";
|
|||||||
package alert.v1;
|
package alert.v1;
|
||||||
|
|
||||||
import "base/v1/msg.proto";
|
import "base/v1/msg.proto";
|
||||||
|
import "auth/v1/msg.proto";
|
||||||
|
|
||||||
message AlertFilter {
|
message AlertFilter {
|
||||||
base.v1.BaseQueryParam base_filter = 1;
|
base.v1.BaseQueryParam base_filter = 1;
|
||||||
@ -10,7 +11,7 @@ message AlertFilter {
|
|||||||
LogSource source = 3;
|
LogSource source = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Importance of given event
|
// Importance of given event
|
||||||
enum Importance {
|
enum Importance {
|
||||||
LOW = 0; // Low Severity ( unimportant and can be ignored )
|
LOW = 0; // Low Severity ( unimportant and can be ignored )
|
||||||
MEDIUM = 1; // MEDIUM Severity
|
MEDIUM = 1; // MEDIUM Severity
|
||||||
@ -32,17 +33,15 @@ message Meta {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message LogEvent {
|
message LogEvent {
|
||||||
optional uint64 id = 1; // Record Id of Log stored in db
|
auth.v1.InternalIAM iam = 1;
|
||||||
string content = 2;
|
optional uint64 id = 2; // Record Id of Log stored in db
|
||||||
string effective_user = 3;
|
string content = 3;
|
||||||
optional LogSource source = 5;
|
optional LogSource source = 4;
|
||||||
Importance importance = 6;
|
Importance importance = 5;
|
||||||
Meta meta = 7;
|
Meta meta = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message LogEventList {
|
message LogEventList { repeated LogEvent events = 1; }
|
||||||
repeated LogEvent events = 1;
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
Internal Msg
|
Internal Msg
|
||||||
*/
|
*/
|
||||||
@ -53,13 +52,11 @@ message SMSChangeLog {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message SMS {
|
message SMS {
|
||||||
string recipient = 1; //recipient
|
string recipient = 1; // recipient
|
||||||
string text = 2;
|
string text = 2;
|
||||||
optional string sender = 3;
|
optional string sender = 3;
|
||||||
Meta meta = 4;
|
Meta meta = 4;
|
||||||
repeated SMSChangeLog change_log = 5;
|
repeated SMSChangeLog change_log = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SMSList {
|
message SMSList { repeated SMS sms = 1; }
|
||||||
repeated SMS sms = 1;
|
|
||||||
}
|
|
||||||
|
|||||||
@ -8,6 +8,6 @@ import "base/v1/msg.proto";
|
|||||||
service AlertSrv {
|
service AlertSrv {
|
||||||
rpc NotificationSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
rpc NotificationSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
rpc Emit(LogEvent) returns (base.v1.StatusRes) {}
|
rpc Emit(LogEvent) returns (base.v1.StatusRes) {}
|
||||||
rpc Update(LogEvent) returns (base.v1.StatusRes) {}
|
// rpc Update(LogEvent) returns (base.v1.StatusRes) {}
|
||||||
rpc Get(AlertFilter) returns (base.v1.StatusRes) {}
|
// rpc Get(AlertFilter) returns (base.v1.StatusRes) {}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user