Supported versions
- 6.4
- 7.0
- 7.1
- 7.2
Linux installation steps
Download the latest Java agent from
copywget https://atatus-artifacts.s3.amazonaws.com/atatus-java/downloads/latest/atatus-java-agent.jar
Add the application name and license key in Java options.
a) Add the agent configuration to the bottom of the
standalone.conf
file.copyexport JAVA_OPTS="$JAVA_OPTS -javaagent:/path/to/atatus-java-agent.jar" export JAVA_OPTS="$JAVA_OPTS -Datatus.license_key=<%APM_LIC_KEY%>" export JAVA_OPTS="$JAVA_OPTS -Datatus.app_name=<%YOUR_APP_NAME%>"
b) Optional: Set your application package path to find exact source line in Java Exceptions.
copyexport JAVA_OPTS="$JAVA_OPTS -Datatus.application_packages=<YOUR_PACKAGE_PATH>"
Restart your JBoss server to view your performance data within minutes.
Windows installation steps
Download the latest Java agent from
copywget https://atatus-artifacts.s3.amazonaws.com/atatus-java/downloads/latest/atatus-java-agent.jar
Add the application name and license key in Java options.
a) Add the agent configuration to the bottom of the
standalone.conf.bat
file.copyset JAVA_OPTS=%JAVA_OPTS% -javaagent:C:\path\to\atatus-java-agent.jar set JAVA_OPTS=%JAVA_OPTS% -Datatus.license_key="APM_LIC_KEY" set JAVA_OPTS=%JAVA_OPTS% -Datatus.app_name="YOUR_APP_NAME"
b) Optional: Set your application package path to find exact source line in Java Exceptions.
copyset JAVA_OPTS=%JAVA_OPTS% -Datatus.application_packages=<YOUR_PACKAGE_PATH>
Restart your JBoss server to view your performance data within minutes.