Puppet Class: datadog_agent::integrations::dns_check
- Inherits:
- datadog_agent::params
- Defined in:
- manifests/integrations/dns_check.pp
Overview
Class: datadog_agent::integrations::dns_check
This class will install the necessary configuration for the DNS check integration.
Parameters:
$hostname:
Domain or IP you wish to check the availability of.
$nameserver
The nameserver you wish to use to check the hostname
availability.
$timeout
Time in seconds to wait before terminating the request.
Sample Usage:
class { 'datadog_agent::integrations::dns_check':
checks => [
{
'hostname' => 'example.com',
'nameserver' => '8.8.8.8',
'timeout' => 5,
}
]
}
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'manifests/integrations/dns_check.pp', line 27
class datadog_agent::integrations::dns_check (
Array $checks = [
{
'hostname' => 'google.com',
'nameserver' => '8.8.8.8',
'timeout' => 5,
}
]
) inherits datadog_agent::params {
require ::datadog_agent
$legacy_dst = "${datadog_agent::params::legacy_conf_dir}/dns_check.yaml"
if $::datadog_agent::_agent_major_version > 5 {
$dst_dir = "${datadog_agent::params::conf_dir}/dns_check.d"
file { $legacy_dst:
ensure => 'absent'
}
file { $dst_dir:
ensure => directory,
owner => $datadog_agent::params::dd_user,
group => $datadog_agent::params::dd_group,
mode => $datadog_agent::params::permissions_directory,
require => Package[$datadog_agent::params::package_name],
notify => Service[$datadog_agent::params::service_name]
}
$dst = "${dst_dir}/conf.yaml"
} else {
$dst = $legacy_dst
}
file { $dst:
ensure => file,
owner => $datadog_agent::params::dd_user,
group => $datadog_agent::params::dd_group,
mode => $datadog_agent::params::permissions_protected_file,
content => template('datadog_agent/agent-conf.d/dns_check.yaml.erb'),
require => Package[$datadog_agent::params::package_name],
notify => Service[$datadog_agent::params::service_name],
}
}
|