v2: some code clean up

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-07-14 12:26:16 +03:30
parent 6375702e2a
commit 6ae0050be8
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F
2 changed files with 16 additions and 19 deletions

View File

@ -3,6 +3,7 @@ syntax = "proto3";
package alert.v1;
import "base/v1/msg.proto";
import "auth/v1/msg.proto";
message AlertFilter {
base.v1.BaseQueryParam base_filter = 1;
@ -10,7 +11,7 @@ message AlertFilter {
LogSource source = 3;
}
//Importance of given event
// Importance of given event
enum Importance {
LOW = 0; // Low Severity ( unimportant and can be ignored )
MEDIUM = 1; // MEDIUM Severity
@ -32,17 +33,15 @@ message Meta {
}
message LogEvent {
optional uint64 id = 1; // Record Id of Log stored in db
string content = 2;
string effective_user = 3;
optional LogSource source = 5;
Importance importance = 6;
Meta meta = 7;
auth.v1.InternalIAM iam = 1;
optional uint64 id = 2; // Record Id of Log stored in db
string content = 3;
optional LogSource source = 4;
Importance importance = 5;
Meta meta = 6;
}
message LogEventList {
repeated LogEvent events = 1;
}
message LogEventList { repeated LogEvent events = 1; }
/*
Internal Msg
*/
@ -53,13 +52,11 @@ message SMSChangeLog {
}
message SMS {
string recipient = 1; //recipient
string recipient = 1; // recipient
string text = 2;
optional string sender = 3;
Meta meta = 4;
repeated SMSChangeLog change_log = 5;
}
message SMSList {
repeated SMS sms = 1;
}
message SMSList { repeated SMS sms = 1; }

View File

@ -8,6 +8,6 @@ import "base/v1/msg.proto";
service AlertSrv {
rpc NotificationSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
rpc Emit(LogEvent) returns (base.v1.StatusRes) {}
rpc Update(LogEvent) returns (base.v1.StatusRes) {}
rpc Get(AlertFilter) returns (base.v1.StatusRes) {}
// rpc Update(LogEvent) returns (base.v1.StatusRes) {}
// rpc Get(AlertFilter) returns (base.v1.StatusRes) {}
}