阶段性提交

This commit is contained in:
刘祥超
2021-06-27 22:00:02 +08:00
parent be404ea98d
commit e4b59c5e85
20 changed files with 3344 additions and 398 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 指标定义
message MetricItem {
int64 id = 1;
bool isOn = 2;
string code = 3;
string category = 4;
string name = 5;
repeated string keys = 6;
int32 period = 7;
string periodUnit = 8;
string value = 10;
}