We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
monit_eventqueue_dir
README says monit_eventqueue_dir defaults to /var/lib/monit/events however this is not the case in defaults/main.yml.
/var/lib/monit/events
defaults/main.yml
This means the monitrc.j2 template never adds the set eventqueue block:
monitrc.j2
set eventqueue
{% if monit_eventqueue_dir is defined %} set eventqueue basedir {{ monit_eventqueue_dir | default('/var/lib/monit/events') }} slots {{ monit_eventqueue_slots | default(100) }} {% endif %}
Which means alerts don't send.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
README says
monit_eventqueue_dir
defaults to/var/lib/monit/events
however this is not the case indefaults/main.yml
.This means the
monitrc.j2
template never adds theset eventqueue
block:Which means alerts don't send.
The text was updated successfully, but these errors were encountered: