mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 01:01:55 +08:00
15 lines
277 B
Protocol Buffer
15 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message TrafficDailyStat {
|
|
int64 id = 1;
|
|
string day = 2;
|
|
int64 cachedBytes = 3;
|
|
int64 bytes = 4;
|
|
int64 countRequests = 5;
|
|
int64 countCachedRequests = 6;
|
|
int64 countAttackRequests = 7;
|
|
int64 attackBytes = 8;
|
|
} |