Supported versions
- 8 through 16
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 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%>"
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 Wildfly 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 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"
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 Wildfly server to view your performance data within minutes.