节点日志增加服务ID、是否修复等字段

This commit is contained in:
GoEdgeLab
2021-05-23 20:45:37 +08:00
parent 27935eb0a6
commit b91dc09425
4 changed files with 273 additions and 82 deletions

View File

@@ -4,11 +4,14 @@ option go_package = "./pb";
package pb;
message NodeLog {
string role = 1;
string tag = 2;
string description = 3;
string level = 4;
int64 nodeId = 5;
int64 createdAt = 6;
int32 count = 7;
int64 id = 1;
string role = 2;
string tag = 3;
string description = 4;
string level = 5;
int64 nodeId = 6;
int64 createdAt = 7;
int32 count = 8;
int64 serverId = 9;
bool isFixed = 10;
}