YAMAHA RTX1100 を購入したので、Muninで監視できるように設定してみる。
基本的にはYamaha RTXの統計を Muninで取得する|でびぞー徒然日記を参考にすればよい。 CPUとMemory Usageのプラグインもあるのだが、後者は動かない。CPUのプラグインに手を入れて作ったようだが、変更が不十分なようだ。動くようにするパッチ:
--- rtx__memusage.txt-dist 2011-09-23 14:47:41.000000000 +0900
+++ rtx__memusage.txt 2011-09-23 14:50:01.000000000 +0900
@@ -93,7 +93,7 @@
exit 0;
}
-if ($0 =~ /^(?:|.*\/)snmp_([^_]+)_load$/)
+if ($0 =~ /^(?:|.*\/)snmp_([^_]+)_memusage$/)
{
$host = $1;
if ($host =~ /^([^:]+):(\d+)$/)
@@ -141,9 +141,9 @@
graph_args --base 1000 -r --lower-limit 0 --upper-limit 100
graph_vlabel %
graph_category system
-graph_info This graph shows the load average on the host. Load average is a rough way of estimating how hard the machine works. Optimally, a load average should be equal to or lower than the number of CPUs on the machine.
+graph_info This graph shows the memory usage on the host. Memory usage is a rough way of estimating how hard the machine works.
memory.label memory
-memory.info The load average itself. This number is an average of the last 5 minutes.
+memory.info The memory usage itself.
memory.draw AREA
";