Viewing the runtime parameters of the plug-in server JVM

System administrators can view the runtime parameters of the plug-in server JVM by using REST Administration APIs.

To view the runtime parameters of the plug-in server JVM, use the Eclipse Amlen REST API GET method with the following Eclipse Amlen URI:

http://<admin-endpoint-IP:Port>/ima/v1/configuration/PluginVMArgs

The following example shows a GET method to view the runtime parameters of the plug-in server JVM by using cURL:

curl -X GET http://127.0.0.1:9089/ima/v1/configuration/PluginVMArgs

The following example shows a successful example response to the GET method that was used to view the runtime parameters of the plug-in server JVM:


     {   
       "Version": "v1",
       "PluginVMArgs": "-Xms2G -Xmx4G"
      }