Show the status of the protocol plug-in server process
Purpose
Shows the status of the protocol plug-in server process.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen service URI:
http://<admin-endpoint-IP:Port>/ima/v1/service/status/Plugin
Usage NotesĀ®
- Capitalization must be used as shown.
- The status information that is returned shows whether the protocol plug-in server process is enabled or disabled, and is active or inactive.
- The protocol plug-in server process is enabled when you restart the plug-in server process after you install a protocol plug-in.
- The protocol plug-in server process is disabled when you restart the plug-in server process after you delete all protocol plug-ins.
- 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
Related REST Administration APIs
Example
Shows the status of the protocol plug-in server process:curl -X GET http://127.0.0.1:9089/ima/v1/service/status/Plugin
An example response to the GET method:
{
"Version":"v1",
"Plugin": {
"Status": "Inactive",
"Enabled": false
}
}