This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 35d464e66fd CAMEL-19362: camel-core - Allow tracing without inner 
details of Kamelets
35d464e66fd is described below

commit 35d464e66fd60d81764e4827c5b872f7eba3abe7
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed May 17 18:46:58 2023 +0200

    CAMEL-19362: camel-core - Allow tracing without inner details of Kamelets
---
 core/camel-spring-boot/src/main/docs/spring-boot.json      | 14 ++++++++++++++
 .../camel/spring/boot/CamelConfigurationProperties.java    | 12 ++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/core/camel-spring-boot/src/main/docs/spring-boot.json 
b/core/camel-spring-boot/src/main/docs/spring-boot.json
index c72338f9f84..4a108c28421 100644
--- a/core/camel-spring-boot/src/main/docs/spring-boot.json
+++ b/core/camel-spring-boot/src/main/docs/spring-boot.json
@@ -526,6 +526,13 @@
       "sourceType": 
"org.apache.camel.spring.boot.CamelConfigurationProperties",
       "defaultValue": false
     },
+    {
+      "name": "camel.springboot.backlog-tracing-templates",
+      "type": "java.lang.Boolean",
+      "description": "Whether backlog tracing should trace inner details from 
route templates (or kamelets). Turning this on increases the verbosity of 
tracing by including events from internal routes in the templates or kamelets.",
+      "sourceType": 
"org.apache.camel.spring.boot.CamelConfigurationProperties",
+      "defaultValue": false
+    },
     {
       "name": "camel.springboot.bean-introspection-extended-statistics",
       "type": "java.lang.Boolean",
@@ -1167,6 +1174,13 @@
       "sourceType": 
"org.apache.camel.spring.boot.CamelConfigurationProperties",
       "defaultValue": false
     },
+    {
+      "name": "camel.springboot.tracing-templates",
+      "type": "java.lang.Boolean",
+      "description": "Whether tracing should trace inner details from route 
templates (or kamelets). Turning this on increases the verbosity of tracing by 
including events from internal routes in the templates or kamelets.",
+      "sourceType": 
"org.apache.camel.spring.boot.CamelConfigurationProperties",
+      "defaultValue": false
+    },
     {
       "name": "camel.springboot.type-converter-statistics-enabled",
       "type": "java.lang.Boolean",
diff --git 
a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
 
b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
index 7ea9a359e08..d5b3087eb0c 100644
--- 
a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
+++ 
b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
@@ -395,6 +395,12 @@ public class CamelConfigurationProperties extends 
DefaultConfigurationProperties
      */
     private boolean backlogTracingStandby;
 
+    /**
+     * Whether backlog tracing should trace inner details from route templates 
(or kamelets). Turning this on increases the
+     * verbosity of tracing by including events from internal routes in the 
templates or kamelets.
+     */
+    private boolean backlogTracingTemplates;
+
     /**
      * Sets whether tracing is enabled or not.
      *
@@ -408,6 +414,12 @@ public class CamelConfigurationProperties extends 
DefaultConfigurationProperties
      */
     private boolean tracingStandby;
 
+    /**
+     * Whether tracing should trace inner details from route templates (or 
kamelets). Turning this on increases the
+     * verbosity of tracing by including events from internal routes in the 
templates or kamelets.
+     */
+    private boolean tracingTemplates;
+
     /**
      * Tracing pattern to match which node EIPs to trace.
      * For example to match all To EIP nodes, use to*.

Reply via email to