Performance-Monitoring

評估 munin.conf 中定義的 Munin 圖

  • October 12, 2010

我已經定義了一個額外的圖表(在 Munin 中munin.conf),它計算了我的 MySQL 數據庫的總大小。索引和數據大小是從外部外掛中提取的。定義如下所示:

[...]

[Database;my.host.com]
   address my.host.com
   use_node_name yes

   dbsize.update no
   dbsize.graph_args --base 1024 -l 0
   dbsize.graph_title Total database size
   dbsize.graph_vlabel bytes
   dbsize.graph_category mysql
   dbsize.graph_info The total database size.
   dbsize.graph_order the_sum
   dbsize.the_sum.sum \
           my.host.com:mysql_size.index \
           my.host.com:mysql_size.datas
   dbsize.the_sum.label data+index
   dbsize.the_sum.type GAUGE
   dbsize.the_sum.min 0

[...]

現在,**是否可以提取該圖的目前值?**跑步

# munin-run dbsize

要麼

# munin-run my.host.com:dbsize

似乎不起作用。

也許您可以嘗試直接從 RRDTool 獲取價值?

Munin 為原始碼保留 rrdtool (.rrd) 文件,您可以嘗試直接在 munin 的 rrd 上使用 rrdtool 來獲取值。

引用自:https://serverfault.com/questions/128119