Package com.codahale.metrics.annotation
Annotation Type Timed
@Inherited
@Documented
@Retention(RUNTIME)
@Target({TYPE,CONSTRUCTOR,METHOD,ANNOTATION_TYPE})
public @interface Timed
An annotation for marking a method of an annotated object as timed.
Given a method like this:
@Timed(name = "fancyName")
public String fancyName(String name) {
return "Sir Captain " + name;
}
A timer for the defining class with the name fancyName will be created and each time the
#fancyName(String) method is invoked, the method's execution will be timed.
-
Optional Element Summary
Optional Elements
-
Element Details
-
name
String name- Returns:
- The name of the timer.
- Default:
- ""
-
absolute
boolean absolute- Returns:
- If
true, use the given name as an absolute name. Iffalse, use the given name relative to the annotated class. When annotating a class, this must befalse.
- Default:
- false
-