public interface Profiler
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
logExecutionTime(ProceedingJoinPoint pjp)
This methods will be called by the following sample AOP pointcut (core-profilig-spring.xml) and is responsible for
execution time profiling
|
void |
setDomain(java.lang.String domain)
JMX domain
|
void |
setLimit(long limit)
Sets the minimum method execution time.
|
java.lang.Object logExecutionTime(ProceedingJoinPoint pjp)
throws java.lang.Throwable
<aop:pointcut id="profiledMethods" expression="execution(* de.hybris.platform.servicelayer..*.*(..))" /> <aop:around pointcut-ref="profiledMethods" method="logExecutionTime" />
pjp - pointcut infojava.lang.Throwablevoid setLimit(long limit)
limit - void setDomain(java.lang.String domain)
domain - the jmx domainCopyright © 2018 SAP SE. All Rights Reserved.