1

Prometheus は初めてで、RHEL 6 サーバーに Prometheus をインストールしようとしています。RHEL の rpm をインストールしました。以下のように構成ファイルに詳細を入力したことを投稿します。

    global:
  scrape_interval:     5s
  evaluation_interval: 5s
scrape_configs:
- job_name: linux
target_groups:
        -targets: ['192.17.36.189:3306']
          labels:
            alias: db1

プロメテウスを起動しようとすると、次のエラーが発生します。

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

ここでの問題は何ですか?

4

2 に答える 2

3

インデントがオフになっています。http: //www.robustperception.io/configuring-prometheus-with-docker/ には、必要な最小限の構成の例があります。

于 2016-09-12T18:18:30.303 に答える