Prometheus 启动查询
Prometheus Startup query
我是 Prometheus 的新手,我正在尝试在我的 RHEL 6 服务器中安装 Prometheus。
我已经安装了 RHEL 的 rpm,post 我在配置文件中填写了如下详细信息:
global:
scrape_interval: 5s
evaluation_interval: 5s
scrape_configs:
- job_name: linux
target_groups:
-targets: ['192.17.36.189:3306']
labels:
alias: db1
当我尝试启动 prometheus 时,出现以下错误:
INFO[0000] Starting prometheus (version=1.1.2, branch=master, revision=36fbdcc30fd13ad796381dc934742c559feeb1b5) source=main.go:73
INFO[0000] Build context (go=go1.6.3, user=root@a74d279a0d22, date=20160908-13:12:43) source=main.go:74
INFO[0000] Loading configuration file prometheus.yml source=main.go:221
ERRO[0000] Error loading config: couldn't load configuration (-config.file=prometheus.yml): yaml: line 6: found character that cannot start any token source=main.go:126
这里有什么问题?
您的缩进已关闭,http://www.robustperception.io/configuring-prometheus-with-docker/ 有一个最小配置示例,应该可以让您继续。
target_groups
重命名为 static_configs
。请使用最新的 Prometheus 镜像,如下所示。
static_configs:
- targets: ['192.17.36.189:3306']
以上对我有用。
还有,container/pod/service里面prometheus的9090端口是不是暴露了? https://github.com/prometheus/prometheus/wiki/Default-port-allocations
我是 Prometheus 的新手,我正在尝试在我的 RHEL 6 服务器中安装 Prometheus。 我已经安装了 RHEL 的 rpm,post 我在配置文件中填写了如下详细信息:
global:
scrape_interval: 5s
evaluation_interval: 5s
scrape_configs:
- job_name: linux
target_groups:
-targets: ['192.17.36.189:3306']
labels:
alias: db1
当我尝试启动 prometheus 时,出现以下错误:
INFO[0000] Starting prometheus (version=1.1.2, branch=master, revision=36fbdcc30fd13ad796381dc934742c559feeb1b5) source=main.go:73
INFO[0000] Build context (go=go1.6.3, user=root@a74d279a0d22, date=20160908-13:12:43) source=main.go:74
INFO[0000] Loading configuration file prometheus.yml source=main.go:221
ERRO[0000] Error loading config: couldn't load configuration (-config.file=prometheus.yml): yaml: line 6: found character that cannot start any token source=main.go:126
这里有什么问题?
您的缩进已关闭,http://www.robustperception.io/configuring-prometheus-with-docker/ 有一个最小配置示例,应该可以让您继续。
target_groups
重命名为 static_configs
。请使用最新的 Prometheus 镜像,如下所示。
static_configs:
- targets: ['192.17.36.189:3306']
以上对我有用。
还有,container/pod/service里面prometheus的9090端口是不是暴露了? https://github.com/prometheus/prometheus/wiki/Default-port-allocations