This is a fork of https://github.com/papertrail/profiler/ version 1.0.3-SNAPSHOT
- Requires Java 8 and therefore no dependency on joda-time anymore (since v1.1.0)
- Now as OSGI bundle (since v1.1.1)
It's meant to be a simple replacement using the same package name as the original (just with the Java 8 Duration
type)
Original sources Copyright 2015 Papertrail, Inc.
A pure-java implementation of the twitter/util project's CpuProfile
and related
classes.
Original Scala sources:
The CpuProfile.record
method will record samples of stacktrace elements and return a CpuProfile
object. That object
can then be written into a pprof
-parseable format using
CpuProfile.writeGoogleProfile
.
There is a provided JAX-RS resource that makes this simple to use with an http service. For example, with a Dropwizard application:
environment.jersey().register(CpuProfileResource.class);
Which exposes the URLs /pprof/contention
that detects blocked threads, and /pprof/profile
that detects runnable
threads. Here is an example of using curl
to retrieve a profile and turn it into a PDF:
curl http://localhost:8181/pprof/contention > prof
pprof --pdf prof > profile.pdf
<dependency>
<groupId>com.helger</groupId>
<artifactId>profiler</artifactId>
<version>1.1.1</version>
</dependency>