-
-
Notifications
You must be signed in to change notification settings - Fork 0
monitoring
github-actions[bot] edited this page Jan 3, 2026
·
1 revision
Monitor and maintain your Eclosion deployment.
The /health endpoint returns application status:
curl http://localhost:5001/health
# Response: {"status": "healthy"}- Deploy Uptime Kuma
- Add a new monitor:
- Type: HTTP(s)
- URL:
http://eclosion:5001/health - Expected status: 200
- Check interval: 60s
# View real-time logs
docker compose logs -f eclosion
# View last 100 lines
docker compose logs --tail 100 eclosion
# Save logs to file
docker compose logs eclosion > eclosion.log 2>&1For production, consider using a log aggregator like Loki or forwarding to a SIEM.
# Add to docker-compose.yml
services:
watchtower:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_POLL_INTERVAL=86400 # Check daily
- WATCHTOWER_INCLUDE_STOPPED=false
command: eclosion # Only update eclosion containerDocumentation | Try Demo | Report Issue | Discussions
Eclosion is not affiliated with, endorsed by, or sponsored by Monarch Money.