Rinaldo Pitzer Júnior created CAMEL-20242: ---------------------------------------------
Summary: CLONE - Some health checks are hidden when running withg supervised controller enabled Key: CAMEL-20242 URL: https://issues.apache.org/jira/browse/CAMEL-20242 Project: Camel Issue Type: Bug Components: camel-health, camel-microprofile-health Affects Versions: 3.18.2, 3.19.0 Reporter: Rinaldo Pitzer Júnior Assignee: Luca Burgazzoli Fix For: 3.20.0 As follow up of https://issues.apache.org/jira/browse/CAMEL-18483, when enabling the supervise route controller, some heath checks are not included. With the supervisor disabled, we can see a camel-kafka check: {code:json} { "checks": [ { "name": "camel-routes", "status": "UP" }, { "name": "camel-kafka", "status": "UP" }, { "data": { "check.kind": "READINESS", "context.name": "camel-q", "context.status": "Started", "context.version": "3.18.3-SNAPSHOT" }, "name": "context", "status": "UP" }, { "name": "camel-consumers", "status": "UP" } ], "status": "UP" } {code} However with the supervisor enabled, the camel-kafka check is not reported: {code:json} { "checks": [ { "name": "camel-routes", "status": "UP" }, { "data": { "check.kind": "READINESS", "context.name": "camel-q", "context.status": "Started", "context.version": "3.18.3-SNAPSHOT" }, "name": "context", "status": "UP" }, { "name": "camel-consumers", "status": "UP" } ], "status": "UP" } {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)