This is an automated email from the ASF dual-hosted git repository. onders pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 8b16f228c657e0da9ff8aa1b35a2ec5253e8205a Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon May 18 15:31:02 2020 +0200 Polished --- docs/user-manual/modules/ROOT/pages/health-check.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/health-check.adoc b/docs/user-manual/modules/ROOT/pages/health-check.adoc index 84a160d..a18d05b 100644 --- a/docs/user-manual/modules/ROOT/pages/health-check.adoc +++ b/docs/user-manual/modules/ROOT/pages/health-check.adoc @@ -24,7 +24,7 @@ camel.health.check.routes.enabled = true # Configure default thresholds camel.health.check.routes.thresholds.exchanges-failed = 10 -# Configure a different exchanges-failed threshold for the route bar +# Configure a different exchanges-failed threshold for the route bar camel.health.check.routes.threshold[bar].exchanges-failed = 20 # Configure different thresholds for the route slow without inherit global @@ -93,7 +93,7 @@ camel.health.check.routes.threshold[slow].last-processing-time.failures = 5 == Writing a custom check: -As of version 2.20.0, there are a limited number of health checks provided by Camel out of the box, so you may need to write your own check which you can do by implementing the _HealthCheck_ interface or by extending _AbstractHealthCheck_ which provides some usueful methods: +As of version 2.20, there are a limited number of health checks provided by Camel out of the box, so you may need to write your own check which you can do by implementing the _HealthCheck_ interface or by extending _AbstractHealthCheck_ which provides some usueful methods: [source,java] ----