ManageEngine recognized in the 2023 Gartner® Magic Quadrant™ for Application Performance Monitoring and Observability. Read the report

Configure APM Insight application using system properties


APM Insight application configuration parameters can also be configured as Java System Properties as mentioned below:

Name Key
Application Name -Dapminsight.application.name=<your_app_name>
Applications Manager Host Name -Dapminsight.apm.host=<your_app_host>
License Key -Dapminsight.license.key=<your_apminsight_license_key>

Specifying the above system properties along with the Java arguments will override the values specified in apminsight.conf file.

Example:

  • For Windows:

    set JAVA_OPTS=%JAVA_OPTS% -Dapminsight.application.name=MyApplication -Dapminsight.apm.host=http://apm-prod-server:9090/ -Dapminsight.license.key=APMI_74447444b666d7ab5174cc3021a9b68dd4b3364d50f99c2969360810313e8fac

  • For Linux:

    export JAVA_OPTS="$JAVA_OPTS -Dapminsight.application.name=MyApplication -Dapminsight.apm.host=http://apm-prod-server:9090 -Dapminsight.license.key=APMI_74447444b666d7ab5174cc3021a9b68dd4b3364d50f99c2969360810313e8fac"