mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-11 00:40:26 +08:00
访问日志搜索增加域名和IP搜索
This commit is contained in:
@@ -22,6 +22,8 @@ func (this *HistoryAction) RunGet(params struct {
|
||||
ServerId int64
|
||||
Day string
|
||||
Keyword string
|
||||
Ip string
|
||||
Domain string
|
||||
|
||||
RequestId string
|
||||
HasError int
|
||||
@@ -33,6 +35,8 @@ func (this *HistoryAction) RunGet(params struct {
|
||||
this.Data["path"] = this.Request.URL.Path
|
||||
this.Data["day"] = params.Day
|
||||
this.Data["keyword"] = params.Keyword
|
||||
this.Data["ip"] = params.Ip
|
||||
this.Data["domain"] = params.Domain
|
||||
this.Data["accessLogs"] = []interface{}{}
|
||||
this.Data["hasError"] = params.HasError
|
||||
|
||||
@@ -51,6 +55,8 @@ func (this *HistoryAction) RunGet(params struct {
|
||||
HasError: params.HasError > 0,
|
||||
Day: day,
|
||||
Keyword: params.Keyword,
|
||||
Ip: params.Ip,
|
||||
Domain: params.Domain,
|
||||
Size: size,
|
||||
})
|
||||
if err != nil {
|
||||
@@ -84,6 +90,8 @@ func (this *HistoryAction) RunGet(params struct {
|
||||
HasError: params.HasError > 0,
|
||||
Day: day,
|
||||
Keyword: params.Keyword,
|
||||
Ip: params.Ip,
|
||||
Domain: params.Domain,
|
||||
Size: size,
|
||||
Reverse: true,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user