what and why are the DefaultChecks for an http request?

I was not aware that there are default checks performed per http request, but noticing the ignoreDefaultChecks
in the latest doc, I got curious (btw, it is not mentioned in the Checks doc http://gatling.io/docs/2.0.0-RC1/http/http_check.html, only in the Http Request doc http://gatling.io/docs/2.0.0-RC1/http/http_request.html)

so the best I can glean from following the code, is that the equivalent of the following is performed:
Status.find.in(200, 304, 201, 202, 203, 204, 205, 206, 207, 208, 209)

can anyone please elaborate on the reasoning for such default?

thanks in advance,
Benny

You’re confusing two things:

http://gatling.io/docs/1.5.6/user_documentation/reference/checks.html#http-status

This list of HTTP status codes basically means: everything looks fine from a HTTP browser perspective.

yes, I was confused. thanks for clarifying …