With the current implementation it is possible to exclude certain status codes, like say 200, but it is not possible to ignore complete ranges of status codes like all status codes from 4xx (or 400 to 499).
It could be even more convenient with predefined status classes:
1xx (Informational): The request was received, continuing process
2xx (Successful): The request was successfully received, understood and accepted
3xx (Redirection): Further action needs to be taken in order to complete the request
4xx (Client Error): The request contains bad syntax or cannot be fulfilled
5xx (Server Error): The server failed to fulfill an apparently valid request
It would be helpful to be able to exclude ranges or status classes.
With the current implementation it is possible to exclude certain status codes, like say
200, but it is not possible to ignore complete ranges of status codes like all status codes from4xx(or 400 to 499).It could be even more convenient with predefined status classes:
1xx (Informational): The request was received, continuing process
2xx (Successful): The request was successfully received, understood and accepted
3xx (Redirection): Further action needs to be taken in order to complete the request
4xx (Client Error): The request contains bad syntax or cannot be fulfilled
5xx (Server Error): The server failed to fulfill an apparently valid request
It would be helpful to be able to exclude ranges or status classes.