1
0

config.go 404 B

123456789101112
  1. package devserver
  2. // Config is config for inner http server.
  3. type Config struct {
  4. Enabled bool `json:",default=true"`
  5. Host string `json:",optional"`
  6. Port int `json:",default=6060"`
  7. MetricsPath string `json:",default=/metrics"`
  8. HealthPath string `json:",default=/healthz"`
  9. EnableMetrics bool `json:",default=true"`
  10. EnablePprof bool `json:",default=true"`
  11. }