2018年8月24日金曜日

VagrantでGrafanaとPrometheusをインストールした仮想マシン(CentOS7.5)を構築する

GrafanaとPrometheusを組み合わせて使用して、サーバーの監視、可視化を行う事ができます。

〇Grafanaの画面


〇構築方法
1. 以下のVagrantfileを使用して、GrafanaとPrometheusをインストールした仮想マシン(CentOS7.5)を構築します

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/centos-7.5"
  config.vm.hostname = "co75grafanaprometheus"
config.vm.network :public_network, ip:"192.168.1.107"
config.vm.network "private_network", ip: "192.168.55.107", :netmask => "255.255.255.0"
  config.vm.provider :virtualbox do |vbox|
    vbox.name = "co75grafanaprometheus"
    vbox.cpus = 4
    vbox.memory = 4096
    vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8

# download and install prometheus
wget https://github.com/prometheus/prometheus/releases/download/v2.3.2/prometheus-2.3.2.linux-amd64.tar.gz
tar xvfz prometheus-2.3.2.linux-amd64.tar.gz
mv prometheus-2.3.2.linux-amd64 /opt

cat << EOF > /etc/systemd/system/prometheus.service
[Unit]
Description=Prometheus
Requires=network.target

[Service]
Restart=always
WorkingDirectory=/opt/prometheus-2.3.2.linux-amd64
ExecStart=/opt/prometheus-2.3.2.linux-amd64/prometheus --config.file=prometheus.yml
ExecReload=/bin/kill -HUP $MAINPID

[Install]
WantedBy=multi-user.target
EOF
systemctl enable prometheus
systemctl start prometheus

# install grafana
cat << EOF > /etc/yum.repos.d/grafana.repo
[grafana]
name=grafana
baseurl=https://packagecloud.io/grafana/stable/el/7/x86_64
repo_gpgcheck=1
enabled=1
gpgcheck=1
gpgkey=https://packagecloud.io/gpg.key https://grafanarel.s3.amazonaws.com/RPM-GPG-KEY-grafana
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
EOF
yum -y install grafana

systemctl enable grafana-server
systemctl start grafana-server

echo 'prometheus -> 192.168.1.107:9090'
echo 'grafana -> 192.168.1.107:3000' 
echo 'user: admin    password: admin'
SHELL
end

2. ブラウザからhttp://192.168.1.107:3000にアクセスします。デフォルトユーザadmin、デフォルトパスワードadminでログインします。


3.新しいパスワードを入力します


4.Add data sourceをクリックします


5. Nameにprometheus、Typeにprometheus、URLにhttp://localhost:9090を入力してSave & Testボタンをクリックします


6. Backボタンをクリックします


7. 画面左のプラスアイコンメニュー内のDashboardをクリックして、Graphアイコンをクリックします


8. Panel Title右の下矢印メニューのEditをクリックします


9. process_open_fdsを選択します


10. 画面右上の戻るボタンをクリックしてグラフの追加を終了します


2 件のコメント:

  1. >ブラウザからhttp://192.168.1.107:3000にアクセスします。デフォルトユーザadmin、デフォルトパスワードadminでログインします。
    こちら、sign upボタンがなかったので、ログインできずに困っていました。
    参考にさせていただき、解決しました。ありがとうございました。

    返信削除
    返信
    1. 書き込みありがとうございます!

      削除