You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, while the Spring Boot Camunda starter/sdk provides built-in metrics via Micrometer, it does not offer integrated tracing capabilities. This gap makes it difficult to correlate workflow execution steps with system operations and understand the end-to-end transaction flow within distributed systems. Without native tracing support, developers must manually incorporate or patch together tracing solutions, which can be both cumbersome and prone to inconsistency.
Describe the solution you'd like
Include native Micrometer-based tracing within the Spring Boot Camunda sdk. This would:
Automatically create spans for workflow operations
Propagate tracing context through workflows
Let developers easily enable/disable tracing and configure exporters (e.g., Jaeger, Zipkin) via application.yml.
Describe alternatives you've considered
Manually adding tracing code in handlers.
Using custom AOP interceptors.
External tracing libraries that aren’t integrated with the starter.
Additional context
Native tracing support would improve observability, simplify troubleshooting, and complement the existing metrics, leading to a more complete observability solution.
Is your feature request related to a problem? Please describe.
Currently, while the Spring Boot Camunda starter/sdk provides built-in metrics via Micrometer, it does not offer integrated tracing capabilities. This gap makes it difficult to correlate workflow execution steps with system operations and understand the end-to-end transaction flow within distributed systems. Without native tracing support, developers must manually incorporate or patch together tracing solutions, which can be both cumbersome and prone to inconsistency.
Describe the solution you'd like
Include native Micrometer-based tracing within the Spring Boot Camunda sdk. This would:
Describe alternatives you've considered
Manually adding tracing code in handlers.
Using custom AOP interceptors.
External tracing libraries that aren’t integrated with the starter.
Additional context
Native tracing support would improve observability, simplify troubleshooting, and complement the existing metrics, leading to a more complete observability solution.
https://docs.micrometer.io/micrometer/reference/observation/instrumenting.html
The text was updated successfully, but these errors were encountered: