For a project that I am currently embarking on, I am looking to read in text from a bunch of status pages of applications that are running within tomcat.
What I am trying to do is create a conglomerated status page that will show the status of the tomcat application (online/offline).
Up until now I've created a script that will parse the status pages of the applications and format the results into a table and then write the results to an html file; thus, creating a status page for all of my applications.
I've come to realize that every time I refresh the page, I am sending more and more GET requests to these sites and thus flooding the access logs of the tomcat applications.
What I'm looking for help with is a work around to parsing these status pages without spamming GET requests... OR, a way of disabling the GET flooding in the access logs.
Thank you!