github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/pkg/model/telemetry_settings.go (about) 1 package model 2 3 import "time" 4 5 const DefaultTelemetryPeriod = 60 * time.Second 6 7 type TelemetrySettings struct { 8 Cmd Cmd 9 Workdir string // directory from which this Cmd should be run 10 11 // How often to send the trace data. 12 Period time.Duration 13 }