Puppet Class: munin::plugins::linux

Defined in:
manifests/plugins/linux.pp

Overview

Set up plugins for a linux host



2
3
4
5
6
7
8
9
10
# File 'manifests/plugins/linux.pp', line 2

class munin::plugins::linux {
  munin::plugin {
    [ 'df_abs', 'forks', 'df_inode', 'irqstats', 'entropy', 'open_inodes',
      'diskstats', 'proc_pri', 'threads', ]:
      ensure => present;
    'acpi':
      ensure => $::acpi_available;
  }
}