Errors and Logs: Configure Standalone Logwatcher

The main purpose of the Standalone Logwatcher is to monitor a file you find important, like the Apache log for example. You can use the Standalone Logwatcher to upload the contents of these files as they are updated to Retrace which then the contents will be view-able via the Logs Dashboard. Only one file can be monitored per path, if you …

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 …