From 6fdaee82ca9331dce97b5c36329e51abf4d91296 Mon Sep 17 00:00:00 2001 From: cronekorkn Date: Thu, 2 Mar 2023 19:38:17 +0100 Subject: [PATCH] wip --- bundles/icinga2/files/conf.d/groups.conf | 14 ++++---- .../icinga2/files/conf.d/notifications.conf | 36 +++++-------------- bundles/icinga2/files/conf.d/users.conf | 24 +++++++++++++ bundles/icinga2/items.py | 10 ++++++ 4 files changed, 50 insertions(+), 34 deletions(-) create mode 100644 bundles/icinga2/files/conf.d/users.conf diff --git a/bundles/icinga2/files/conf.d/groups.conf b/bundles/icinga2/files/conf.d/groups.conf index e6004a3..e7ecb2a 100644 --- a/bundles/icinga2/files/conf.d/groups.conf +++ b/bundles/icinga2/files/conf.d/groups.conf @@ -8,12 +8,6 @@ object HostGroup "linux-servers" { assign where host.vars.os == "Linux" } -object HostGroup "windows-servers" { - display_name = "Windows Servers" - - assign where host.vars.os == "Windows" -} - /** * Service group examples. */ @@ -35,3 +29,11 @@ object ServiceGroup "disk" { assign where match("disk*", service.check_command) } + +/** + * User group examples. + */ + +object UserGroup "notifyable" { + display_name = "Notifyable Users" +} diff --git a/bundles/icinga2/files/conf.d/notifications.conf b/bundles/icinga2/files/conf.d/notifications.conf index ac65875..a179630 100644 --- a/bundles/icinga2/files/conf.d/notifications.conf +++ b/bundles/icinga2/files/conf.d/notifications.conf @@ -1,33 +1,13 @@ -/** - * The example notification apply rules. - * - * Only applied if host/service objects have - * the custom variable `notification` defined - * and containing `mail` as key. - * - * Check `hosts.conf` for an example. - */ +apply Notification "service-critical-mail" to Service { + command = "mail-service-notification" + user_groups = [ "notifyable" ] -apply Notification "mail-icingaadmin" to Host { - import "mail-host-notification" - user_groups = host.vars.notification.mail.groups - users = host.vars.notification.mail.users - - //interval = 2h - - //vars.notification_logtosyslog = true - - assign where host.vars.notification.mail + assign where host.vars.notification.mail != false } -apply Notification "mail-icingaadmin" to Service { - import "mail-service-notification" - user_groups = host.vars.notification.mail.groups - users = host.vars.notification.mail.users +apply Notification "service-critical-push" to Service { + command = "mail-service-notification" + users = [ "Push-Notifications" ] - //interval = 2h - - //vars.notification_logtosyslog = true - - assign where host.vars.notification.mail + assign where host.vars.notification.push != false } diff --git a/bundles/icinga2/files/conf.d/users.conf b/bundles/icinga2/files/conf.d/users.conf new file mode 100644 index 0000000..7993a39 --- /dev/null +++ b/bundles/icinga2/files/conf.d/users.conf @@ -0,0 +1,24 @@ +object User "Admin" { + import "generic-user" + + groups = [ "notifyable" ] + display_name = "Admin" + email = "icinga2@freibrief.n" + enable_notifications = true + states = [ Warning, Critical ] + types = [ Problem, Acknowledgement, Recovery, Custom, + FlappingStart, FlappingEnd, + DowntimeStart, DowntimeEnd, DowntimeRemoved ] +} + +object User "Push-Notifications" { + import "generic-user" + + display_name = "Push-Notifications" + email = "cjb3uuhkaa@pomail.net" + enable_notifications = true + states = [ Warning, Critical ] + types = [ Problem, Acknowledgement, Recovery, Custom, + FlappingStart, FlappingEnd, + DowntimeStart, DowntimeEnd, DowntimeRemoved ] +} diff --git a/bundles/icinga2/items.py b/bundles/icinga2/items.py index 861dc1f..1aa8640 100644 --- a/bundles/icinga2/items.py +++ b/bundles/icinga2/items.py @@ -156,6 +156,16 @@ files = { 'svc_systemd:icinga2.service:restart', ], }, + '/etc/icinga2/conf.d/users.conf': { + 'source': 'conf.d/users.conf', + 'content_type': 'mako', + 'owner': 'nagios', + 'group': 'nagios', + 'mode': '0640', + 'triggers': [ + 'svc_systemd:icinga2.service:restart', + ], + }, '/etc/icinga2/conf.d/groups.conf': { 'source': 'conf.d/groups.conf', 'content_type': 'mako',