CAMEL-20243: camel-main - Move route controller options into its own group
diff --git a/main-health/src/main/resources/application.properties b/main-health/src/main/resources/application.properties
index 2ea005d..a73d0fd 100644
--- a/main-health/src/main/resources/application.properties
+++ b/main-health/src/main/resources/application.properties
@@ -23,16 +23,23 @@
 camel.main.load-health-checks = true
 
 # enable supervised route controller which will startup routes in safe manner
-camel.main.route-controller-supervise-enabled = true
+camel.route-controller.supervise-enabled = true
 # attempt up till 10 times to start a route (and exhaust if still failing)
 # when a route is exhausted then its taken out as being supervised and
 # will not take part of health-check either (UNKNOWN state)
-camel.main.route-controller-back-off-max-attempts = 10
+camel.route-controller.back-off-max-attempts = 10
+
+# when restarting a previously failed route
+# then we can control whether the route should be influence the health-check
+# and report the route as either UNKNOWN or DOWN. Setting this option to true
+# will report it as DOWN otherwise its UNKNOWN
+###camel.route-controller.unhealthy-on-restarting = true
+
 # when starting a route (and restarts) fails all attempts
 # then we can control whether the route should be influence the health-check
 # and report the route as either UNKNOWN or DOWN. Setting this option to true
 # will report it as DOWN otherwise its UNKNOWN
-###camel.main.route-controller-unhealthy-on-exhausted = true
+###camel.route-controller.unhealthy-on-exhausted = true
 
 # enable health check (is automatic enabled if discovered on classpath)
 # global flag to enable/disable