I have been trying to add my own performance counter, and I m unable to use this performance counter for my routes.
Could anyone tell me how to use a custom performance counter instead of ManagedPerformanceCounter?
Thank you.
I have been trying to add my own performance counter, and I m unable to use this performance counter for my routes.
Could anyone tell me how to use a custom performance counter instead of ManagedPerformanceCounter?
Thank you.
if you are looking for a JMX solution...you can register a processor and use custom APIs to retrieve stats...
http://camel.apache.org/why-is-my-processor-not-showing-up-in-jconsole.html
also, here are some notes on using JMX to retrieve route stats...
http://benoday.blogspot.com/2010/08/managing-camel-routes-with-jmx-apis.html
I am working on an application where the app user can create / delete queues . Also , he would be able to move a message from 1 queue to another, delete a message , rearrange the messages in the ...
I have been trying to add my own performance counter, and I m unable to use this performance counter for my routes. Could anyone tell me how to use a custom performance counter instead of ...
How can I do multipart file uploads using the Apache Camel HTTP component ?
I m trying to determine my options for clustering my ServiceMix 3.3.1/Camel 2.1/AMQ 5.3 application. I m performing high volume message processing and I need to cluster for high availability and ...
I m trying to define a Camel context in my Grails application. resource.groovy: xmlns camel: http://camel.apache.org/schema/spring camel { camelContext(id: camelContext ) { } } Results ...
I have a hard time finding documentation/tutorials or just getting a dependency overview without going into some spiralling maven-nightmare. I even have trouble getting the examples to work, as its ...
I have a durable consumer to a remote JMS queue in embedded Camel routing. Is it possible to have this kind of routing with master-slave configuration? Now it seems that the Camel routes are started ...
I want to run a simple Apache Camel example that copies files from one directory to another: CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { public void ...