An open API service indexing awesome lists of open source software.

https://github.com/marschall/jfr-ejb

an EJB interceptor that generates JFR events
https://github.com/marschall/jfr-ejb

ejb java java-flight-recorder

Last synced: 3 months ago
JSON representation

an EJB interceptor that generates JFR events

Awesome Lists containing this project

README

        

JFR EJB [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.marschall/jfr-ejb/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.marschall/jfr-ejb) [![Javadocs](https://www.javadoc.io/badge/com.github.marschall/jfr-ejb.svg)](https://www.javadoc.io/doc/com.github.marschall/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.

```

com.github.marschall
jfr-ejb
2.0.0

```

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

Usage
-----

```java
import jakarta.interceptor.Interceptors;

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

@Interceptors(JfrInterceptor.class)
public class SampleEjb {

}
```