Java Agent Installation: Enable APM+ for Glassfish

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: Glassfish (4.x) Add the following line to the java-config section of the Glassfish  domain.xml file. <jvm-options>-javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar</jvm-options> Restart the Glassfish service.

Java Agent Installation: Enable APM+ for WebSphere Liberty (8, 9)

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line in the corresponding file for WebSphere Liberty: WebSphere Liberty Installation: Create a text file named jvm.options. Insert the javaagent argument into this file. -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar Depending on your preferences, you might configure a …

Java Agent Installation: Enable APM+ for Play Framework

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please follow the steps below depending on your version of the Play Framework. Play Framework 1.2.x-1.4.x Before running your application, enter the following command: export JAVA_OPTS=’-javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar’ Then start the app: ./play run {app_name} Play Framework …

Java Agent Installation: Enable APM+ for Jetty (8, 9)

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: Jetty Installation (8.x, 9.x) Locate the jetty.sh file and add: # Stackify Java APM+ JAVA_OPTIONS=”$JAVA_OPTIONS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” Restart Jetty To see a …

Java Agent Installation: Enable APM+ for WildFly (8, 9, 10)

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: WildFly Installation (8.x,9.x,10.x) Locate the standalone.conf file and add: -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar Add the Stackify APM package name com.stackify.apm to the existing …

Java Agent Installation: Enable APM+ for JBoss AS 7

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: JBoss AS Installation (7.x) Locate the standalone.conf file and add: # Stackify Java APM+ JAVA_OPTS=”$JAVA_OPTS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” JAVA_OPTS=”$JAVA_OPTS -Djboss.modules.system.pkgs=com.stackify.apm” Restart the …

Java Agent Installation: Enable APM+ for JBoss AS 6

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: JBoss AS Installation (6.x) Locate the standalone.conf file and add: JAVA_OPTS=”$JAVA_OPTS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” Restart the JBoss service To see a list …

Java Agent Installation: Enable APM+ for Tomcat (6, 7, 8)

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: Tomcat Installation (6.x, 7.x, 8.x) Locate the catalina.sh file and add: # Stackify Java APM+ CATALINA_OPTS=”$CATALINA_OPTS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” Restart the Tomcat service …