mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
* Adds support for multiple hosts * Adds UI for drop down * Adds support for TLS and remove SSH * Changes dropdown to only show up with >1 hosts * Fixes js tests * Fixes go tests * Fixes download link * Updates readme * Removes unused imports * Fixes spaces
19 lines
576 B
Go
19 lines
576 B
Go
package analytics
|
|
|
|
type StartEvent struct {
|
|
ClientId string `json:"-"`
|
|
Version string `json:"version"`
|
|
FilterLength int `json:"filterLength"`
|
|
RemoteHostLength int `json:"remoteHostLength"`
|
|
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"`
|
|
}
|