Related pages:

To begin monitoring a Java application, install the Java Agent into the application JVM:

  1. Download the agent distribution to the machine where your Java application runs.
  2. Configure the Java Agent settings. This configuration section of this page describes manual configuration. For more options, see Administer the Java Agent.
  3. Add the agent to the JVM process.

Prepare to Install the Java Agent

Consider the following as you decide where and how to deploy the Java Agent:

For cURL installation, see Download Splunk AppDynamics Software.

The Java Agent is one type of bytecode injection (BCI) agent. To prevent unforeseen issues with other BCI agents, only supports environments running the Java Agent as the sole BCI agent on the JVM.

You can run multiple BCI Agents on the JVM at your own risk. For Java Agent <= 4.5.16, you can decrease the chances of conflict with other agents by specifying the following command-line option:

-Dappdynamics.agent.prefer.retransformClasses=true

Java Agent >= 4.5.17 automatically enables this option if they detect the presence of other agents.

Instrument a Custom Java Runtime Image

You can use the Java Agent to instrument an application running on a custom Java runtime image constructed with J-link. To instrument the agent, the custom runtime requires these modules:

jdk.jcmd is not a required module for the custom runtime. However, it is required for the proper functioning of Object Instance Tracking. See Object Instance Tracking for Java.

 assumes that all packages from Java.se are installed.

Java Agent Resource Overhead

The Java Agent typically adds between 0% to 2% additional CPU consumption.

However, certain factors can increase CPU overhead from the agent beyond 2%. These include the use of resource-intensive features, such as asynchronous transaction tracking. Very active environments or configuration settings that result in a high number of metrics or snapshots reported per minute can also affect agent resource consumption.

In all cases, recommends that you test the agent in a staging environment, and monitor resource consumption of your application to ensure that it remains within proper operating parameters.

If your application operates within a small margin of its existing memory resource allocation, you may choose to increase the allocation for the application. recommends allocating the following amounts of additional Heap and PermGen space to accommodate the agent:

Download and Unzip the Java Agent Distribution

You can get the agent from the Agent Download Wizard. If you have never installed an agent before, the wizard is a good place to start. The wizard populates the configuration file in the agent you download with Controller connection settings and identifying settings for the agent. After you download the agent, you can install it in the JVM. 

Alternatively, you can download the agent manually, as follows: 

  1. Download the Java Agent ZIP file from Cisco AppDynamics Download Center.
  2. Extract the ZIP file to the destination directory as the same user or administrator of the JVM. Note the following:

For information on the contents of the Java Agent home directory, see Java Agent Directory Structure.

Configure the Java Agent

If you downloaded the agent from the Agent Download Wizard in the Controller, you can skip to the next section, as the agent is already configured.

To configure the settings manually (or verify the wizard settings): 

  1. Edit the versioned configuration file: 
    <agent_home>/<version_number>/conf/controller-info.xml  
    The controller-info.xml is one of several approaches available for supplying configuration settings. For others, see Java Agent Configuration Properties.      
  2. Modify the connection settings to the Controller: 
  3. Direct the agent to connect to the Controller by SSL (HTTPS) by setting the controller-ssl-enabled value to true. See Enable SSL for the Java Agent.
  4. Identify the business application, tier, and node that this the monitored JVM belongs to in the application model using these settings:

    In a self-service Trial edition of Pro, the agent uses a default naming scheme, see Java Agent. You can use automatic naming with a standard edition of Pro by adding this property:
    <auto-naming>true</auto-naming>  

  5. If the agents connects to a SaaS Controller or other multi-tenant Controller, configure the Account Name. For all Controllers, configure the Account Access Key.
    This information is provided in the Welcome email from the Team when you acquired the Controller. For a multi-tenant on-premises Controller, you can find this information in
    <controller_home>/initial_account_access_info.txt
  6. See Java Agent Configuration Properties and configure any additional properties required in your environment.

The following shows a controller-info.xml file with sample configuration values:  

<controller-info>
    <controller-host>192.168.1.20</controller-host>
    <controller-port>8090</controller-port>
    <application-name>ACMEOnline</application-name>
    <tier-name>InventoryTier</tier-name>
    <node-name>Inventory1</node-name>
</controller-info>

Load the Java Agent in a JVM

After configuring the agent settings, you can add the agent to the JVM. The exact steps for doing so vary by framework. The general approach involves specifying the agent as a ‑javaagent argument to the startup command for the JVM. 

Ensure to add the -javaagent argument before the -jar argument.

 The argument should indicate the location of the Java Agent JAR file:

-javaagent:<agent_home>/javaagent.jar

On Windows, include the drive letter in the path to the agent:

-javaagent:C:<agent_home>\javaagent.jar

In some scenarios, you need to use double backslashes instead of single backslashes. For example:

-javaagent:C:\\appdynamics\\javaagent.jar


Adding javaagent to the startup script requires a restart of the JVM. If it's not possible to restart the JVM when you are installing the agent and modifying the JVM start up script, you can attach the agent dynamically to the running Java process. 

See Agent Installation by Java Framework for more information on how to install Java Agent by Java framework or technology. 

Attach the Java Agent to a Running JVM Process

Attaching the agent to a running JVM allows you to install the Java Agent without requiring a JVM restart. This approach would normally be used alongside adding the ‑javaagent argument to the JVM startup script, or some other persistent approach to ensure that the agent is loaded again at the next JVM restart. However, the dynamic attachment allows you to install the agent when restarting the JVM is not possible or convenient.  

In some scenarios, you need to use double backslashes instead of single backslashes. For example:

-javaagent:C:\\appdynamics\\javaagent.jar

Dynamic agent attachment works if:

Other considerations include:

To attach the agent to the JVM: 

  1. Determine the PID of the JVM to which you want to attach.
    For Linux, use:

    ps -A | grep java

    On Windows, use: 

    jps -l
  2. Run the following command, replacing the placeholders for the path to the tools.jar file in your JDK, path to the Java Agent home directory, and the JVM process ID with values appropriate for your environment:

    java -Xbootclasspath/a:<path_to_jdk>/lib/tools.jar -jar /<agent_home>/javaagent.jar <jvm_process_id> appdynamics.controller.hostName=<controller_hostname>,appdynamics.controller.port=<controller_port_no>,appdynamics.controller.ssl.enabled=false,appdynamics.agent.applicationName=<app_name>,appdynamics.agent.tierName=<agent_tier_name>,appdynamics.agent.nodeName=<agent_node_name>

    Use the equivalent paths for Windows, including drive letter. The following shows an example with system output included:

    [appduser@my_centos6 ~]$ ps -A | grep java
     6780 pts/1    00:00:04 java
    [appduser@my_centos6 ~]$ java -Xbootclasspath/a:/usr/java/jdk1.7.0_79/lib/tools.jar -jar /home/appduser/appagent/javaagent.jar 6780
    Attaching to VM [6780]
    agent path >>>/home/appduser/appagent/javaagent.jar=

Verify Java Agent Installation

After an installation, the agent log in <agent_home>/logs will contain this message:

Started AppDynamics Java Agent Successfully

If the agent log file is not present, the Java Agent may not be accessing the javaagent command properties. To troubleshoot, check the application server log file where STDOUT is logged. It will have the fallback log messages, useful for troubleshooting the agent.

Also, verify that the agent is able to connect to the Controller in the Controller UI. To verify, log in to the Controller UI and click the Settings icon at the top right of the page, and then Agent Management > Manage Agents. In the list, search for the agent by machine hostname.