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 …

Troubleshoot: Common Azure App Service Issues

Below are common Azure App Service issues. ‘StackifyHttpTracer’ Not Found If you encounter the error “Could not load file or assembly ‘StackifyHttpTracer’ or one of its dependencies. The system cannot find the file specified.”, download and install our NuGet package that will install the module into your project: Nuget: Stackify Http Module Using the “WEBSITE_LOCAL_CACHE_OPTION” Azure Setting We can’t support APM …

.NET Agent Installation: Configure Self Hosted WCF Applications

Retrace automatically supports WCF transactions that are hosted within an IIS application. If you are “self hosting” WCF in a Windows Service or similar background app, please use these directions. 1. Configure Retrace to know about and profile your application By default Retrace only profiles IIS applications. Please review this article on how to tell it to profile your application: …

.NET Agent Installation: Configure Self Hosted Web API

Retrace automatically supports Web API transactions that are hosted within an IIS application. If you are “self hosting” Web API in a Windows Service, please use these directions. 1. Configure Retrace to know about and profile your application By default Retrace only profiles IIS applications. Please review this article on how to tell it to profile your application: .NET Agent Installation: Configure …

Performance: Non-Web Transactions

By default Retrace only tracks web transactions, however, it can be used to track non web transactions with some minor code changes. This article discusses tracking non web requests and could be applied to background work within a web app, a windows service, console app, or other types of service apps. You must first configure Retrace to know about and …

Custom Profiling: Configure for Java

The custom configuration file needs to be named ‘stackify-apm.json’ and be located in the classpath. You can configure additional classes and methods that you want to instrument. Example: [{ “Class”: “com.stackify.example.util.ClassToBeInstrumented”, “Method”: “methodToBeInstrumented” }, { “Class”: “com.stackify.example.util.ClassToBeInstrumented”, “Method”: “anotherMethodToBeInstrumented” }] You can also add custom instrumentation to classes by using @Trace Annotation. See more information on our Github page here: …