Skip to content

Commit

Permalink
feat(icinga-director)!: remove tarifpool-v2 service set
Browse files Browse the repository at this point in the history
  • Loading branch information
markuslf committed Nov 29, 2024
1 parent b3e0b06 commit f55cdc3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 102 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ and this project does NOT adhere to [Semantic Versioning](https://semver.org/spe

### Breaking Changes

Icinga Director:

* all-the-rest.json: Remove Tarifpool-v2 Service Set

Monitoring Plugins:

* jitsi-videobridge-stats: Remove deprecated values ([PR #780](https://github.com/Linuxfabrik/monitoring-plugins/pull/780), thanks to [SnejPro](https://github.com/SnejPro))
Expand Down
100 changes: 0 additions & 100 deletions assets/icingaweb2-module-director/all-the-rest.json
Original file line number Diff line number Diff line change
Expand Up @@ -42783,106 +42783,6 @@
},
"uuid": "4131127c-a7a2-449b-a682-bc6441610cda"
},
"Tarifpool v2 Service Set": {
"assign_filter": "\"tarifpool-v2\"=host.vars.tags",
"description": null,
"object_name": "Tarifpool v2 Service Set",
"object_type": "template",
"services": {
"Systemd Unit - columnstore.service": {
"action_url": null,
"apply_for": null,
"assign_filter": null,
"check_command": null,
"check_interval": null,
"check_period": null,
"check_timeout": null,
"command_endpoint": null,
"disabled": false,
"display_name": null,
"enable_active_checks": null,
"enable_event_handler": null,
"enable_flapping": null,
"enable_notifications": null,
"enable_passive_checks": null,
"enable_perfdata": null,
"event_command": null,
"fields": [],
"flapping_threshold_high": null,
"flapping_threshold_low": null,
"groups": [],
"host": null,
"icon_image": null,
"icon_image_alt": null,
"imports": [
"tpl-service-systemd-unit"
],
"max_check_attempts": null,
"notes": null,
"notes_url": null,
"object_name": "Systemd Unit - columnstore.service",
"object_type": "object",
"retry_interval": null,
"service_set": null,
"template_choice": null,
"use_agent": null,
"use_var_overrides": null,
"uuid": "95a8276c-0711-404c-bd12-c97eb224e18d",
"vars": {
"systemd_unit_severity": "crit",
"systemd_unit_unit": "columnstore.service"
},
"volatile": null,
"zone": null
},
"Systemd Unit - metabase.service": {
"action_url": null,
"apply_for": null,
"assign_filter": null,
"check_command": null,
"check_interval": null,
"check_period": null,
"check_timeout": null,
"command_endpoint": null,
"disabled": false,
"display_name": null,
"enable_active_checks": null,
"enable_event_handler": null,
"enable_flapping": null,
"enable_notifications": null,
"enable_passive_checks": null,
"enable_perfdata": null,
"event_command": null,
"fields": [],
"flapping_threshold_high": null,
"flapping_threshold_low": null,
"groups": [],
"host": null,
"icon_image": null,
"icon_image_alt": null,
"imports": [
"tpl-service-systemd-unit"
],
"max_check_attempts": null,
"notes": null,
"notes_url": null,
"object_name": "Systemd Unit - metabase.service",
"object_type": "object",
"retry_interval": null,
"service_set": null,
"template_choice": null,
"use_agent": null,
"use_var_overrides": null,
"uuid": "e68fafb6-9ecd-454a-8d46-68dd0cb40501",
"vars": {
"systemd_unit_unit": "metabase.service"
},
"volatile": null,
"zone": null
}
},
"uuid": "f39bd6e2-03a3-4694-9b53-8e416642aa65"
},
"TuneD Service Set": {
"assign_filter": "\"tuned\"=host.vars.tags",
"description": null,
Expand Down
3 changes: 1 addition & 2 deletions check-plugins/about-me/about-me
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ except ImportError:


__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
__version__ = '2024082902'
__version__ = '2024112901'

DESCRIPTION = 'Provides a quick overview of host dimensions and software.'

Expand Down Expand Up @@ -396,7 +396,6 @@ def get_lftags():
{'sw': 'syslog-ng', 'package': [], 'expr': [run_cmd('systemctl is-enabled syslog-ng.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'System Update', 'package': [], 'expr': [run_cmd('systemctl is-enabled notify-and-schedule.timer', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'Systemd Timesyncd', 'package': [], 'expr': [run_cmd('systemctl is-enabled systemd-timesyncd.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'Tarifpool v2', 'package': [], 'expr': [os.path.isdir('/opt/tarifpool')]}, # pylint: disable=C0301
{'sw': 'TuneD', 'package': [], 'expr': [run_cmd('systemctl is-enabled tuned.service', ignore_output=True)]},
{'sw': 'UPS (Network UPS Tools, nut)', 'package': [], 'expr': [run_cmd('systemctl is-enabled nut-server.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'vsftpd', 'package': [], 'expr': [run_cmd('systemctl is-enabled vsftpd.service', ignore_output=True)]}, # pylint: disable=C0301
Expand Down

0 comments on commit f55cdc3

Please sign in to comment.