Package io.micrometer.jersey2.server
Class JerseyTags
java.lang.Object
io.micrometer.jersey2.server.JerseyTags
Factory methods for
Tags associated with a request-response exchange that
is handled by Jersey 2.- Since:
- 1.1.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic io.micrometer.core.instrument.Tagexception(org.glassfish.jersey.server.monitoring.RequestEvent event) static io.micrometer.core.instrument.Tagmethod(org.glassfish.jersey.server.ContainerRequest request) Creates amethodtag based on themethodof the givenrequest.static io.micrometer.core.instrument.Tagoutcome(org.glassfish.jersey.server.ContainerResponse response) Creates anoutcometag based on the status of the givenresponse.static io.micrometer.core.instrument.Tagstatus(org.glassfish.jersey.server.ContainerResponse response) Creates astatustag based on the status of the givenresponse.static io.micrometer.core.instrument.Taguri(org.glassfish.jersey.server.monitoring.RequestEvent event) Creates auritag based on the URI of the givenevent.
-
Method Details
-
method
public static io.micrometer.core.instrument.Tag method(org.glassfish.jersey.server.ContainerRequest request) Creates amethodtag based on themethodof the givenrequest.- Parameters:
request- the container request- Returns:
- the method tag whose value is a capitalized method (e.g. GET).
-
status
public static io.micrometer.core.instrument.Tag status(org.glassfish.jersey.server.ContainerResponse response) Creates astatustag based on the status of the givenresponse.- Parameters:
response- the container response- Returns:
- the status tag derived from the status of the response
-
uri
public static io.micrometer.core.instrument.Tag uri(org.glassfish.jersey.server.monitoring.RequestEvent event) Creates auritag based on the URI of the givenevent. Uses theExtendedUriInfo.getMatchedTemplates()if available.REDIRECTIONfor 3xx responses,NOT_FOUNDfor 404 responses.- Parameters:
event- the request event- Returns:
- the uri tag derived from the request event
-
exception
public static io.micrometer.core.instrument.Tag exception(org.glassfish.jersey.server.monitoring.RequestEvent event) - Parameters:
event- the request event- Returns:
- the exception tag derived from the exception
-
outcome
public static io.micrometer.core.instrument.Tag outcome(org.glassfish.jersey.server.ContainerResponse response) Creates anoutcometag based on the status of the givenresponse.- Parameters:
response- the container response- Returns:
- the outcome tag derived from the status of the response
-