Prometheus 配置
prometheus 配置
Config Prometheus 相关配置,我们会在进程中启动启动一个 prometheus 端口。
参数定义
// A Config is a prometheus config.
type Config struct {
Host string `json:",optional"`
Port int `json:",default=9101"`
Path string `json:",default=/metrics"`
}
参数 | 类型 | 默认值 | 说明 |
---|---|---|---|
Host | string | 监听地址 | |
Port | int | 9101 | 监听端口 |
Path | string | 监听的路径 |