0
votes
1answer
23 views

camel change route policy at runtime via jmx

is it possible to change at runtime the route policy? for instance, if i have the code below CronScheduledRoutePolicy startPolicy = new CronScheduledRoutePolicy(); startPolicy.setRouteStartTime("* 0 ...
2
votes
1answer
130 views

Camel + JMX + LDAP authentication with org.apache.camel.jmx.createRmiConnector

all. Have been trying to get remoted JMX with JAAS authentication to work usin Camel version 2.10.3 + Java 6. The app uses Java DSL and is "hand wired", and runs with system properties: ...
1
vote
2answers
165 views

Access Camel MBeans in JConsole exposed via WebSphere 7

I'm trying to expose Apache Camels MBeans through JMX so that I can manage the deployed Camel instance in a WebSphere Application Server (7.0). Actually, I don't know if this is even related to ...
0
votes
1answer
101 views

Profiling Camel routes using JConsole

I have an application consisting of number of Camel routes; I would need to profile them using JConsole. I have noticed upon bringing up the JConsole and selecting the local JVM that is running these ...
0
votes
3answers
204 views

How to do JMX over JMS?

I need to enhance the JMX interfaces of a distributed java application. The reason for choosing JMX is the simplicity of exposing data. These distributed apps exist in several different machines ...
1
vote
1answer
40 views

Is It possible to change dynamically delay on a Scheduled Poller in Camel via JMX?

I would like to set/change the delay of a File consumer at runtime through JMX. I am able to change the value of the property but it doesn't seem to be taken into account until I restart the consumer. ...
1
vote
1answer
186 views

Error registering camel's ftp jpa Idempotent repository

I'm trying to implement jpa idempotent repository just as described here http://camel.apache.org/file2.html, but i'm getting a Mbean export error. On my application-context.xml i've the following ...
-1
votes
1answer
453 views

javax.management.AttributeNotFoundException

I am at Camel 2.9.0. I am able to view the MBean data(routes, processors, etc) for running processes in JConsole. I need to display the same in our user interface. While I try to fetch the attribute ...
0
votes
1answer
207 views

Camel issue with JMX Endpoints and injection for SEDA

There seems to be an issue with camel and JMX. One of the great features of the SEDA JMX component is the ability to see the queue size using the get queue method which is found under ...
3
votes
3answers
715 views

How JMX objects are mapped into SNMP OIDs?

I have a standalone Java application written with Apache Camel which I want to monitor via SNMP. I think Camel uses Spring's JMX (@ManagedAttribute, @ManagedResource etc) and I can see various ...