go-zero/core/prometheus/config.go
zhoushuguang d629acc2b7
default metric host (#196)
Co-authored-by: zhoushuguang <zhoushuguang@xiaoheiban.cn>
2020-11-09 16:03:07 +08:00

8 lines
160 B
Go

package prometheus
type Config struct {
Host string `json:",default=127.0.0.1"`
Port int `json:",default=9101"`
Path string `json:",default=/metrics"`
}