Ansible module that gets the status code of a given url
Http status codes are 3 digit numbers which are returned when a request is made to a webserver. The first digit of this number gives us information about the respose.
This list shows what each of the digits signify -
1xx - Informational
2xx - Success
3xx - Redirection
4xx - Client Error
* 5xx - Server Error
The second and third digits give us more information about the response. For example status code 404 represents a not found error and a 403 status code represents a forbidden error. this link can be referred for more information about all the status codes.