Re: Taking a "snapshot" of an exchange...

2012-05-24 Thread Christian Müller
We also had a similar requirement for this in the past. I recommend to have a look at the Tracer [1]. It's implemented as an interception strategy and called between each processor invocation. There you can also find some ideas how to limit the traced messages, configure the content, ... I'm looki

Re: Taking a "snapshot" of an exchange...

2012-05-24 Thread James Carman
Heck, I'm just glad to know that I'm not way off base! I'm a bit new to camel (at least in the "real world"), so I'm glad I'm not doing something completely crazy. :) Thanks for the sanity check, Hadrian. On Thu, May 24, 2012 at 11:10 AM, Hadrian Zbarcea wrote: > Hi James, > > I had a similar n

Re: Taking a "snapshot" of an exchange...

2012-05-24 Thread Hadrian Zbarcea
Hi James, I had a similar need not long ago and two things are needed. One is a wiretap, to do the logging while processing goes uninterrupted on the main flow. The second is directly related to your question. I ended up using just the in Message, thus losing the properties, but that was goo

Taking a "snapshot" of an exchange...

2012-05-24 Thread James Carman
Fellow Camel riders, First a little background about what I'm trying to do: We want to introduce "auditing" (looks similar to BAM) to our camel infrastructure. The idea would be that we want to be able to see exactly what the exchange looks like at certain points in the route. So, my thinking wa