|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||
@Target(value=METHOD) @Retention(value=CLASS) public @interface InfoPoint
Annotate methods you wish to be reported as InfoPoint to eum-cloud. At compile time, appdynamics' bci injects annotated
methods to be reported as info points
Consider the following critical method which you wish to be reported as InfoPoint to eum-cloud.
public void infoPointMethod(String arg1, int arg2, long value) {
System.out.println("Executing infoPointMethod!");
}
@InfoPoint
public void infoPointMethod(String arg1, int arg2, long value) {
System.out.println("Executing infoPointMethod!");
}
At compile time, we weave your method to automatically report info points to the eum-cloud.
Instrumentation.beginCall(boolean, String, String, Object...),
Instrumentation.beginCall(String, String, Object...),
Instrumentation.endCall(CallTracker, Object),
Instrumentation.endCall(CallTracker)
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||