1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-04 03:54:58 +01:00

Adds analytics for start params

This commit is contained in:
Amir Raminfar
2021-04-19 12:22:13 -07:00
parent 3defe22eed
commit 9fdfabfb5d
4 changed files with 90 additions and 69 deletions

11
analytics/types.go Normal file
View File

@@ -0,0 +1,11 @@
package analytics
type StartEvent struct {
ClientId string `json:"-"`
Version string `json:"version"`
FilterLength int `json:"filterLength"`
CustomAddress bool `json:"customAddress"`
CustomBase bool `json:"customBase"`
TailSize int `json:"tailSize"`
Protected bool `json:"protected"`
}