Re: JMX Configuration spring boot camel 3.*

2022-02-20 Thread Claus Ibsen
And we did add JMX connector in Camel 3.16 with the camel-debug JAR which is a special JAR for debugging Camel applications. As some tools uses RMI over JMX to control the debugger. But the JMX connector is made to be local only, so you can't connect from a remote connection. But you can take a lo

Re: JMX Configuration spring boot camel 3.*

2022-02-20 Thread Claus Ibsen
Hi If you want to keep using JMX then you can use jolokia that can bridge over HTTP which can be made a more secure transport https://jolokia.org/features/security.html Camel works with Jolokia also. Camel 3 also has metrics for openmetrics / opentelemetry and other standards. But there are many

Re: JMX Configuration spring boot camel 3.*

2022-02-20 Thread Thomas Wood
Thank you sir! this is enough info to show to my directors to look for a better way of monitoring our camel clients. On Sun, Feb 20, 2022 at 7:03 AM Claus Ibsen wrote: > Ah, I didn't see your last comment about SSL and port. > If you refer to JMX RMI over TCP then that is removed - it's a > sec

Re: JMX Configuration spring boot camel 3.*

2022-02-20 Thread Claus Ibsen
Ah, I didn't see your last comment about SSL and port. If you refer to JMX RMI over TCP then that is removed - it's a security issue with JMX. Do not use remote JMX management. On Sun, Feb 20, 2022 at 1:01 PM Claus Ibsen wrote: > > Hi > > What do you want to configure? > > See the JMX docs at wh

Re: JMX Configuration spring boot camel 3.*

2022-02-20 Thread Claus Ibsen
Hi What do you want to configure? See the JMX docs at what you can configure in Camel v3 https://camel.apache.org/manual/jmx.html On Thu, Feb 17, 2022 at 6:54 PM Thomas Wood wrote: > > Hello all! I am converting a CAMEL app from 2.* to 3.11. > So far so good other than that I cant figure out ho

Re: JPA consumer logging

2022-02-20 Thread Claus Ibsen
Hi Thanks for the logging output. No you cannot change the logging level - it's hard coded in the jpa consumer. On Thu, Feb 17, 2022 at 9:41 AM Calle Andersson wrote: > > Unfortunately I currently have limited access to the logs (I'm out of office) > but I think we only get the following in the

Re: Rethrowing Exceptions - Camel 3.14.1

2022-02-20 Thread Claus Ibsen
Hi When using doTry .. doCatch then any other kind of error handling such as onException etc is not active. That is because you are explicit using the try .. catch EIP pattern. So the 1st example is correct. However the 2nd is a potential little bug as it should be the same. But transacted only w