Package io.inugami.api.monitoring
Interface JavaRestMethodTracker
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface JavaRestMethodTracker
The JavaRestMethodTracker interface allows to track java method information in MDC. It's a SPI interface. To add your implementation you should create a new file in /META-INF/services/io.inugami.api.monitoring.JavaRestMethodTracker with your implementations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanaccept(JavaRestMethodDTO data)voidtrack(JavaRestMethodDTO data)
-
-
-
Method Detail
-
accept
default boolean accept(JavaRestMethodDTO data)
-
track
void track(JavaRestMethodDTO data)
-
-