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; 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;
@ -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
*/ */
@ -60,6 +59,4 @@ message SMS {
repeated SMSChangeLog change_log = 5; repeated SMSChangeLog change_log = 5;
} }
message SMSList { message SMSList { repeated SMS sms = 1; }
repeated SMS sms = 1;
}

View File

@ -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) {}
} }