Skip to content

Instantly share code, notes, and snippets.

@tjquinno
Created October 3, 2019 23:14
Show Gist options
  • Save tjquinno/9d5c54d2968296736992bd28a47af1ea to your computer and use it in GitHub Desktop.
Save tjquinno/9d5c54d2968296736992bd28a47af1ea to your computer and use it in GitHub Desktop.
package com.mycorp.myapp;
public class MyEndpoints {
@Inject
MetricRegistry appRegistry;
private Meter myMeter;
public MyEndpoints() {
myMeter = ...;
appRegistry.register("com.mycorp.myapp.MyEndpoints.greetings",
myMeter);
}
@GET
@Produces(MediaType.TEXT_PLAIN)
public String greet() {
myMeter.mark();
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment