mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
18 lines
502 B
Go
18 lines
502 B
Go
package analytics
|
|
|
|
type StartEvent struct {
|
|
ClientId string `json:"-"`
|
|
Version string `json:"version"`
|
|
FilterLength int `json:"filterLength"`
|
|
CustomAddress bool `json:"customAddress"`
|
|
CustomBase bool `json:"customBase"`
|
|
Protected bool `json:"protected"`
|
|
HasHostname bool `json:"hasHostname"`
|
|
}
|
|
|
|
type RequestEvent struct {
|
|
ClientId string `json:"-"`
|
|
TotalContainers int `json:"totalContainers"`
|
|
RunningContainers int `json:"runningContainers"`
|
|
}
|