Answer by chicks for Health monitoring of web pages without using GET check
While I like the other great answers already here, I'd like to add:use GET against a different portYou could have your app listen on a different port which isn't logged. haproxy and such are happy to...
View ArticleAnswer by James Shewey for Health monitoring of web pages without using GET...
One method is that you do TCP-only monitoring. In this scenario, you establish a three way handshake (or use tcp-half-open monitoring in which no connection is established - you merely look for an...
View ArticleAnswer by Tensibai for Health monitoring of web pages without using GET check
I see two way to solve this problem:Check your logs often and ensure there was an access with code 200 in the last N seconds/minutes and no code 5xx meaning there's a server side error. (the often...
View ArticleAnswer by Gepser for Health monitoring of web pages without using GET check
You can use Uptime Robot, it offers a very good free layer (up to 50 sites free).You can configure your sites (they are called monitors) in many ways. A simple GET (your case), ping and more. In case...
View ArticleAnswer by Dan Cornilescu for Health monitoring of web pages without using GET...
One possibility would be to monitor the responses to requests from other site users. For example I'd check if there were 200 OK responses and skip hitting the server is such responses were sent in the...
View ArticleHealth monitoring of web pages without using GET check
I am looking for a solution to monitor the health (DOWN or UP) of my web pages.Let's say I have three services,site.com/datasite.com/usersite.com/idNow, what I can do is that I can create a GET request...
View Article