I want to use OSHI to monitor the performance status of my remote Linux server, but the official api seems to only monitor the performance status of the machine.
Do I have to put the java code on the server to get the performance status of the server? Can I use my own machine to monitor the performance status of the remote server?
As you indicated, OSHI is only designed to read information from the local computer. You would have to run a program on the remote computer using OSHI to fetch statistics.
Issue 249 on the OSHI project outlines a few of the options, including the Dropwizard Metrics library, with which you can enable a JMX port with the data. However, capturing a larger number of metrics that way probably adds a lot more overhead than needed.
Alternately Jackson's ObjectMapper is capable of handling any of OSHI's objects. You can easily set up a Webserver to vend JSON (or XML or CSV, etc.). Here's a quick sample dumping the entire
SystemInfo
object:Execute the above class on your Linux server and then connect to it via a web browser at
http://yourserver
and you'll get all OSHI's stats in pretty JSON.Obviously you'd want to set up a better mechanism than web-browser JSON, and perhaps narrow down your response to only objects you care about. But hopefully this shows how easy it is to include OSHI into any existing Java-based network response.