优化看板打开速度

This commit is contained in:
刘祥超
2022-03-27 16:39:41 +08:00
parent eccc56369b
commit 59b93bfbe1
7 changed files with 910 additions and 711 deletions

View File

@@ -0,0 +1,14 @@
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;
}