Skip to content

Instantly share code, notes, and snippets.

@mwiede
Created November 7, 2017 09:16
@Path("/example")
@Produces(MediaType.TEXT_PLAIN)
public class ExampleResource {
@GET
@Timed
@Metered
@ExceptionMetered
public String show() {
return "yay";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment