prometheus, grafanaでいい感じに監視を可視化する
3629 ワード
概要
prometheus
と呼ばれる監視ツールと、grafana
というグラフなどを GUIのデータで可視化してくれるフレームワークを利用して、サーバーの監視を行います。
環境構築
基本的にdockerをフル活用します。
docker-compose.yml
version: '3'
services:
prometheus:
image: prom/prometheus
container_name: prometheus
volumes:
- /var/app/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- 9090:9090
grafana:
image: grafana/grafana
container_name: grafana
ports:
- 3000:3000
env_file:
- /var/app/prometheus/grafana.env
prometheus
※ golangが必要
方法1: ソースからビルド
注: 少し時間かかる
$ mkdir -p $GOPATH/src/github.com/prometheus
$ cd $GOPATH/src/github.com/prometheus
$ git clone https://github.com/prometheus/prometheus.git
$ cd prometheus
$ make build
$ ./prometheus -config.file=your_config.yml
方法2: 公式からダウンロード
こちらからbuild済みのバイナリーをダウンロードすることも可能です。
https://prometheus.io/download/
$ cd prometheus-2.14.0.darwin-amd64 #macの場合
$ ./prometheus -config.file=your_config.yml
使う時は、your_config.ymlの部分書き換えていきます。
grafana
公式のdocker imageが公開されているので、そちらを使うのが一番楽チンです。
$ docker run -d -p 3000:3000 grafana/grafana
参考
Author And Source
この問題について(prometheus, grafanaでいい感じに監視を可視化する), 我々は、より多くの情報をここで見つけました https://qiita.com/____easy/items/c51667a80206c115cfdd著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .