Defined Type: monitoring::icinga::bad_directory_owner

Defined in:
modules/monitoring/manifests/icinga/bad_directory_owner.pp

Overview

This define allows you to monitor for improperly owned (usually root) directories that need manual cleanup to unblock other users

Parameters

$title - Used as directory to check in $uid - User id to check for $gid - Group id to check for $interval - How often to check (default 10) $timeout - How long to wait before giving up (default 10s)

Parameters:

  • uid (Any) (defaults to: 0)
  • gid (Any) (defaults to: 0)
  • interval (Any) (defaults to: 10)
  • timeout (Any) (defaults to: 10)


10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'modules/monitoring/manifests/icinga/bad_directory_owner.pp', line 10

define monitoring::icinga::bad_directory_owner (
    $uid      = 0,
    $gid      = 0,
    $interval = 10,
    $timeout  = 10,
    ) {

    $safe_title = regsubst($title, '\/', '_', 'G')
    $filename = "/usr/local/lib/nagios/plugins/check${safe_title}-bad-owner"

    nrpe::plugin { "check${safe_title}-bad-owner":
        content => template('monitoring/check_dir-not-bad-owner.erb'),
    }

    nrpe::monitor_service { "${safe_title}_owned":
        description    => "Improperly owned (${uid}:${gid}) files in ${title}",
        nrpe_command   => $filename,
        check_interval => $interval,
        timeout        => $timeout,
        notes_url      => 'https://wikitech.wikimedia.org/wiki/Monitoring/bad_directory_owner',
    }
}