AppDynamics Application Intelligence Platform
3.9.x Documentation
To load the Java Agent in Mule ESB, pass the Java Agent JAR location as a JVM argument to Mule.
Mule ESB 3.X or later uses the Tanuki configuration environment. To specify JVM arguments in your Mule ESB environment, you need to configure them as additional parameters to the Tanuki Java Service Wrapper configuration file, wrapper.conf, as described below.
Find the location indicated for Java Additional Parameters:
# Java Additional Parameters wrapper.java.additional.1=
Add the path to the Java Agent JAR file as a JVM argument using a wrapper.java.additional.n parameter, as follows.
wrapper.java.additional.n="-javaagent:/path_to_appagent/javaagent.jar" wrapper.java.additional.n.stripquotes=TRUE
Where "n" is the next available integer among the wrapper.java.additional parameters already in the wrapper.conf file, if any. The numbers serve to identify each Java Additional Parameter in the file. Do not skip numbers when adding the property. Replace path_to_appagent to the path to the javaagent.jar file in your system. The stripquotes parameter is necessary only if there are spaces in the path or filename, but is safe to include if not.
For example, on a Linux system and with seven Java parameters already in the file, add the following properties:
wrapper.java.additional.8="-javaagent:/opt/AppDynamics/Agent/app_agent/javaagent.jar" wrapper.java.additional.8.stripquotes=TRUE
Note: There may be additional wrapper.java.additional properties defined in other Mule files. These are generated by the system. As indicated by comments preceding these properties, you should not make changes directly to the properties. Mule automatically auto-increments the index number for these properties based on the highest integer number used in wrapper.conf, so you do not need to modify or otherwise account for the index numbers of auto-generated configuration properties.
2 Comments
Unknown User (michael.mcdowell@appdynamics.com)
This example will not work as presented:
In our case on RHEL, the combination which worked was
wrapper.java.additional.X="-javaagent:/opt/AppDynamics/Agent/app_agent/javaagent.jar"
wrapper.java.additional.X.stripquotes=TRUE
... where X = 8.
One final point, there might be another place where wrapper.java.additional values are defined, but these will be auto-generated by the application. Don't make changes to these, Mule is smart enough to auto-increment their indeces based on the highest integer used in the wrapper.conf. You will know that you are in the wrong place when there's a comment immediately before those arguments instructing you to not make changes directly to them.
Steve Hetland
Thanks, Michael. I've updated the page based on your feedback.