Maybe I'm just being dim. - I set `ALERT_EMAILS` in `conf.py` to include my email address. - Most checks are configured with no `alert_emails` option (as I want to receive notifications) - I am trying to suppress notifications for a few services... Setting `alert_emails: False` or `alert_emails:` (nothing) leads to a `TypeError`. Setting `alert_emails: []` (an empty list; the default in `run_checks.py`) results in emails being sent as before. Setting `alert_emails: \n -` (a list with 1 empty item) leads to `TypeError: sequence item 0: expected string, NoneType found`. `conf.py` says "unless specified otherwise in the checks.yaml". So... how do I specify?
Maybe I'm just being dim.
ALERT_EMAILSinconf.pyto include my email address.alert_emailsoption (as I want to receive notifications)Setting
alert_emails: Falseoralert_emails:(nothing) leads to aTypeError.Setting
alert_emails: [](an empty list; the default inrun_checks.py) results in emails being sent as before.Setting
alert_emails: \n -(a list with 1 empty item) leads toTypeError: sequence item 0: expected string, NoneType found.conf.pysays "unless specified otherwise in the checks.yaml". So... how do I specify?