mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
15 lines
259 B
Protocol Buffer
15 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
// 单个小时统计
|
|
message ServerDomainHourlyStat {
|
|
int64 serverId = 1;
|
|
string domain = 2;
|
|
int64 countRequests = 3;
|
|
int64 bytes = 4;
|
|
int64 countAttackRequests = 6;
|
|
int64 attackBytes = 7;
|
|
}
|