I'm implementing a message history store. As suggested in Camel in Action, I plan to use the onCompletion interceptor to extract the information I need from the exchange and store it in a database.
I would like to store the processing time of the exchange. I've seen that information in the JMX interface where the min, max and mean processing time is available. However, I can't see that information on the exchange (which is what is available in the onCompletion callback). Can I get the processing time from somewhere else? /Bengt