Java 11 Features: Java Flight Recorder
Want to learn more about one of the new features for Java 11? Check out this post on using the Java Flight Recorder to record OS and JVM events.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we take a look at how to leverage the Java Flight Recorder (JFR) feature as part of Java 11. Earlier, it was one of the commercial features. But, with Java 11 and JEP 328, this is open source and the Java Flight Recorder records the OS and JVM events to a file that can be inspected using Java Mission Control (JMC). Enabling JFR puts minimal overhead on the JVM performance. Hence, this can be enabled for production deployments too. Now, we will look at some of the JVM arguments to enable JFR.
Time-Based
java -XX:StartFlightRecording=delay=20s,duration=60s,filename=C:\myRecording.jfr,settings=profile,name=SampleRecording
Continuous With Dump on Demand
java -XX:StartFlightRecording=settings=default
Continuous With Dump on Exit
java -XX:StartFlightRecording=settings=default -XX:FlightRecorderOptions=dumponexit=true,dumponexitpath=C:\tmp
As the JFR is built and made available with Java 11, this excites the developer community. We can reduce the dependency on 3rd party profilers.
As part of Java 11, we are getting the jdk.jfr
module. This API allows programmers to produce custom JFR events and consume the JFR events stored in a file to troubleshoot the issue.
You can download the Java 11 early access here to explore additional features.
Published at DZone with permission of Siva Prasad Rao Janapati, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments