com.appdynamics.eumagent.runtime
Annotation Type InfoPoint


@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!");
 }
 

Adding annotations to report info points automatically.

For convenience purpose, you can simply annotate your methods without having to modify the code to manually report 'info points'.

 @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.

See Also:
Instrumentation.beginCall(boolean, String, String, Object...), Instrumentation.beginCall(String, String, Object...), Instrumentation.endCall(CallTracker, Object), Instrumentation.endCall(CallTracker)