Disk Space Alert Feature
@mjitkop - Thank you for this excellent suggestion! I am thrilled to confirm that I will be implementing this feature for release version 0.4!
The feature will monitor available disk space for your recordings and send proactive alerts when storage drops below your specified threshold. You'll be able to configure thresholds by either percentage or absolute GBs, ensuring you never run out of space unexpectedly.
Custom Apprise Configuration for Pushover
@chDVRuser - Thank you for highlighting this alternative configuration approach! The Apprise method is indeed fully supported in the current release, providing users with flexibility in how they set up their notifications.
While the direct Pushover API implementation remains the recommended approach for most users due to its reliability and optimized handling, the Apprise method offers a valid alternative for those who prefer a unified configuration style.
Here's an example of how users can leverage Apprise for Pushover notifications:
name: channelwatch
version: '3.0'
services:
channelwatch:
image: coderluii/channelwatch:latest
container_name: channelwatch
network_mode: host
volumes:
- /your/local/path:/config
environment:
# Core settings
CHANNELS_DVR_HOST: X.X.X.X
CHANNELS_DVR_PORT: 8089
TZ: Your/Timezone
# Logging and alerts
LOG_LEVEL: 1
LOG_RETENTION_DAYS: 7
Alerts_Channel-Watching: TRUE
CHANNEL_IMAGES: TRUE
# Apprise configuration alternative for Pushover
APPRISE_CUSTOM: pover://your_user_key@your_token
restart: unless-stopped
I appreciate you sharing this approach as it provides users with additional configuration options while maintaining full Pushover functionality!
Cheers,
CoderLuii