Puppet Class: splunk::transforms

Defined in:
manifests/transforms.pp

Overview

splunk::transforms should be called to manage your splunk transforms.conf by default the file will be placed in $splunkhome/etc/system/local/

Parameters

input_hash

Nested Hash used to define monitored transforms. Sorry, I couldn’t think of a better way to do this :/ The format is: { ‘input title’ => { ‘setting’ => ‘value’ } }

class { ‘splunk::transforms’:

 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'}
                 }
}

Parameters:

  • path (Any) (defaults to: "${::splunk::splunkhome}/etc/system/local")
  • input_hash (Any) (defaults to: { })


27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'manifests/transforms.pp', line 27

class splunk::transforms (
  $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}/transforms.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/transforms.conf.erb'),
  }
}