Skip to content

Health monitoring

yusing edited this page Oct 30, 2024 · 7 revisions

Health monitoring

Health monitoring is enabled by default for all services

Properties

Property Description Default Allowed Values / Syntax
disabled disable health monitoring false boolean
path (HTTP/s only) URL path empty
use_get use GET method instead of HEAD false boolean
interval health check interval 5s duration
timeout health check timeout 5s duration

Examples

Docker compose

services:
  qbittorrent:
    container_name: qbt
    image: nginx
    labels:
      proxy.qbt.healthcheck.use_get: true
    restart: unless-stopped

Include file

qbt:
  host: 10.0.0.1
  port: 8080
  healthcheck:
    use_get: true
Clone this wiki locally