Add posts stats

This commit is contained in:
Philipp 2024-11-15 13:43:39 +01:00
parent 52d90ca4c1
commit 5770fc2a18
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
2 changed files with 57 additions and 1 deletions

View file

@ -5,6 +5,7 @@ type ServerInfo struct {
Cron Cron `json:"cron"`
Worker Worker `json:"worker"`
Users Users `json:"users"`
Posts Posts `json:"posts"`
Packets Packets `json:"packets"`
Reports Reports `json:"reports"`
Update Update `json:"update"`
@ -45,7 +46,7 @@ type Worker struct {
LastExecution DateTimeTimestamp `json:"lastExecution"`
JPM JPM `json:"jpm"`
Active WorkerCount `json:"active"`
Defferd []int64 `json:"defferd"`
Deferred []int64 `json:"deferrd"`
Total WorkerCount `json:"total"`
}