Files
EdgeCommon/pkg/rpc/protos/models/model_metric_item.proto

19 lines
326 B
Protocol Buffer
Raw Normal View History

2021-06-27 22:00:02 +08:00
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;
2022-03-28 08:48:35 +08:00
int32 expiresPeriod = 12;
2021-06-27 22:00:02 +08:00
string value = 10;
2021-07-19 15:22:49 +08:00
bool isPublic = 11;
2021-06-27 22:00:02 +08:00
}