Finish all the work of dashboard.

This commit is contained in:
zicla
2018-12-02 21:06:06 +08:00
parent 927427f353
commit b361c50c9a
5 changed files with 55 additions and 13 deletions

View File

@ -23,10 +23,9 @@ func (Dashboard) TableName() string {
}
/**
* 总调用量
* 统计IP活跃数的
*/
type DashboardInvoke struct {
InvokeNum int64 `json:"invokeNum"`
Uv int64 `json:"uv"`
Dt string `json:"dt"`
type DashboardIpTimes struct {
Ip string `json:"ip"`
Times int64 `json:"times"`
}