Merge pull request #52 in DNS/adguard-dns from feature/persistent-stats to master
* commit '19e76b693803220dffcd0a1fb1fe1e654309a11a': Add API call to reset stats Periodically flush stats.json Web UI -- persistent stats by writing them into stats.json at exit
This commit is contained in:
commit
3f8450337f
29
app.go
29
app.go
|
@ -6,8 +6,10 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/gobuffalo/packr"
|
"github.com/gobuffalo/packr"
|
||||||
)
|
)
|
||||||
|
@ -15,7 +17,12 @@ import (
|
||||||
// VersionString will be set through ldflags, contains current version
|
// VersionString will be set through ldflags, contains current version
|
||||||
var VersionString = "undefined"
|
var VersionString = "undefined"
|
||||||
|
|
||||||
|
func cleanup() {
|
||||||
|
writeStats()
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
c := make(chan os.Signal, 1)
|
||||||
log.Printf("AdGuard DNS web interface backend, version %s\n", VersionString)
|
log.Printf("AdGuard DNS web interface backend, version %s\n", VersionString)
|
||||||
box := packr.NewBox("build/static")
|
box := packr.NewBox("build/static")
|
||||||
{
|
{
|
||||||
|
@ -114,6 +121,28 @@ func main() {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = loadStats()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
signal.Notify(c, os.Interrupt)
|
||||||
|
go func() {
|
||||||
|
<-c
|
||||||
|
cleanup()
|
||||||
|
os.Exit(1)
|
||||||
|
}()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for range time.Tick(time.Hour * 24) {
|
||||||
|
err := writeStats()
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't write stats: %s", err)
|
||||||
|
// try later on next iteration, don't abort
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
||||||
|
|
||||||
runStatsCollectors()
|
runStatsCollectors()
|
||||||
|
|
21
control.go
21
control.go
|
@ -217,7 +217,7 @@ func handleStatus(w http.ResponseWriter, r *http.Request) {
|
||||||
// stats
|
// stats
|
||||||
// -----
|
// -----
|
||||||
func handleStats(w http.ResponseWriter, r *http.Request) {
|
func handleStats(w http.ResponseWriter, r *http.Request) {
|
||||||
histrical := generateMapFromStats(&statistics.perHour, 0, 24)
|
histrical := generateMapFromStats(&statistics.PerHour, 0, 24)
|
||||||
// sum them up
|
// sum them up
|
||||||
summed := map[string]interface{}{}
|
summed := map[string]interface{}{}
|
||||||
for key, values := range histrical {
|
for key, values := range histrical {
|
||||||
|
@ -259,16 +259,16 @@ func handleStatsHistory(w http.ResponseWriter, r *http.Request) {
|
||||||
switch timeUnitString {
|
switch timeUnitString {
|
||||||
case "seconds":
|
case "seconds":
|
||||||
timeUnit = time.Second
|
timeUnit = time.Second
|
||||||
stats = &statistics.perSecond
|
stats = &statistics.PerSecond
|
||||||
case "minutes":
|
case "minutes":
|
||||||
timeUnit = time.Minute
|
timeUnit = time.Minute
|
||||||
stats = &statistics.perMinute
|
stats = &statistics.PerMinute
|
||||||
case "hours":
|
case "hours":
|
||||||
timeUnit = time.Hour
|
timeUnit = time.Hour
|
||||||
stats = &statistics.perHour
|
stats = &statistics.PerHour
|
||||||
case "days":
|
case "days":
|
||||||
timeUnit = time.Hour * 24
|
timeUnit = time.Hour * 24
|
||||||
stats = &statistics.perDay
|
stats = &statistics.PerDay
|
||||||
default:
|
default:
|
||||||
http.Error(w, "Must specify valid time_unit parameter", 400)
|
http.Error(w, "Must specify valid time_unit parameter", 400)
|
||||||
return
|
return
|
||||||
|
@ -401,6 +401,16 @@ func handleQueryLogDisable(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func handleStatsReset(w http.ResponseWriter, r *http.Request) {
|
||||||
|
purgeStats()
|
||||||
|
|
||||||
|
_, err := fmt.Fprintf(w, "OK\n")
|
||||||
|
if err != nil {
|
||||||
|
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func handleStatsTop(w http.ResponseWriter, r *http.Request) {
|
func handleStatsTop(w http.ResponseWriter, r *http.Request) {
|
||||||
resp, err := client.Get("http://127.0.0.1:8618/querylog")
|
resp, err := client.Get("http://127.0.0.1:8618/querylog")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -1489,6 +1499,7 @@ func registerControlHandlers() {
|
||||||
http.HandleFunc("/control/stats", optionalAuth(ensureGET(handleStats)))
|
http.HandleFunc("/control/stats", optionalAuth(ensureGET(handleStats)))
|
||||||
http.HandleFunc("/control/stats_history", optionalAuth(ensureGET(handleStatsHistory)))
|
http.HandleFunc("/control/stats_history", optionalAuth(ensureGET(handleStatsHistory)))
|
||||||
http.HandleFunc("/control/stats_top", optionalAuth(ensureGET(handleStatsTop)))
|
http.HandleFunc("/control/stats_top", optionalAuth(ensureGET(handleStatsTop)))
|
||||||
|
http.HandleFunc("/control/stats_reset", optionalAuth(ensurePOST(handleStatsReset)))
|
||||||
http.HandleFunc("/control/querylog", optionalAuth(ensureGET(handleQueryLog)))
|
http.HandleFunc("/control/querylog", optionalAuth(ensureGET(handleQueryLog)))
|
||||||
http.HandleFunc("/control/querylog_enable", optionalAuth(ensurePOST(handleQueryLogEnable)))
|
http.HandleFunc("/control/querylog_enable", optionalAuth(ensurePOST(handleQueryLogEnable)))
|
||||||
http.HandleFunc("/control/querylog_disable", optionalAuth(ensurePOST(handleQueryLogDisable)))
|
http.HandleFunc("/control/querylog_disable", optionalAuth(ensurePOST(handleQueryLogDisable)))
|
||||||
|
|
14
helpers.go
14
helpers.go
|
@ -111,8 +111,8 @@ func generateMapFromStats(stats *periodicStats, start int, end int) map[string]i
|
||||||
|
|
||||||
avgProcessingTime := make([]float64, 0)
|
avgProcessingTime := make([]float64, 0)
|
||||||
|
|
||||||
count := getReversedSlice(stats.entries[processingTimeCount], start, end)
|
count := getReversedSlice(stats.Entries[processingTimeCount], start, end)
|
||||||
sum := getReversedSlice(stats.entries[processingTimeSum], start, end)
|
sum := getReversedSlice(stats.Entries[processingTimeSum], start, end)
|
||||||
for i := 0; i < len(count); i++ {
|
for i := 0; i < len(count); i++ {
|
||||||
var avg float64
|
var avg float64
|
||||||
if count[i] != 0 {
|
if count[i] != 0 {
|
||||||
|
@ -123,11 +123,11 @@ func generateMapFromStats(stats *periodicStats, start int, end int) map[string]i
|
||||||
}
|
}
|
||||||
|
|
||||||
result := map[string]interface{}{
|
result := map[string]interface{}{
|
||||||
"dns_queries": getReversedSlice(stats.entries[totalRequests], start, end),
|
"dns_queries": getReversedSlice(stats.Entries[totalRequests], start, end),
|
||||||
"blocked_filtering": getReversedSlice(stats.entries[filteredTotal], start, end),
|
"blocked_filtering": getReversedSlice(stats.Entries[filteredTotal], start, end),
|
||||||
"replaced_safebrowsing": getReversedSlice(stats.entries[filteredSafebrowsing], start, end),
|
"replaced_safebrowsing": getReversedSlice(stats.Entries[filteredSafebrowsing], start, end),
|
||||||
"replaced_safesearch": getReversedSlice(stats.entries[filteredSafesearch], start, end),
|
"replaced_safesearch": getReversedSlice(stats.Entries[filteredSafesearch], start, end),
|
||||||
"replaced_parental": getReversedSlice(stats.entries[filteredParental], start, end),
|
"replaced_parental": getReversedSlice(stats.Entries[filteredParental], start, end),
|
||||||
"avg_processing_time": avgProcessingTime,
|
"avg_processing_time": avgProcessingTime,
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
|
|
141
stats.go
141
stats.go
|
@ -2,12 +2,14 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"encoding/json"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
@ -33,31 +35,41 @@ const (
|
||||||
processingTimeCount = `coredns_dns_request_duration_seconds_count`
|
processingTimeCount = `coredns_dns_request_duration_seconds_count`
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var entryWhiteList = map[string]bool{
|
||||||
|
totalRequests: true,
|
||||||
|
filteredTotal: true,
|
||||||
|
filteredSafebrowsing: true,
|
||||||
|
filteredSafesearch: true,
|
||||||
|
filteredParental: true,
|
||||||
|
processingTimeSum: true,
|
||||||
|
processingTimeCount: true,
|
||||||
|
}
|
||||||
|
|
||||||
type periodicStats struct {
|
type periodicStats struct {
|
||||||
entries statsEntries
|
Entries statsEntries
|
||||||
lastRotate time.Time // last time this data was rotated
|
LastRotate time.Time // last time this data was rotated
|
||||||
}
|
}
|
||||||
|
|
||||||
type stats struct {
|
type stats struct {
|
||||||
perSecond periodicStats
|
PerSecond periodicStats
|
||||||
perMinute periodicStats
|
PerMinute periodicStats
|
||||||
perHour periodicStats
|
PerHour periodicStats
|
||||||
perDay periodicStats
|
PerDay periodicStats
|
||||||
|
|
||||||
lastSeen statsEntry
|
LastSeen statsEntry
|
||||||
}
|
}
|
||||||
|
|
||||||
var statistics stats
|
var statistics stats
|
||||||
|
|
||||||
func initPeriodicStats(periodic *periodicStats) {
|
func initPeriodicStats(periodic *periodicStats) {
|
||||||
periodic.entries = statsEntries{}
|
*periodic = periodicStats{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func purgeStats() {
|
||||||
initPeriodicStats(&statistics.perSecond)
|
initPeriodicStats(&statistics.PerSecond)
|
||||||
initPeriodicStats(&statistics.perMinute)
|
initPeriodicStats(&statistics.PerMinute)
|
||||||
initPeriodicStats(&statistics.perHour)
|
initPeriodicStats(&statistics.PerHour)
|
||||||
initPeriodicStats(&statistics.perDay)
|
initPeriodicStats(&statistics.PerDay)
|
||||||
}
|
}
|
||||||
|
|
||||||
func runStatsCollectors() {
|
func runStatsCollectors() {
|
||||||
|
@ -85,37 +97,29 @@ func isConnRefused(err error) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func statsRotate(periodic *periodicStats, now time.Time) {
|
func statsRotate(periodic *periodicStats, now time.Time, rotations int64) {
|
||||||
for key, values := range periodic.entries {
|
// calculate how many times we should rotate
|
||||||
newValues := [statsHistoryElements]float64{}
|
for r := int64(0); r < rotations; r++ {
|
||||||
for i := 1; i < len(values); i++ {
|
for key, values := range periodic.Entries {
|
||||||
newValues[i] = values[i-1]
|
newValues := [statsHistoryElements]float64{}
|
||||||
|
for i := 1; i < len(values); i++ {
|
||||||
|
newValues[i] = values[i-1]
|
||||||
|
}
|
||||||
|
periodic.Entries[key] = newValues
|
||||||
}
|
}
|
||||||
periodic.entries[key] = newValues
|
|
||||||
}
|
}
|
||||||
periodic.lastRotate = now
|
if rotations > 0 {
|
||||||
|
periodic.LastRotate = now
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// called every second, accumulates stats for each second, minute, hour and day
|
// called every second, accumulates stats for each second, minute, hour and day
|
||||||
func collectStats() {
|
func collectStats() {
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
// rotate each second
|
statsRotate(&statistics.PerSecond, now, int64(now.Sub(statistics.PerSecond.LastRotate)/time.Second))
|
||||||
// NOTE: since we are called every second, always rotate perSecond, otherwise aliasing problems cause the rotation to skip
|
statsRotate(&statistics.PerMinute, now, int64(now.Sub(statistics.PerMinute.LastRotate)/time.Minute))
|
||||||
if true {
|
statsRotate(&statistics.PerHour, now, int64(now.Sub(statistics.PerHour.LastRotate)/time.Hour))
|
||||||
statsRotate(&statistics.perSecond, now)
|
statsRotate(&statistics.PerDay, now, int64(now.Sub(statistics.PerDay.LastRotate)/time.Hour/24))
|
||||||
}
|
|
||||||
// if minute elapsed, rotate
|
|
||||||
if now.Sub(statistics.perMinute.lastRotate).Minutes() >= 1 {
|
|
||||||
statsRotate(&statistics.perMinute, now)
|
|
||||||
}
|
|
||||||
// if hour elapsed, rotate
|
|
||||||
if now.Sub(statistics.perHour.lastRotate).Hours() >= 1 {
|
|
||||||
statsRotate(&statistics.perHour, now)
|
|
||||||
}
|
|
||||||
// if day elapsed, rotate
|
|
||||||
if now.Sub(statistics.perDay.lastRotate).Hours()/24.0 >= 1 {
|
|
||||||
statsRotate(&statistics.perDay, now)
|
|
||||||
}
|
|
||||||
|
|
||||||
// grab HTTP from prometheus
|
// grab HTTP from prometheus
|
||||||
resp, err := client.Get("http://127.0.0.1:9153/metrics")
|
resp, err := client.Get("http://127.0.0.1:9153/metrics")
|
||||||
|
@ -169,6 +173,11 @@ func collectStats() {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// keys not in whitelist are not ok
|
||||||
|
if entryWhiteList[key] == false {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
got, ok := entry[key]
|
got, ok := entry[key]
|
||||||
if ok {
|
if ok {
|
||||||
value += got
|
value += got
|
||||||
|
@ -177,16 +186,16 @@ func collectStats() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// calculate delta
|
// calculate delta
|
||||||
delta := calcDelta(entry, statistics.lastSeen)
|
delta := calcDelta(entry, statistics.LastSeen)
|
||||||
|
|
||||||
// apply delta to second/minute/hour/day
|
// apply delta to second/minute/hour/day
|
||||||
applyDelta(&statistics.perSecond, delta)
|
applyDelta(&statistics.PerSecond, delta)
|
||||||
applyDelta(&statistics.perMinute, delta)
|
applyDelta(&statistics.PerMinute, delta)
|
||||||
applyDelta(&statistics.perHour, delta)
|
applyDelta(&statistics.PerHour, delta)
|
||||||
applyDelta(&statistics.perDay, delta)
|
applyDelta(&statistics.PerDay, delta)
|
||||||
|
|
||||||
// save last seen
|
// save last seen
|
||||||
statistics.lastSeen = entry
|
statistics.LastSeen = entry
|
||||||
}
|
}
|
||||||
|
|
||||||
func calcDelta(current, seen statsEntry) statsEntry {
|
func calcDelta(current, seen statsEntry) statsEntry {
|
||||||
|
@ -201,8 +210,50 @@ func calcDelta(current, seen statsEntry) statsEntry {
|
||||||
|
|
||||||
func applyDelta(current *periodicStats, delta statsEntry) {
|
func applyDelta(current *periodicStats, delta statsEntry) {
|
||||||
for key, deltaValue := range delta {
|
for key, deltaValue := range delta {
|
||||||
currentValues := current.entries[key]
|
currentValues := current.Entries[key]
|
||||||
currentValues[0] += deltaValue
|
currentValues[0] += deltaValue
|
||||||
current.entries[key] = currentValues
|
current.Entries[key] = currentValues
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func loadStats() error {
|
||||||
|
statsFile := filepath.Join(config.ourBinaryDir, "stats.json")
|
||||||
|
if _, err := os.Stat(statsFile); os.IsNotExist(err) {
|
||||||
|
log.Printf("Stats JSON does not exist, skipping: %s", statsFile)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
log.Printf("Loading JSON stats: %s", statsFile)
|
||||||
|
jsonText, err := ioutil.ReadFile(statsFile)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't read JSON stats: %s", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = json.Unmarshal(jsonText, &statistics)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't parse JSON stats: %s", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeStats() error {
|
||||||
|
statsFile := filepath.Join(config.ourBinaryDir, "stats.json")
|
||||||
|
log.Printf("Writing JSON file: %s", statsFile)
|
||||||
|
json, err := json.MarshalIndent(statistics, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't generate JSON: %s", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = ioutil.WriteFile(statsFile+".tmp", json, 0644)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't write stats in JSON: %s", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = os.Rename(statsFile+".tmp", statsFile)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Couldn't rename stats JSON: %s", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue