123456789101112 |
- package devserver
- // Config is config for inner http server.
- type Config struct {
- Enabled bool `json:",default=true"`
- Host string `json:",optional"`
- Port int `json:",default=6470"`
- MetricsPath string `json:",default=/metrics"`
- HealthPath string `json:",default=/healthz"`
- EnableMetrics bool `json:",default=true"`
- EnablePprof bool `json:",default=true"`
- }
|