实现节点运行日志上传

This commit is contained in:
刘祥超
2020-10-09 11:06:47 +08:00
parent fdf0f64e1d
commit c7f56d8876
5 changed files with 940 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
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;
}