〇Grafanaの画面
〇構築方法
1. 以下のVagrantfileを使用して、GrafanaとPrometheusをインストールした仮想マシン(Ubuntu18.04)を構築します
Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/ubuntu-18.04"
config.vm.hostname = "ub1804grafanaprometheus"
config.vm.provider :virtualbox do |vbox|
vbox.name = "ub1804grafanaprometheus"
vbox.cpus = 4
vbox.memory = 4096
vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
end
config.vm.network "private_network", ip: "192.168.55.109", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.109", :netmask => "255.255.255.0"
config.vm.provision "shell", inline: <<-SHELL
apt-get update
sed -i -e 's/# ja_JP.UTF-8 UTF-8/ja_JP.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
# 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
apt-get -y install curl apt-transport-https
echo "deb https://packagecloud.io/grafana/stable/debian/ stretch main" >> /etc/apt/sources.list
curl https://packagecloud.io/gpg.key | sudo apt-key add -
apt-get update
apt-get -y install grafana
systemctl enable grafana-server
systemctl start grafana-server
echo 'prometheus -> 192.168.1.109:9090'
echo 'grafana -> 192.168.1.109:3000'
echo 'user: admin password: admin'
SHELL
end
2. ブラウザからhttp://192.168.1.109: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_virtual_memory_bytesを選択します
10. 画面右上の戻るボタンをクリックしてグラフの追加を終了します
0 件のコメント:
コメントを投稿