mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
42291cd547
Updates #5720. Squashed commit of the following: commit e8093c990f15e2efc496f1a04f87360825e34e96 Merge: df5413eef28fefaff1
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Sep 5 15:06:33 2023 +0300 Merge branch 'master' into 5720-wildcard-ignored-domains commit df5413eefeac2c7e34eb725db9e2908b5b2d08cb Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Sep 5 14:49:05 2023 +0300 confmigrate: imp docs commit 1644d99b730cc7f22c9d75b8e990149d3ce5b32a Merge: 9542ee1611e4517898
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Sep 5 14:23:42 2023 +0300 Merge branch 'master' into 5720-wildcard-ignored-domains commit 9542ee1616c1dd4bdb6ec9a2af79a2af3858a7e3 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Sep 5 12:48:48 2023 +0300 all: upd chlog commit 183f84a7f73c7bd33669bd108076f60514ca101e Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Fri Sep 1 17:11:31 2023 +0300 all: imp chlog commit a704325352a577a9b6652f011b82180ec3a6e095 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Thu Aug 31 18:59:52 2023 +0300 all: imp code commit fe99c3b883500850399b1feb72c914ab878b3107 Merge: 7f11e94600182b9ec1
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Thu Aug 31 18:43:09 2023 +0300 Merge branch 'master' into 5720-wildcard-ignored-domains commit 7f11e94609027ed821a125d27a1ffde03f37334a Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Aug 30 19:57:51 2023 +0300 aghnet: add tests commit f10f9190ce1064a5d03155e8b6bba61db977897b Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Aug 30 18:32:07 2023 +0300 all: add conf migration commit a53c14df129765366966c5230dd53aa29bdd25c5 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Aug 30 13:37:30 2023 +0300 all: add ignore engine
237 lines
6.5 KiB
Go
237 lines
6.5 KiB
Go
// HTTP request handlers for accessing statistics data and configuration settings
|
|
|
|
package stats
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghalg"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghnet"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
"github.com/AdguardTeam/golibs/timeutil"
|
|
)
|
|
|
|
// topAddrs is an alias for the types of the TopFoo fields of statsResponse.
|
|
// The key is either a client's address or a requested address.
|
|
type topAddrs = map[string]uint64
|
|
|
|
// topAddrsFloat is like [topAddrs] but the value is float64 number.
|
|
type topAddrsFloat = map[string]float64
|
|
|
|
// StatsResp is a response to the GET /control/stats.
|
|
type StatsResp struct {
|
|
TimeUnits string `json:"time_units"`
|
|
|
|
TopQueried []topAddrs `json:"top_queried_domains"`
|
|
TopClients []topAddrs `json:"top_clients"`
|
|
TopBlocked []topAddrs `json:"top_blocked_domains"`
|
|
|
|
TopUpstreamsResponses []topAddrs `json:"top_upstreams_responses"`
|
|
TopUpstreamsAvgTime []topAddrsFloat `json:"top_upstreams_avg_time"`
|
|
|
|
DNSQueries []uint64 `json:"dns_queries"`
|
|
|
|
BlockedFiltering []uint64 `json:"blocked_filtering"`
|
|
ReplacedSafebrowsing []uint64 `json:"replaced_safebrowsing"`
|
|
ReplacedParental []uint64 `json:"replaced_parental"`
|
|
|
|
NumDNSQueries uint64 `json:"num_dns_queries"`
|
|
NumBlockedFiltering uint64 `json:"num_blocked_filtering"`
|
|
NumReplacedSafebrowsing uint64 `json:"num_replaced_safebrowsing"`
|
|
NumReplacedSafesearch uint64 `json:"num_replaced_safesearch"`
|
|
NumReplacedParental uint64 `json:"num_replaced_parental"`
|
|
|
|
AvgProcessingTime float64 `json:"avg_processing_time"`
|
|
}
|
|
|
|
// handleStats is the handler for the GET /control/stats HTTP API.
|
|
func (s *StatsCtx) handleStats(w http.ResponseWriter, r *http.Request) {
|
|
start := time.Now()
|
|
|
|
var (
|
|
resp *StatsResp
|
|
ok bool
|
|
)
|
|
func() {
|
|
s.confMu.RLock()
|
|
defer s.confMu.RUnlock()
|
|
|
|
resp, ok = s.getData(uint32(s.limit.Hours()))
|
|
}()
|
|
|
|
log.Debug("stats: prepared data in %v", time.Since(start))
|
|
|
|
if !ok {
|
|
// Don't bring the message to the lower case since it's a part of UI
|
|
// text for the moment.
|
|
aghhttp.Error(r, w, http.StatusInternalServerError, "Couldn't get statistics data")
|
|
|
|
return
|
|
}
|
|
|
|
aghhttp.WriteJSONResponseOK(w, r, resp)
|
|
}
|
|
|
|
// configResp is the response to the GET /control/stats_info.
|
|
type configResp struct {
|
|
IntervalDays uint32 `json:"interval"`
|
|
}
|
|
|
|
// getConfigResp is the response to the GET /control/stats_info.
|
|
type getConfigResp struct {
|
|
// Ignored is the list of host names, which should not be counted.
|
|
Ignored []string `json:"ignored"`
|
|
|
|
// Interval is the statistics rotation interval in milliseconds.
|
|
Interval float64 `json:"interval"`
|
|
|
|
// Enabled shows if statistics are enabled. It is an aghalg.NullBool to be
|
|
// able to tell when it's set without using pointers.
|
|
Enabled aghalg.NullBool `json:"enabled"`
|
|
}
|
|
|
|
// handleStatsInfo is the handler for the GET /control/stats_info HTTP API.
|
|
//
|
|
// Deprecated: Remove it when migration to the new API is over.
|
|
func (s *StatsCtx) handleStatsInfo(w http.ResponseWriter, r *http.Request) {
|
|
var (
|
|
enabled bool
|
|
limit time.Duration
|
|
)
|
|
func() {
|
|
s.confMu.RLock()
|
|
defer s.confMu.RUnlock()
|
|
|
|
enabled, limit = s.enabled, s.limit
|
|
}()
|
|
|
|
days := uint32(limit / timeutil.Day)
|
|
ok := checkInterval(days)
|
|
if !ok || (enabled && days == 0) {
|
|
// NOTE: If interval is custom we set it to 90 days for compatibility
|
|
// with old API.
|
|
days = 90
|
|
}
|
|
|
|
resp := configResp{IntervalDays: days}
|
|
if !enabled {
|
|
resp.IntervalDays = 0
|
|
}
|
|
|
|
aghhttp.WriteJSONResponseOK(w, r, resp)
|
|
}
|
|
|
|
// handleGetStatsConfig is the handler for the GET /control/stats/config HTTP
|
|
// API.
|
|
func (s *StatsCtx) handleGetStatsConfig(w http.ResponseWriter, r *http.Request) {
|
|
var resp *getConfigResp
|
|
func() {
|
|
s.confMu.RLock()
|
|
defer s.confMu.RUnlock()
|
|
|
|
resp = &getConfigResp{
|
|
Ignored: s.ignored.Values(),
|
|
Interval: float64(s.limit.Milliseconds()),
|
|
Enabled: aghalg.BoolToNullBool(s.enabled),
|
|
}
|
|
}()
|
|
|
|
aghhttp.WriteJSONResponseOK(w, r, resp)
|
|
}
|
|
|
|
// handleStatsConfig is the handler for the POST /control/stats_config HTTP API.
|
|
//
|
|
// Deprecated: Remove it when migration to the new API is over.
|
|
func (s *StatsCtx) handleStatsConfig(w http.ResponseWriter, r *http.Request) {
|
|
reqData := configResp{}
|
|
err := json.NewDecoder(r.Body).Decode(&reqData)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "json decode: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
if !checkInterval(reqData.IntervalDays) {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "Unsupported interval")
|
|
|
|
return
|
|
}
|
|
|
|
limit := time.Duration(reqData.IntervalDays) * timeutil.Day
|
|
|
|
defer s.configModified()
|
|
|
|
s.confMu.Lock()
|
|
defer s.confMu.Unlock()
|
|
|
|
s.setLimit(limit)
|
|
}
|
|
|
|
// handlePutStatsConfig is the handler for the PUT /control/stats/config/update
|
|
// HTTP API.
|
|
func (s *StatsCtx) handlePutStatsConfig(w http.ResponseWriter, r *http.Request) {
|
|
reqData := getConfigResp{}
|
|
err := json.NewDecoder(r.Body).Decode(&reqData)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "json decode: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
engine, err := aghnet.NewIgnoreEngine(reqData.Ignored)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusUnprocessableEntity, "ignored: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
ivl := time.Duration(reqData.Interval) * time.Millisecond
|
|
err = validateIvl(ivl)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusUnprocessableEntity, "unsupported interval: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
if reqData.Enabled == aghalg.NBNull {
|
|
aghhttp.Error(r, w, http.StatusUnprocessableEntity, "enabled is null")
|
|
|
|
return
|
|
}
|
|
|
|
defer s.configModified()
|
|
|
|
s.confMu.Lock()
|
|
defer s.confMu.Unlock()
|
|
|
|
s.ignored = engine
|
|
s.limit = ivl
|
|
s.enabled = reqData.Enabled == aghalg.NBTrue
|
|
}
|
|
|
|
// handleStatsReset is the handler for the POST /control/stats_reset HTTP API.
|
|
func (s *StatsCtx) handleStatsReset(w http.ResponseWriter, r *http.Request) {
|
|
err := s.clear()
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusInternalServerError, "stats: %s", err)
|
|
}
|
|
}
|
|
|
|
// initWeb registers the handlers for web endpoints of statistics module.
|
|
func (s *StatsCtx) initWeb() {
|
|
if s.httpRegister == nil {
|
|
return
|
|
}
|
|
|
|
s.httpRegister(http.MethodGet, "/control/stats", s.handleStats)
|
|
s.httpRegister(http.MethodPost, "/control/stats_reset", s.handleStatsReset)
|
|
s.httpRegister(http.MethodGet, "/control/stats/config", s.handleGetStatsConfig)
|
|
s.httpRegister(http.MethodPut, "/control/stats/config/update", s.handlePutStatsConfig)
|
|
|
|
// Deprecated handlers.
|
|
s.httpRegister(http.MethodGet, "/control/stats_info", s.handleStatsInfo)
|
|
s.httpRegister(http.MethodPost, "/control/stats_config", s.handleStatsConfig)
|
|
}
|