Page 1 of 1

Monitor Memory Win Server dude

Posted: Wed Feb 14, 2024 8:05 am
by rambertnala
Hi friends.

Is there any way to monitor used memory las 15 minutes.???

I need to know if there is any plugin to get critical when used memory last 15 minutes is 100%

I do not know is this is posible

Thanks and regards

Re: Monitor Memory Win Server dude

Posted: Wed Feb 14, 2024 10:06 am
by lgute
Hi @rambertnala, thanks for reaching out.

You can set the max_check_attempts and retry_interval to catch this type of situation.

For example, if you do not want to know about a condition until it is a problem for 15 minutes, you can set the following.

Code: Select all

max_check_attempts    3
retry_interval        5
The service will be checked at five-minute intervals and go to SOFT ERROR, and then at the 3rd "failed" check (3 * 5 mins = 15 mins), it will go to a HARD ERROR and notify.

If you want to check more frequently, you can also change the retry_interval.