I have a list of IPs in a json file . My java application should do the following.
- Read IPs from the JSON file. [this has been taken care of]
- Should check if the machines mentioned in the JSON file are up and running.
- If the machine is up, my application should read the processes that are running in that computer.
Other information:
- My java application would run on a Linux OS
- The machines mentioned in the JSON file are also on Linux
- My application is a standalone java application.
Can you please suggest the options I have to perform this task?