Viewing the status of the protocol plug-in server process

System administrators can view the status of the protocol plug-in server process by using the Eclipse Amlen REST API GET method.

To view the status of the protocol plug-in server process, use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:

http://<admin-endpoint-IP:Port>/ima/v1/service/status/Plugin

Note: The status of the protocol plug-in server process is also returned as part of the data that is returned from the Eclipse Amlen REST API GET method with the following URI:

http://<admin-endpoint-IP:Port>/ima/v1/service/status

The following protocol plug-in server status information is returned:
Status
The status of the protocol plug-in server process. Possible values, and their meanings, are:
Active
The protocol plug-in server process is running. The protocol plug-in is active after you install a protocol plug-in.
Inactive
The protocol plug-in server process is not running.
Enabled
Whether the protocol plug-in server process is enabled. Possible values, and their meanings, are:
true
The protocol plug-in server process is enabled. The protocol plug-in server process is enabled when you restart the plug-in server process after you install a protocol plug-in.
false
The protocol plug-in server process is not enabled. The protocol plug-in server process is disabled when you restart the plug-in server process after you delete all protocol plug-ins.

The following example demonstrates displaying the status of the protocol plug-in server process when no protocol plug-ins are installed by using cURL.

curl -X GET http://127.0.0.1:9089/ima/v1/service/status/Plugin

The following example shows an example response to the GET method:


{ 
  "Version":"v1", 
  "Plugin": { 
    "Status": "Inactive",
    "Enabled": false
  }
}