Add frequency field to Pi-hole stats API and display queries per second in widget

This commit is contained in:
2026-01-01 12:38:25 +01:00
parent 2a66278cae
commit 0a7e89307f
2 changed files with 10 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ type Queries struct {
UniqueDomains int64 `json:"unique_domains"`
Forwarded int64 `json:"forwarded"`
Cached int64 `json:"cached"`
Frequency int64 `json:"frequency"`
}
type Clients struct {