prometheusとgrafanaをdocker(podman)で10分で構築してみた。
4686 ワード
環境
ubuntu 18.04.4 LTS
podman 1.9.2
podman-compose 0.1.5
参考サイト
podmanインストール
podmanインストールはリンクを参照
手順
1.prometheus.ymlを作成
$ mkdir prometheus-data
$ mkdir prometheus-data
prometheus-dataの配下に以下を作成
prometheus.yml
global:
scrape_interval: 15s # By default, scrape targets every 15 seconds.
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels:
monitor: 'codelab-monitor'
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'
# Override the global default and scrape targets from this job every 5 seconds.
scrape_interval: 5s
static_configs:
- targets: ['localhost:9090']
2.docker-compose.ymlを作成
prometheusもgrafanaもイメージが公開されているので構築は楽ちんです。
docker-compose.yml
version: '2'
services:
prometheus:
image: prom/prometheus
volumes:
- ./prometheus-data/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- '9091:9090'
grafana:
image: grafana/grafana
ports:
- "3000:3000"
作成後、upする。
sudo podman-compose up -d
以下に接続する
どんなもんか試していきたいと思います。
お礼
@ryuichi1208さんのサイトを参考にさせていただきました。ありがとうございました。
Author And Source
この問題について(prometheusとgrafanaをdocker(podman)で10分で構築してみた。), 我々は、より多くの情報をここで見つけました https://qiita.com/takumi-AandS/items/1ac9ad4bf592fcfa73bd著者帰属:元の著者の情報は、元の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 .