In a spring integration project I have a outbound gateway to send and receive messages synchronously. I would like to log the time taken for such an operation.

<jms:outbound-gateway id="jmsOutGateway"
                   request-destination="outQueue"
                   request-channel="outboundJmsRequests"
                   reply-channel="jmsReplies"/>

I tried searching but could only find examples of using AOP and PerformanceMonitorInterceptor to trace methods.

link|improve this question
Is this question related? "Doing any logging in db/jms/socket/etc synchronously is asking for problems and a lot of them." – Tony R Aug 10 '11 at 14:46
Well not exactly. I am not going to add any logging to the service. I am merely trying to log the time taken for a test client between sending a request and receiving a reply. The test client is written using Spring Integration. – Vasanth Aug 11 '11 at 5:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.