增加服务带宽统计

This commit is contained in:
GoEdgeLab
2022-07-05 20:09:19 +08:00
parent 2639d5c12a
commit 5903093cd1
7 changed files with 4056 additions and 3536 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 带宽统计数据
message ServerBandwidthStat {
int64 id = 1;
int64 serverId = 2;
string day = 3;
string timeAt = 4;
int64 bytes = 5;
}