This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to exclude a desired httpstatus from the OOTB WebMonitorAl rule?

Hi All,

I am trying to edit the OOTB WebMonitor rule to exclude certain httpStatus so to avoid alarm generation when that particular status hit.

For example: I am tryin' to exclude HTTP status: 401 - Unauthorized

Original Condition:#serviceAvailability# > 0 && (#pageAvailability# <= 0 || #httpStatus# < 200 || #httpStatus# > 400)

I changed it to below but seems this is generating more alarms with message "Http Status - 200' is OK but something is error"

#serviceAvailability# > 0 && (#pageAvailability# <= 0 || #httpStatus# < 200 || #httpStatus# != 401 || #httpStatus# > 402)

 

Could you correct me please where I am goin' wrong.

 

Thank You

AJ