feat:host qps /active count

Closes #64
This commit is contained in:
samwaf
2024-11-29 10:14:03 +08:00
parent 52e51eaa01
commit de58b554a5
10 changed files with 236 additions and 99 deletions

View File

@@ -0,0 +1,9 @@
package response
import "SamWaf/model"
type HostRep struct {
model.Hosts
RealTimeQps int `json:"real_time_qps"` //实时信息QPS
RealTimeConnectCnt int `json:"real_time_connect_cnt"` //实时连接数量
}