|
|
| Author |
Message |
consolavsys Beginner
Joined: 30 Mar 2004 Posts: 4
|
Posted: Thu Aug 26, 2004 10:29 am Post subject: Alarm in a configured time |
|
|
hi,
I need make an alarm with the next conditions:
if cpu Usage is > 80%
and
the condition is true during 5 minutes then send the alarm
i dont'know configure the condition to take the time!
how can I do??
thanks.. |
|
| Back to top |
|
 |
balleman Site Admin
Joined: 20 Jan 2003 Posts: 282
|
Posted: Thu Aug 26, 2004 12:49 pm Post subject: |
|
|
In the next release, there will be a "previous value" that you can test. So, you could see if a condition has persisted for the monitoring interval with something like:
cur_val > 80
AND
prev_val > 80 |
|
| Back to top |
|
 |
|