Use case: Send alert after particular port down 5 times within 5 cycles, otherwise just ignore it. In other word, if particular port down less than 5 times within 5 cycles, don’t send any email.
>If particular port down continously, send alert every 5 cycles
Reality: Monit sent alert every first port down state.
Question: How to ignore first alert? Should email reminder set on 1 cycles or 5 cycles?
OS: CentOS 7
Monit version 5.14 from e17 epel repository
This is my monit configuration, the script basically contains a nmap command for double checking port status functionality.
#########################################################
set daemon 300 # 5 minutes per cycle
check host somehost with address somehost.com
start program = "/opt/monit/scripts/somehostcheckport.sh start"
stop program = "/opt/monit/scripts/somehostport.sh stop"
if failed port 80 then restart
if 5 restart within 5 cycles then alert
alert address@hidden with reminder on 5 cycles
-- To unsubscribe:https://lists.nongnu.org/mailman/listinfo/monit-general