Linux Installation: Ubuntu and Debian

Instructions on how to install the Retrace Linux Agent on Ubuntu and Debian based Linux systems. You can install by using the apt package manager directly. The following commands are intended to be ran with root permissions. Installing with Apt Add Stackify’s apt repository. echo ‘deb https://download.stackify.com/deb stable main’ | sudo tee /etc/apt/sources.list.d/stackify.list Trust Stackify’s GPG key. wget -qO – …

Retrace: Supported Java Application Containers and Frameworks

This list will reflect an up-to-date list of supported technologies. The following technologies are automatically supported by Retrace in Java APM+. Containers Application Containers Apache Tomcat (6.x, 7.x, 8.x, 9.x) GlassFish (4.x) JBoss AS 6.x, 7.x WildFly 8.x, 9.x, 10.x WildFly Swarm Jetty 8.x, 9.x Spring Boot Oracle WebLogic (12.x) IBM WebSphere (8.x, 9.x, Liberty) Apache TomEE (1.7.x, 7.0.x) Netty (3.x) Application Container …

Errors and Logs: Configure Logback

Downloads and Includes The stackify-log-logback project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-logback. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-logback</artifactId> <version>1.1.3</version> </dependency> …

Errors and Logs: Configure log4j

Downloads and Includes The stackify-log-log4j12 project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-log4j12. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-log4j12</artifactId> <version>INSERT_LATEST_MAVEN_CENTRAL_VERSION</version> </dependency> …

Errors and Logs: Configure Java Servlet Filters

To add additional logging from Servlet Filters follow the instructions in this document, to get the stackify-log-servlet project go to our GitHub Page. By using a Java Servlet Filter for your Java Apps, you will be able to capture web request details along with your log messages.  Stackify supports adding filters to J2EE and JAX-RS servlets. stackify-log-servlet needs to be …