Puppet Class: splunk::props
- Defined in:
- manifests/props.pp
Overview
splunk::props should be called to manage your splunk props.conf by default the file will be placed in $splunkhome/etc/system/local/
Parameters
- input_hash
-
Nested Hash used to define monitored props. Sorry, I couldn’t think of a better way to do this :/ The format is: { ‘input title’ => { ‘setting’ => ‘value’ } }
class { ‘splunk::props’:
input_hash => { 'script://./bin/sshdChecker.sh' => {
disabled => 'true',
index => 'os',
interval => '3600',
source => 'Unix:SSHDConfig',
sourcetype => 'Unix:SSHDConfig'},
'script://./bin/sshdChecker.sh2' => {
disabled => 'true2',
index => 'os2',
interval => '36002',
source => 'Unix:SSHDConfig2',
sourcetype => 'Unix:SSHDConfig2'}
}
}
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'manifests/props.pp', line 27
class splunk::props (
$path = "${::splunk::splunkhome}/etc/system/local",
$input_hash = { }
) {
# Validate hash
if ( $input_hash ) {
if !is_hash($input_hash){
fail("${input_hash} is not a valid hash")
}
}
$input_title = keys($input_hash)
file { "${path}/props.conf":
ensure => file,
owner => 'splunk',
group => 'splunk',
mode => '0644',
require => Class['splunk::install'],
notify => Class['splunk::service'],
content => template('splunk/opt/splunk/etc/system/local/props.conf.erb'),
}
}
|