mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 15:05:50 +03:00
coredns plugin -- Increase querylog given out to web UI from 1000 to 5000.
This commit is contained in:
parent
75d74a017b
commit
eb5f66ad9e
2 changed files with 4 additions and 4 deletions
|
@ -255,7 +255,7 @@ class Logs extends Component {
|
||||||
const { queryLogEnabled } = dashboard;
|
const { queryLogEnabled } = dashboard;
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<PageTitle title="Query Log" subtitle="Last 1000 DNS queries">
|
<PageTitle title="Query Log" subtitle="Last 5000 DNS queries">
|
||||||
<div className="page-title__actions">
|
<div className="page-title__actions">
|
||||||
{this.renderButtons(queryLogEnabled)}
|
{this.renderButtons(queryLogEnabled)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -24,7 +24,7 @@ const (
|
||||||
queryLogTimeLimit = time.Hour * 24 // how far in the past we care about querylogs
|
queryLogTimeLimit = time.Hour * 24 // how far in the past we care about querylogs
|
||||||
queryLogRotationPeriod = time.Hour * 24 // rotate the log every 24 hours
|
queryLogRotationPeriod = time.Hour * 24 // rotate the log every 24 hours
|
||||||
queryLogFileName = "querylog.json" // .gz added during compression
|
queryLogFileName = "querylog.json" // .gz added during compression
|
||||||
queryLogCacheSize = 1000 // maximum API response for /querylog
|
queryLogSize = 5000 // maximum API response for /querylog
|
||||||
queryLogCacheTime = time.Minute // if requested more often than this, give out cached response
|
queryLogCacheTime = time.Minute // if requested more often than this, give out cached response
|
||||||
queryLogTopSize = 500 // Keep in memory only top N values
|
queryLogTopSize = 500 // Keep in memory only top N values
|
||||||
queryLogAPIPort = "8618" // 8618 is sha512sum of "querylog" then each byte summed
|
queryLogAPIPort = "8618" // 8618 is sha512sum of "querylog" then each byte summed
|
||||||
|
@ -116,8 +116,8 @@ func handleQueryLog(w http.ResponseWriter, r *http.Request) {
|
||||||
values = logBuffer
|
values = logBuffer
|
||||||
logBufferLock.RUnlock()
|
logBufferLock.RUnlock()
|
||||||
|
|
||||||
if len(values) < queryLogCacheSize {
|
if len(values) < queryLogSize {
|
||||||
values = appendFromLogFile(values, queryLogCacheSize, queryLogTimeLimit)
|
values = appendFromLogFile(values, queryLogSize, queryLogTimeLimit)
|
||||||
}
|
}
|
||||||
queryLogLock.Lock()
|
queryLogLock.Lock()
|
||||||
queryLogCache = values
|
queryLogCache = values
|
||||||
|
|
Loading…
Reference in a new issue