2013-09-08 4 views
1

내 프로젝트에 Apache Camel을 사용하고 있습니다. 경로 정의는 다음과 같습니다JProfiler8을 사용하여 낙타 경로 프로필하기

class RouteBuilder() { 
     public void configure() { 
      // populate the message queue with some messages 
      from("direct:input"). 
      choice(). 
       when(body().isEqual("A")). 
       beanRef('aProcessorBean'). 
       otherwise(). 
       beanRef('bProcessorBean'). 
       end(). 
      to("direct:output"); 
     } 
    }; 

이는 FromDefinition, ChoiceDefinition, ProcessorDefinitionorg.apache.camel.model에서 패키지를 사용하여 매우 원시적 인 예이다.

실제 경로는 더 복잡 할 수 있습니다. 각 경로에서 보낸 시간을 어떻게 측정 할 수 있는지 알고 싶습니다. 기본적으로 모든 XXXDefinition 클래스를 org.apache.camel.model 패키지에서 모니터링해야한다고 생각합니다. JProfiler를 설치하는 방법은 무엇입니까?

답변

1

세션 설정을 열고 "필터 설정"탭으로 이동하십시오. 모든 기본 제외 필터를 삭제하고 프로젝트의 최상위 패키지를 포함 필터로 추가하십시오. 또한 포함 필터로 org.apache.camel.model.을 추가하십시오.