实现节点运行日志上传

This commit is contained in:
GoEdgeLab
2020-10-09 11:06:47 +08:00
parent 5408f03377
commit 142aafdde8
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;
}