blob: 207384491604a4b1302368643e662500fbb1f7a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
class lighttpd::munin {
lighttpd::config::file{'status':
content => 'server.modules += ( "mod_status" )
$HTTP["remoteip"] =~ "^(::ffff:)?127.0.0.1$" {
status.status-url = "/server-status"
status.config-url = "/server-config"
}
',
}
munin::plugin::deploy{'lighttpd_':
source => "lighttpd/munin/lighttpd_",
ensure => absent,
require => Lighttpd::Config::File['status'],
}
munin::plugin{'lighttpd_total_accesses':
require => Munin::Plugin::Deploy['lighttpd_'],
ensure => 'lighttpd_',
}
munin::plugin{'lighttpd_total_kbytes':
require => Munin::Plugin::Deploy['lighttpd_'],
ensure => 'lighttpd_',
}
munin::plugin{'lighttpd_uptime':
require => Munin::Plugin::Deploy['lighttpd_'],
ensure => 'lighttpd_',
}
munin::plugin{'lighttpd_busyservers':
require => Munin::Plugin::Deploy['lighttpd_'],
ensure => 'lighttpd_',
}
}
|