Example usage for org.springframework.aop.interceptor JamonPerformanceMonitorInterceptor setTrackAllInvocations

List of usage examples for org.springframework.aop.interceptor JamonPerformanceMonitorInterceptor setTrackAllInvocations

Introduction

In this page you can find the example usage for org.springframework.aop.interceptor JamonPerformanceMonitorInterceptor setTrackAllInvocations.

Prototype

public void setTrackAllInvocations(boolean trackAllInvocations) 

Source Link

Document

Set whether to track all invocations that go through this interceptor, or just invocations with trace logging enabled.

Usage

From source file:com.apress.prospringintegration.monitoring.MonitoringConfiguration.java

@Bean(name = JAMON_ID)
public JamonPerformanceMonitorInterceptor jamonPerformanceMonitorInterceptor() {
    JamonPerformanceMonitorInterceptor interceptor = new JamonPerformanceMonitorInterceptor();
    interceptor.setTrackAllInvocations(true);
    interceptor.setUseDynamicLogger(true);
    return interceptor;
}