I have the following route and aggregating the 10 Exchanges into one. Now
when I run Camel JMX and it provides mewith the meanProcessingTime. What
does that mean for the route below. Is  the mean time for a exchange that
contains 10 exchanges or for each exchange that arrives trough JMS?

<route>
<from uri="jms:topic:topic1">
<unmarshal ref="csJSON"/>
<to uri="direct:javaspaces"/>
<route>
 
<route id="javaspaces" shutdownRunningTask="CompleteCurrentTaskOnly"
autoStartup="true">
<from uri="direct:javaspaces"/>
<transacted/>
<aggregate strategyRef="aggregatorStrategy" completionSize="10"
completionTimeout="1000">
<correlationExpression>
<simple>${body.entity}</simple>
</correlationExpression>
<bean ref="jsInterface"/>
</aggregate>
</route> 





-----
Alireza Salemi
--
View this message in context: 
http://camel.465427.n5.nabble.com/best-practice-for-logging-execution-time-tp2844045p5736667.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to