blob: 2b2acb4b4e9aff554881626c0e9a49c4c4c4162d (
plain)
1
2
3
4
5
6
7
8
9
|
# manifests/server/munin/debian.pp
class mysql::server::munin::debian {
munin::plugin {
[mysql_bytes, mysql_queries, mysql_slowqueries, mysql_threads]:
config => "user root\nenv.mysqlopts --defaults-file=/etc/mysql/debian.cnf",
require => Package['mysql'],
}
}
|