/jfr-ejb

an EJB interceptor that generates JFR events

Primary LanguageJava

JFR EJB Maven Central Javadocs

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>2.0.0</version>
</dependency>

Versions 2.x are for the jakarta.* namespace, versions 1.x are for the javax.* namespace.

Usage

import jakarta.interceptor.Interceptors;

import com.github.marschall.jfr.ejb.JfrInterceptor;

@Interceptors(JfrInterceptor.class)
public class SampleEjb {

}