增加服务带宽统计

This commit is contained in:
刘祥超
2022-07-05 20:09:19 +08:00
parent f27a55c2b6
commit 22479278b9
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;
}