config.go 151 B

1234567
  1. package prometheus
  2. type Config struct {
  3. Host string `json:",optional"`
  4. Port int `json:",default=9101"`
  5. Path string `json:",default=/metrics"`
  6. }