Describe the bug
Adding a Ping monitor with default 20 seconds and 1 retry doesn't report as down when the device goes offline (turned off or Wifi off) in a timely matter.
Database
To Reproduce
Steps to reproduce the behavior:
- Add ping monitor
- Turn off monitor on that device (or unplug)
- Wait for a period of time (longer than timeout and retry period).
- Monitor will still report device is up
Expected behavior
When device isn't reachable, it shows as down straight away (as per interval time and reties) and alerts using notification channel immediately
Screenshots
Screenshots at multiple time periods showing comparison to Uptime Kuma
Server (please complete the following information):
- Ubuntu Server 22.04.5 LTS
- Docker version 28.0.4, build b8034c0
- Pi 4
Desktop (please complete the following information):
Additional context
I'm using a ChatGPT single Docker Compose file instead of the default .env setup. See below
services:
peekaping:
image: 0xfurai/peekaping-bundle-sqlite:latest
container_name: peekaping-bundle-sqlite
restart: unless-stopped
ports:
- "8383:8383"
environment:
DB_TYPE: sqlite
DB_NAME: /app/data/peekaping.db
# Optional (uncomment if you want):
# MODE: prod
TZ: Pacific/Auckland
# CLIENT_URL: "http://localhost:8383"
volumes:
- ./.data/sqlite:/app/data
- ./.data/logs:/var/log/supervisor
Describe the bug
Adding a Ping monitor with default 20 seconds and 1 retry doesn't report as down when the device goes offline (turned off or Wifi off) in a timely matter.
Database
To Reproduce
Steps to reproduce the behavior:
Expected behavior
When device isn't reachable, it shows as down straight away (as per interval time and reties) and alerts using notification channel immediately
Screenshots
Screenshots at multiple time periods showing comparison to Uptime Kuma
Server (please complete the following information):
Desktop (please complete the following information):
Additional context
I'm using a ChatGPT single Docker Compose file instead of the default .env setup. See below