
MuninのPluginでMySQLの統計を取得
MuninでMySQLのデータを取得します。
今回取得するデータは下記のとおり。
<Munin標準>
・MySQL queries
・MySQL slow queries
・MySQL threads
・MySQL throughput
<Munin Exchange>
・MySQL Connections
・MySQL Queries Cache Size
・MySQL Queries in cache
Munin側でPluginを有効にします。
# ln -s /usr/local/munin/lib/plugins/mysql_queries /etc/munin/plugins/mysql_queries
# ln -s /usr/local/munin/lib/plugins/mysql_slowqueries /etc/munin/plugins/mysql_slowqueries
# ln -s /usr/local/munin/lib/plugins/mysql_threads /etc/munin/plugins/mysql_threads
# ln -s /us...