Skip to content

Commit

Permalink
doc: Add debug info regarding Camel K
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuzikar authored and tadayosi committed May 8, 2024
1 parent effbfd2 commit e1b8ff6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions modules/ROOT/pages/faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,28 @@ quarkus.camel.debug.enabled = true

See https://camel.apache.org/camel-quarkus/3.2.x/reference/extensions/debug.html#extensions-debug-additional-camel-quarkus-configuration[Camel Quarkus Reference - Debug - Additional Camel Quarkus configuration] for more information.

*Camel K*

Camel K uses Camel Quarkus under the hood, so you need to configure the Integration to enable debug mode during build time. You can do it using the CLI:
[source,console]
----
$ kamel run Integration.java --build-property=quarkus.camel.debug.enabled=true
----

Or in the Integration CR using the `builder` trait:
[source,yaml]
----
spec:
...
traits:
builder:
configuration:
properties:
- quarkus.camel.debug.enabled = true
...
----


=== Why doesn't the Trace tab appear for my Camel route?

The Trace tab depends on the JMX MBeans provided by the Camel application you run. You need to set up specific configuration properties to enable tracing on the Camel side.
Expand Down

0 comments on commit e1b8ff6

Please sign in to comment.