blob: 4a8a2e98d2b242986322e00c34162a7b96e3e324 [file] [log] [blame]
## ---------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ---------------------------------------------------------------------------
debug = false
logging.level.org.springframework = INFO
logging.level.org.apache.camel.spring.boot = INFO
logging.level.org.apache.camel.impl = INFO
logging.level.org.apache.camel.impl.SupervisingRouteController = DEBUG
logging.level.org.apache.camel.util.backoff = DEBUG
logging.level.sample.camel = DEBUG
# expose actuator endpoint via HTTP
management.endpoints.web.exposure.include=info,health,camelroutes
management.endpoints.enabled-by-default = true
management.endpoints.jmx.enabled = false
management.endpoint.health.enabled = true
# camel routes is by default enabled
# so you do not have to configure below
# management.endpoint.camelroutes.enabled = true
# turn off read-only so we can stop/start the Camel routes
management.endpoint.camelroutes.read-only = false
camel.springboot.name = SampleSupervisingRouteController
camel.supervising.controller.enabled = true
camel.supervising.controller.initial-delay = 5s
camel.supervising.controller.default-back-off.delay = 5s
camel.supervising.controller.default-back-off.max-attempts = 10
camel.supervising.controller.routes.undertow.back-off.delay = 10s
camel.supervising.controller.routes.undertow.back-off.max-attempts = 3
camel.supervising.controller.routes.undertow3.supervise = false