mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
24 lines
922 B
Go
24 lines
922 B
Go
package types
|
|
|
|
type BeaconEvent struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
Browser string `json:"browser"`
|
|
AuthProvider string `json:"authProvider"`
|
|
FilterLength int `json:"filterLength"`
|
|
Clients int `json:"clients"`
|
|
HasCustomAddress bool `json:"hasCustomAddress"`
|
|
HasCustomBase bool `json:"hasCustomBase"`
|
|
HasHostname bool `json:"hasHostname"`
|
|
RunningContainers int `json:"runningContainers"`
|
|
HasActions bool `json:"hasActions"`
|
|
HasShell bool `json:"hasShell"`
|
|
IsSwarmMode bool `json:"isSwarmMode"`
|
|
ServerVersion string `json:"serverVersion"`
|
|
ServerID string `json:"serverID"`
|
|
Mode string `json:"mode"`
|
|
RemoteAgents int `json:"remoteAgents"`
|
|
RemoteClients int `json:"remoteClients"`
|
|
SubCommand string `json:"subCommand"`
|
|
}
|