Read about other necessary areas to monitor, such as Java Virtual Machines, Unix file systems, networks, and applications like Solr in Monitor Fusion 4.x.x.
Read about health checks for components of your Fusion deployment in Check the System State.
Check the System State
Fusion runs several components as separate JVMs running on different ports. Each of the components is capable of reporting its status. The proxy component reports status for all of the other components.
To see whether each component has been started, a simple API call to the proxy (running on port 8764 by default) will return the status of each component of the system.
Copy
curl http://localhost:8764/api
The response should look similar to the following. If ‘ping’ is true for each service, all of the system components are running.
The Fusion UI and API services are not accessible if ZooKeeper and Solr are not in healthy state. A Solr health check can be performed with a ping request, for example:
All of the Fusion API backend services (except Connectors and the UI) are started at port 8765 when the run.sh script is executed. The Fusion UI depends on all these services.If all the services are started without any issues, then the below ping request should return the response ok.
Copy
curl http://<FUSION_HOST>/api
As an alternative check, you can also query the system/status endpoint, which returns the status.
You can perform a health check of the Connectors Classic Service by sending a ping request to port 8984. Similar to the previous ping request, the returned response is ok if the service started successfully.
Copy
curl http://localhost:8984/connectors/v1
As an alternative check, you can also query the system/status endpoint, which returns the status.