This is a simple camel routing configuration from("jetty:http://0.0.0.0:8282/cc") .process(new HttpProcessor()) .to("log:test1?showExchangeId=true") .to("log:test2?showExchangeId=true"); There are two main things I want to do:
Monitor the execution of each EndPoint. Persist the execution of each EndPoint to prevent the loss of existing processes after downtime. But at present, I haven't found relevant persistence solutions or components on Camel's official website. At the same time, I haven't found a way to listen to the entire line in a routing message. So I want to know if there is a way to implement Camel's persistence and monitoring solutions. I don't want to add a Process between each EndPoint, which will make the whole look very bloated. This is not what I want. Camel is best. The official provides the corresponding solution. For monitoring, I found a way to monitor the entire route, but it only monitors the start and end of this route, and cannot be refined to each specific EndPoint, which makes me very distressed thanks a lot for your answer??