10
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Munin で複数サーバのグラフを1つにまとめて表示する方法

Last updated at Posted at 2014-08-25

複数サーバのグラフを1つにまとめたい

仮想環境は簡単に作成できて使い勝手もいいのですが沢山作りすぎてしまい仮想とはいえ個別に見るのは辛い。
で複数サーバのグラフを1つにまとめて見ることができれば楽なのでその設定方法。そしていつものごとく、少しはまる…というおち(笑)。
↓こんな感じで、2サーバ混ぜてみたw
munin_05.png

graph_order でグループ単ににまとめる(だけ)

設定してもグラフが真っ白だったので、調べたら単にプラグインとプラグインの値の指定を間違えていただけというオチでした。

hoge.graph_order \
  redmine_gr=redmine:load.load \
  gitlab_gr=gitlab:load.load

たとえば上記の「redmine_gr=:load.load」場合
 redmine_gr : ラベル
 redmine : muninで定義しているホスト名(実ホスト名ではない)
 load.load : load プラグインの load プロパティ

munin日本語情報ノート サンプル/グラフ引数のサンプル

プラグインのプロパティを調べる方法は、2通り。

munin-run コマンドを使って調べる方法

plugins ディレクトリにインストールされているプラグイン名を、munin-run コマンドの引数に指定するだけ。下記の場合、load.value の値を使用したい場合は、load プロパティが使用可能だとわかる(って説明がクドイ)。

# munin-run load
load.value 0.22

telnet コマンドを使って調べる方法

4949 ポートにアクセスしてみる。list コマンドと fetch コマンドで簡単に確認できる。

# telnet 192.168.11.200 4949
Trying 192.168.11.200...
Connected to 192.168.11.200.
Escape character is '^]'.
# munin node at gitlab
list
apache_accesses apache_processes apache_volume cpu df df_inode entropy forks fw_packets if_err_eth0 if_eth0 interrupts irqstats load memory netstat nfs4_client nfs_client ntp_kernel_err ntp_kernel_pll_freq ntp_kernel_pll_off ntp_offset ntp_states open_files open_inodes postfix_mailqueue postfix_mailvolume proc_pri processes swap threads uptime users vmstat
fetch load
load.value 0.00
.

設定の確認

確認作業は、Munin が node 情報を収集する間隔(5分)で行われるため多少の待ちが必要。ただ graph_order コマンドで描画されるグラフの元データは、すでに作成されたグラフ情報と重ねるだけなので指定がうまいこといけばすぐに期待とおりの結果をみることができる。

参考サイト

東京電力の電力使用状況をmuninにしてみる
Loaning data from other graphs
muninの設定(つづき)
munin 4949
Muninでアラートメールの送信 (メール送信編)
Munin/設定

10
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?