The jfr-streaming
project provides a core library for configuring, starting, stopping,
and reading Java Flight Recording
files from a JVM. The code does not depend on the jdk.jfr
module and will compile and run against JDK 8 or higher. It uses a connection to an MBean
server, which can be the platform MBean server, or a remote MBean server connected by
means of JMX.
The goal of this project is a low-level library. Solving higher level problems, such as managing JFR across multiple JVMs, is not a goal of this project.
<dependency>
<groupId>com.microsoft.jfr</groupId>
<artifactId>jfr-streaming</artifactId>
<version>1.2.0</version>
</dependency>
This example illustrates some of the API.
///usr/bin/env jbang "$0" "$@" ; exit $?
//DEPS com.microsoft.jfr:jfr-streaming:1.2.0
import java.io.IOException;
import java.nio.file.Paths;
import java.util.concurrent.TimeUnit;
import java.lang.management.ManagementFactory;
import javax.management.*;
import com.microsoft.jfr.*;
public class Sample {
public static void main(String[] args) {
MBeanServerConnection mBeanServer = ManagementFactory.getPlatformMBeanServer();
try {
FlightRecorderConnection flightRecorderConnection = FlightRecorderConnection.connect(mBeanServer);
RecordingOptions recordingOptions = new RecordingOptions.Builder().disk("true").build();
RecordingConfiguration recordingConfiguration = RecordingConfiguration.PROFILE_CONFIGURATION;
try (Recording recording = flightRecorderConnection.newRecording(recordingOptions, recordingConfiguration)) {
recording.start();
TimeUnit.SECONDS.sleep(10);
recording.stop();
recording.dump(Paths.get(System.getProperty("user.dir"), "recording.jfr").toString());
System.out.println("JFR recording ready: recording.jfr");
}
} catch (InstanceNotFoundException | IOException | JfrStreamingException | InterruptedException e) {
e.printStackTrace();
}
}
}
You can run the code above with jbang:
- Install jbang.
- Save the code above in a local
Sample.java
file, or download directly. - Run the code:
jbang Sample.java
For Oracle JDK 8, it may be necessary to unlock the Java Flight Recorder
commercial feature with the JVM arg -XX:+UnlockCommercialFeatures -XX:+FlightRecorder
.
Starting with JDK 8u262, Java Flight Recorder is available for all OpenJDK distributions.
The build is vanilla Maven.
mvn clean
- remove build artifacts
mvn compile
- compile the source code
mvn test
- run unit tests (this project uses TestNG)
mvn package
- build the .jar file
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, view Microsoft's CLA.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Microsoft JFR Streaming Library is licensed under the MIT license.