Ill explain what I'm trying to accomplish and hopefully some bright person will come up with an idea
We have this disk space check for an archive directory for Oracle. When it hits the warning threshold, the event handler kicks in and kicks off a backup and when the backup finishes, it cleans up the partition. Sometimes the backup takes a bit longer than the normal retry intervals, so it was changed to 1 retry every 15 minutes for a total of 10 retries (150 Minutes). This was to allow the backup time to finish, and also if it didnt start, the event handler runs every 15 min to make sure its started. This works great as we would not get notified unless it reached HARD at the end of 10 tries.
Now, we want to impliment a critical threshold, so if it reaches this limit, page out immediately. The problem is that it will wait 150 minutes before it sends out a critical. How can this be set so to have one retry interval for the warnings, and one for criticals?
Cheers!