Right now all requests that is not 1xx or 2xx is treated as failed requests. It could be useful to filter create a filter on this. Maybe you don't want http-status 302 (temporary redirect) to be reported as error.
This is somehting that could be configrable in app.config. <add key="SuccessHttpStatusCodes" value="1xx,2xx,302,303" />
Right now all requests that is not
1xx
or2xx
is treated as failed requests. It could be useful to filter create a filter on this. Maybe you don't want http-status302
(temporary redirect) to be reported as error. This is somehting that could be configrable in app.config.<add key="SuccessHttpStatusCodes" value="1xx,2xx,302,303" />