blob: 46af17237d5df65b753921731fceda28f5144d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# manage apache monitoring things
class apache::munin {
if $::osfamily == 'Debian' {
include perl::extensions::libwww
}
munin::plugin{ [ 'apache_accesses', 'apache_processes', 'apache_volume' ]: }
munin::plugin::deploy { 'apache_activity':
source => 'apache/munin/apache_activity',
seltype => 'munin_services_plugin_exec_t',
}
}
|