Quellcode durchsuchen

[MMO-132] Check the length of the dict, instead of if it's defined (it

will always be defined since the default is an empty dict)
pull/99/head
Erick Cantwell vor 7 Jahren
Ursprung
Commit
e5770ac50f
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      linux/meta/sensu.yml

+ 1
- 1
linux/meta/sensu.yml Datei anzeigen

@@ -18,7 +18,7 @@ check:
occurrences: 1
subscribers:
- local-linux-system
{%- if storage.swap is defined %}
{%- if storage.swap|length > 0 %}
local_linux_storage_swap_usage_{{ system.name|replace('.', '-') }}-{{ system.domain|replace('.', '-') }}:
command: "PATH=$PATH:/usr/lib64/nagios/plugins:/usr/lib/nagios/plugins check_swap -a -w {{ monitoring.swap.warn }} -c {{ monitoring.swap.crit }}"
interval: 60

Laden…
Abbrechen
Speichern