- 2010/04/1900:00
先日、自宅鯖のMuninのバージョンを1.4.3にアップしてから、MySQLクエリ数のグラフにトータルが表示されて非常に見づらくなってしまったので、プラグインのPerlスクリプトを1行ほど削除して、見やすくしてみました。
削除した行は、 ここ の101行目。そして、100行目行末に、「\n”);
」を追加しました。
sub print_config { my $num = 0; print("graph_title MySQL queries graph_args --base 1000 graph_vlabel queries / \${graph_period} graph_category mysql graph_info Note that this is a old plugin which is no longer installed by default. It is retained for compatability with old installations.\n"); for my $key (keys %WANTED) { my $title = $WANTED{$key}; print("$title.label ${title}\n", "$title.min 0\n", "$title.type DERIVE\n", "$title.max 500000\n", "$title.draw ", ($num) ? "STACK" : "AREA" , "\n", ); $num++; } }
改造前
改造後
- 2010/04/19 00:00
- 旧日記のアーカイブ
- Permalink
- nmio
- Comment(0)
comment