From b97e6fba37c5d30be68182af082d57a38180158a Mon Sep 17 00:00:00 2001 From: Patrik Holmqvist Date: Wed, 12 Feb 2025 08:31:51 +0100 Subject: [PATCH] Add monitor class for custom checks --- global/overlay/etc/puppet/cosmos-rules.yaml | 1 + .../modules/net/manifests/neamon_monitor_config.pp | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 global/overlay/etc/puppet/modules/net/manifests/neamon_monitor_config.pp diff --git a/global/overlay/etc/puppet/cosmos-rules.yaml b/global/overlay/etc/puppet/cosmos-rules.yaml index 8470c13..9a7c560 100644 --- a/global/overlay/etc/puppet/cosmos-rules.yaml +++ b/global/overlay/etc/puppet/cosmos-rules.yaml @@ -56,6 +56,7 @@ metrics-cd-test-1.sunet.se: monitornetops-sto1-prod-1.sunet.se: sunet::dockerhost2: + net::naemon_monitor_config: sunet::naemon_monitor: domain: monitor-netops.sunet.se naemon_tag: v2024-03-05-01 diff --git a/global/overlay/etc/puppet/modules/net/manifests/neamon_monitor_config.pp b/global/overlay/etc/puppet/modules/net/manifests/neamon_monitor_config.pp new file mode 100644 index 0000000..73e7311 --- /dev/null +++ b/global/overlay/etc/puppet/modules/net/manifests/neamon_monitor_config.pp @@ -0,0 +1,10 @@ +# This class is used to define custom checks for hosts or groups of hosts +class net::neamon_monitor_config { + + nagioscfg::service {'check_baas2-restore-status': + host_name => ['baas2-restoretest-prod-1.sunet.se'], + check_command => "check_command => 'check_nrpe_1arg!check_baas2-restore-status',", + description => 'Validates that baas2 restores are working as intended', + contact_groups => ['alerts'] + } +}