Package kieker.monitoring.probe.aspectj
Class AbstractAspectJProbe
java.lang.Object
kieker.monitoring.probe.aspectj.AbstractAspectJProbe
- All Implemented Interfaces:
kieker.monitoring.probe.IMonitoringProbe
- Direct Known Subclasses:
AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspect,AbstractAspectWithoutTraceRegistry,AbstractOperationExecutionAspect,OperationExecutionJerseyClientInterceptor,OperationExecutionJerseyServerInterceptor,SynchronizedAspect,ThreadingAspect
public abstract class AbstractAspectJProbe
extends java.lang.Object
implements kieker.monitoring.probe.IMonitoringProbe
- Since:
- 1.2
-
Constructor Summary
Constructors Constructor Description AbstractAspectJProbe() -
Method Summary
Modifier and Type Method Description voidgetter()This is a pointcut accepting all calls and executions of getter methods (methods which return something and start withgetor return a boolean and start withis).voidnoGetterAndSetter()This is a pointcut accepting everything that is neither a getter nor a setter.voidnotWithinKieker()This is a pointcut accepting everything that is not within kieker.common, kieker.monitoring, kieker.analysis and kieker.tools.voidsetter()This is a pointcut accepting all calls and executions of setter methods (methods which return void and start withset).protected java.lang.StringsignatureToLongString(org.aspectj.lang.Signature sig)Better handling of AspectJ Signature.toLongString (especially with constructors).
-
Constructor Details
-
AbstractAspectJProbe
public AbstractAspectJProbe()
-
-
Method Details
-
notWithinKieker
public void notWithinKieker()This is a pointcut accepting everything that is not within kieker.common, kieker.monitoring, kieker.analysis and kieker.tools. -
setter
public void setter()This is a pointcut accepting all calls and executions of setter methods (methods which return void and start withset). -
getter
public void getter()This is a pointcut accepting all calls and executions of getter methods (methods which return something and start withgetor return a boolean and start withis). -
noGetterAndSetter
public void noGetterAndSetter()This is a pointcut accepting everything that is neither a getter nor a setter. -
signatureToLongString
protected java.lang.String signatureToLongString(org.aspectj.lang.Signature sig)Better handling of AspectJ Signature.toLongString (especially with constructors).- Parameters:
sig- an AspectJ Signature- Returns:
- LongString representation of the signature
-