summaryrefslogtreecommitdiffstats
path: root/modules/tick/manifests/client/base_plugins.pp
blob: 4a9c4dfc55ec2ea4f14f53c307a9127b7d1b22c6 (plain) (blame)
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
32
33
34
35
36
37
38
39
40
class tick::client::base_plugins {
  tick::client::plugin {
    "disk":
      opts => {
        ignore_fs => [
          "tmpfs",
          "devtmpfs",
          "devfs",
          "iso9660",
          "overlay",
          "aufs",
          "squashfs"
        ],
      };
    "net":
      opts => {
        ignore_protocol_stats => true,
      };
    [
      "cpu",
      "diskio",
      "internal",
      "kernel",
      "mem",
      "netstat",
      "ntpq",
      "processes",
      "swap",
      "system",
    ]:
  }

  class {
    [
      "tick::client::plugin::duplicati",
      "tick::client::plugin::godwrap",
      "tick::client::plugin::pacman",
    ]:
  }
}