From 921b332d5a38e2f32f3d96f49656fed0c15c4797 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Mon, 7 Sep 2026 13:42:16 +0200 Subject: [PATCH] Recommit for updates in build 12 --- doc/_index.html | 5 + doc/puppet_class_list.html | 9 +- ...confdroid_alloy_3A_3Amain_3A_3Aconfig.html | 10 +- ...oid_alloy_3A_3Amonitoring_3A_3Atarget.html | 156 ++++++++++++++++++ .../confdroid_alloy_3A_3Aparams.html | 76 ++++++++- 5 files changed, 249 insertions(+), 7 deletions(-) create mode 100644 doc/puppet_classes/confdroid_alloy_3A_3Amonitoring_3A_3Atarget.html diff --git a/doc/_index.html b/doc/_index.html index ba82656..f3f32fd 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -103,6 +103,11 @@ +
  • + confdroid_alloy::monitoring::target + +
  • +
  • confdroid_alloy::params diff --git a/doc/puppet_class_list.html b/doc/puppet_class_list.html index eef7b80..b5058b5 100644 --- a/doc/puppet_class_list.html +++ b/doc/puppet_class_list.html @@ -85,7 +85,14 @@
  • -
  • +
  • + +
  • + + +
  • diff --git a/doc/puppet_classes/confdroid_alloy_3A_3Amain_3A_3Aconfig.html b/doc/puppet_classes/confdroid_alloy_3A_3Amain_3A_3Aconfig.html index 661f929..c85fbdc 100644 --- a/doc/puppet_classes/confdroid_alloy_3A_3Amain_3A_3Aconfig.html +++ b/doc/puppet_classes/confdroid_alloy_3A_3Amain_3A_3Aconfig.html @@ -105,7 +105,11 @@ 7 8 9 -10 +10 +11 +12 +13 +14
    # File 'manifests/main/config.pp', line 6
    @@ -114,6 +118,10 @@ class confdroid_alloy::main::config (
     
     ) inherits confdroid_alloy::params {
       include confdroid_alloy::main::service
    +
    +  if $ay_manage_nagios == true {
    +    include confdroid_alloy::monitoring::target
    +  }
     }
    diff --git a/doc/puppet_classes/confdroid_alloy_3A_3Amonitoring_3A_3Atarget.html b/doc/puppet_classes/confdroid_alloy_3A_3Amonitoring_3A_3Atarget.html new file mode 100644 index 0000000..8390ad8 --- /dev/null +++ b/doc/puppet_classes/confdroid_alloy_3A_3Amonitoring_3A_3Atarget.html @@ -0,0 +1,156 @@ + + + + + + + Puppet Class: confdroid_alloy::monitoring::target + + — Documentation by YARD 0.9.36 + + + + + + + + + + + + + + + + + + + +
    + + +

    Puppet Class: confdroid_alloy::monitoring::target

    +
    + +
    +
    Inherits:
    +
    confdroid_alloy::params
    +
    + + +
    +
    Defined in:
    +
    + manifests/monitoring/target.pp +
    +
    +
    + +

    Summary

    + class manages exports for nagios monitoring + +

    Overview

    +
    +
    + +

    confdroid_alloy::monitoring::target.pp Module name: confdroid_alloy Author: 12ww1160 (12ww1160@puppetsoft.com)

    + +
    +
    + + + +
    + + + +
    + + + + + +
    +
    +
    +
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +
    +
    # File 'manifests/monitoring/target.pp', line 6
    +
    +class confdroid_alloy::monitoring::target (
    +
    +) inherits confdroid_alloy::params {
    +  if $ay_manage_nagios == true {
    +    @@nagios_service { "check_alloy_${fqdn}":
    +      check_command       => "check_nrpe!check_alloy!${fn_procs_allowed}!alloy-server",
    +      use                 => 'generic-service',
    +      host_name           => $fqdn,
    +      notification_period => '24x7',
    +      service_description => "${fqdn}_check_alloy",
    +      target              => $ay_target_service,
    +      owner               => 'nagios',
    +      group               => 'nagios',
    +      mode                => '0640',
    +      contacts            => $ay_target_contacts,
    +    }
    +  }
    +}
    +
    +
    +
    + + + +
    + + \ No newline at end of file diff --git a/doc/puppet_classes/confdroid_alloy_3A_3Aparams.html b/doc/puppet_classes/confdroid_alloy_3A_3Aparams.html index 70f177c..7e47b55 100644 --- a/doc/puppet_classes/confdroid_alloy_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_alloy_3A_3Aparams.html @@ -79,6 +79,8 @@ confdroid_alloy::main::yumrepo
    + confdroid_alloy::monitoring::target
    + @@ -356,6 +358,60 @@ —

    the maximum time to wait before sending

    +
    + +
  • + +
  • + + ay_manage_nagios + + + (Boolean) + + + (defaults to: false) + + + — +
    +

    whether to manage nagios service exports

    +
    + +
  • + +
  • + + ay_target_service + + + (String) + + + (defaults to: '/etc/nagios/conf.d/alloy_service.cfg') + + + — +
    +

    the target file for nagios service exports

    +
    + +
  • + +
  • + + ay_target_contacts + + + (Array) + + + (defaults to: ['nagiosadmin']) + + + — +
    +

    the contacts for nagios service exports

  • @@ -371,9 +427,6 @@
     
     
    -22
    -23
    -24
     25
     26
     27
    @@ -404,10 +457,18 @@
     52
     53
     54
    -55
    +55 +56 +57 +58 +59 +60 +61 +62 +63 -
    # File 'manifests/params.pp', line 22
    +        
    # File 'manifests/params.pp', line 25
     
     class confdroid_alloy::params (
     
    @@ -430,6 +491,11 @@ class confdroid_alloy::params (
       String $ay_prom_max_samples_per_send        = '2000',
       String $ay_prom_batch_send_deadline         = '5s',
     
    +# nagios
    +  Boolean $ay_manage_nagios                   = false,
    +  String $ay_target_service                   = '/etc/nagios/conf.d/alloy_service.cfg',
    +  Array $ay_target_contacts                   = ['nagiosadmin'],
    +
     ) {
       # service
       $ay_service         = 'alloy'