diff --git a/manifests/apache/common.pp b/manifests/apache/common.pp index f1c5ab2..6e3451a 100644 --- a/manifests/apache/common.pp +++ b/manifests/apache/common.pp @@ -1,4 +1,5 @@ class profile::apache::common { include ::apache include ::apache::mod::status + include ::profile::munin::plugins::apache } diff --git a/manifests/munin/plugins/apache.pp b/manifests/munin/plugins/apache.pp new file mode 100644 index 0000000..a28bb1f --- /dev/null +++ b/manifests/munin/plugins/apache.pp @@ -0,0 +1,13 @@ +# Munin plugins for Apache + +class profile::munin::plugins::apache { + munin::plugin { 'apache_volume': + ensure => link, + } + munin::plugin { 'apache_accesses': + ensure => link, + } + munin::plugin { 'apache_processes': + ensure => link, + } +}