monit-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Ignore Monit's First Alert


From: address@hidden
Subject: Re: Ignore Monit's First Alert
Date: Tue, 19 Sep 2017 10:03:08 +0200

You can try this:

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 for 5 cycles then restart # note: will restart the service if down for 5 consecutive cycles, the alert is implicit (send as part of the restart)
alert address@hidden with reminder on 5 cycles

Best regards,
Martin


On 19 Sep 2017, at 08:41, Rizal Muttaqin <address@hidden> wrote:


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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]