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: …