Posts by Wagner O. Wutzke • 96 points
3 posts
-
0
votes2
answers156
viewsA: Integrate Java application with Nagios
As far as I know, Nagios doesn’t work this way. I may be mistaken, but in my experience, he acts as a client of the systems being monitored. In other words, it is not passive, waiting for data from…
-
4
votes2
answers156
viewsA: Integrate Java application with Nagios
I’ve done something similar. In my case, my Java application received http requests from the Nagios system and returned the responses in pre-defined pads, so that Nagios could show them. When a…
-
4
votes3
answers3561
viewsA: Java and Offline Databases
Another solution would be to use HSQLDB. http://www.programmingforfuture.com/2010/06/using-hypersql-hsqldb.html. You just need to configure it to store the data in a file and not in memory, as is…