public interface Profiler
| Modifier and Type | Method and Description |
|---|---|
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(String domain)
JMX domain
|
void |
setLimit(long limit)
Sets the minimum method execution time.
|
Object logExecutionTime(ProceedingJoinPoint pjp) throws Throwable
<aop:pointcut id="profiledMethods" expression="execution(* de.hybris.platform.servicelayer..*.*(..))" /> <aop:around pointcut-ref="profiledMethods" method="logExecutionTime" />
pjp - pointcut infoThrowablevoid setLimit(long limit)
limit - void setDomain(String domain)
domain - the jmx domainCopyright © 2017 SAP SE. All Rights Reserved.