Puppet Class: nagios::plugin::kafka_lag

Defined in:
manifests/plugin/kafka_lag.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
# File 'manifests/plugin/kafka_lag.pp', line 1

class nagios::plugin::kafka_lag {

  # Multiple checks need this file
  file { "${nagios::client::plugin_dir}/check_kafka_lag":
    owner   => 'root',
    group   => 'root',
    mode    => '0755',
    content => template("${module_name}/plugins/check_kafka_lag"),
  }

}