JDK Flight Recorder (JFR) is a high performance event recorder built into the Java virtual machine. It was open sourced with OpenJDK 11 and then back-ported to OpenJDK 8.
The jfr-polyfill
library is a no-op polyfill implementation of the jdk.jfr.*
interfaces and classes.
The goal is to enable projects to add JFR events to their codebase without dropping support for old JDKs that don’t support JFR.
The polyfill will not provide any recordings on unsupported JDKs, but it will prevent ClassNotFoundError
.
If you want to know more, read the investigation into which JDKs support JFR, and how you can validate your own JDKs.
Just add org.gradle.jfr.polyfill:jfr-polyfill
(latest version) as a dependency, it will serve as fallback implementation when JFR is not available.
If native JFR is available, it is on the boot classpath and will take priority over the polyfill.
This project adheres to the Gradle Code of Conduct. By participating, you are expected to uphold this code.