Puppet Class: datadog_agent::integrations::activemq_xml

Inherits:
datadog_agent::params
Defined in:
manifests/integrations/activemq_xml.pp

Overview

Class: datadog_agent::integrations::activemq_xml

This class will install the necessary configuration for the activemq_xml integration

Parameters:

$url
    ActiveMQ administration web URL to gather the activemq_xml stats from.
$username
    Username to use for authentication - optional
$password
    Password to use for authentication - optional
$supress_errors
   Supress connection errors if URL is expected to be offline at times (eg. standby host) - optional
$detailed_queues
   List of queues to monitor, required if you have more than 300 queues you wish to track, otherwise optional.
$detailed_topics
   List of topics to monitor, required if you have more than 300 topics you wish to track, otherwise optional.
$detailed_subscribers
   List of subscribers to monitor, required if you have more than 300 subscribers you wish to track, otherwise optional.

Sample Usage:

class { 'datadog_agent::integrations::activemq_xml' :
  url     => 'http://localhost:8161',
  username => 'datadog',
  password => 'some_pass',
  supress_errors => false,
  detailed_queues => ['queue1', 'queue2', 'queue3'],
  detailed_topics => ['topic1', 'topic2', 'topic3'],
  detailed_subscribers => ['subscriber1', 'subscriber2', 'subscriber3'],
}

Hiera Usage:

datadog_agent::integrations::activemq_xml::instances:
  - url: 'http://localhost:8161'
    username: 'datadog'
    password: 'some_pass'
    supress_errors: false
    detailed_queues: ['queue1', 'queue2', 'queue3']
    detailed_topics: ['topic1', 'topic2', 'topic3']
    detailed_subscribers: ['subscriber1', 'subscriber2', 'subscriber3']

Parameters:

  • url (String) (defaults to: 'http://localhost:8161')
  • supress_errors (Boolean) (defaults to: false)
  • username (Optional[String]) (defaults to: undef)
  • password (Optional[String]) (defaults to: undef)
  • detailed_queues (Optional[Array[String]]) (defaults to: [])
  • detailed_topics (Optional[Array[String]]) (defaults to: [])
  • detailed_subscribers (Optional[Array[String]]) (defaults to: [])
  • instances (Optional[Array]) (defaults to: undef)


45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'manifests/integrations/activemq_xml.pp', line 45

class datadog_agent::integrations::activemq_xml(
  String $url                                   = 'http://localhost:8161',
  Boolean $supress_errors                       = false,
  Optional[String] $username                    = undef,
  Optional[String] $password                    = undef,
  Optional[Array[String]] $detailed_queues      = [],
  Optional[Array[String]] $detailed_topics      = [],
  Optional[Array[String]] $detailed_subscribers = [],
  Optional[Array] $instances                    = undef,
) inherits datadog_agent::params {
  require ::datadog_agent

  $legacy_dst = "${datadog_agent::params::legacy_conf_dir}/activemq_xml.yaml"
  if $::datadog_agent::_agent_major_version > 5 {
    $dst_dir = "${datadog_agent::params::conf_dir}/activemq_xml.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
  }

  if !$instances and $url {
    $_instances = [{
      'url'                  => $url,
      'username'             => $username,
      'password'             => $password,
      'supress_errors'       => $supress_errors,
      'detailed_queues'      => $detailed_queues,
      'detailed_topics'      => $detailed_topics,
      'detailed_subscribers' => $detailed_subscribers,
    }]
  } elsif !$instances{
    $_instances = []
  } else {
    $_instances = $instances
  }

  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/activemq_xml.yaml.erb'),
    require => Package[$datadog_agent::params::package_name],
    notify  => Service[$datadog_agent::params::service_name],
  }
}