Adding apminsight.conf properties as the JVM's application properties

Can apminsight.conf properties be added as the JVM's application properties?

Yes, all of the configurations in the apminsight.conf file can be added as system properties of the JVM.
These configurations are applicable only to the APM Insight Java agent.

Please find the names and examples of the properties below.

apminsight.conf file entry

System property key
Example/Format

license.key

apminsight.license.key
1234567890abcdef

application.name

apminsight.application.name
My Application

agent.server.port

apminsight.agent.server.port
8080

Proxy config

apminsight.agent.proxy
user:pswd@host:port

apminsight.log.dir

apminsight.log.dir
/usr/local/qa-123/logs
All or specific keys can be provided as system properties in the JVM.

Example:
  1. -javaagent:/usr/local/qa-123/site24x7/apminsight-javaagent.jar -Dapminsight.application.name=qa_zylker -Dapminsight.license.key=1234567890abcdef 


    • Related Articles

    • Site24x7's intelligent polling logic during Monitor outage

      For Internet Service monitors, the Starter, Pro, Classic, and MSP paid plans allow you to monitor websites from eight test locations (one primary and seven secondary). The Enterprise and Elite plans support monitoring from up to 16 locations (one ...
    • Site24x7's 2024 pricing plans

      Site24x7's pricing plans for 2024 offer a range of options tailored to meet the diverse needs of businesses, from startups to enterprises. Lite Professional Enterprise 2024 WebPerf MSP 2024 One of the key advantages of Site24x7's new pricing plans is ...
    • Where are Site24x7's physical data storage regions located?

      Site24x7's integrated data centers are located in the US, European Union, India, China, Australia, and Japan. All Site24x7 customer-related data are stored in these physical storage regions. Data Center Primary Data Center Disaster Recovery Data ...
    • How to view perfmon counters in Windows?

      To monitor specific Windows performance (perfmon) counters with Site24x7's plugin integration, you need to get the names of the performance counters from the Windows Performance Monitor on your server. Follow the steps below to get the names of the ...
    • Add Node.js agent in Kubernetes via InitContainers (using prebuilt agent image)

      To integrate the APM Insight Node.js agent into your Kubernetes applications using InitContainers, follow the steps given below: Step 1: Create an empty volume that will be used to copy the agent files during the initContainers process. Example: ...