summaryrefslogtreecommitdiff
path: root/manifests/server/collect_ps.pp
blob: 5b8456c12ad4485db646ee9450dd2ee5993aa08e (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
class check_mk::server::collect_ps (
  $config = "${check_mk::config::etc_dir}/check_mk/conf.d/ps.mk"
) inherits check_mk::params {

  # this class gets run on the check-mk server in order to collect the
  # stored configs created on clients and assemble the ps.mk config file
  concat { $config:
    owner  => 'root',
    group  => 'root',
    mode   => '0644',
    notify => Exec['check_mk-refresh'],
  }

  concat::fragment{'check_mk_ps_header':
    target  => $config,
    content => "checks += [\n",
    order   => 10,
  }

  Check_mk::Ps <<| tag == 'check_mk_ps' |>> {
    target => $config,
    notify => Exec['check_mk-refresh']
  }

  concat::fragment{'check_mk_ps_footer':
    target  => $config,
    content => "]\n",
    order   => 90,
  }
}