JFR EJB
An EJB interceptor that generates JFR events.
Contains only one class com.github.marschall.jfr.ejb.JfrInterceptor
which only records the class and method name of the EJB.
<dependency>
<groupId>com.github.marschall</groupId>
<artifactId>jfr-ejb</artifactId>
<version>0.1.0</version>
</dependency>
Usage
import javax.interceptor.Interceptors;
import com.github.marschall.jfr.ejb.JfrInterceptor;
@Interceptors(JfrInterceptor.class)
public class SampleEjb {
}