Jun 15th, 2020
glowroot-0.13.6-dist.zip
-javaagent:path/to/glowroot.jar
to your application’s JVM argshttp://localhost:4000
GlassFish / Payara
Add -javaagent:path/to/glowroot.jar
to the existing jvm-options in glassfish/domains/domain1/config/domain.xml
, e.g.
...
<java-config ...>
<jvm-options>-javaagent:path/to/glowroot.jar</jvm-options>
...
</java-config>
...
Spring Boot
Add the JVM arg -javaagent:path/to/glowroot.jar
somewhere before -jar <myapp.jar>
, e.g.
$ java -javaagent:path/to/glowroot.jar -jar myapp.jar