# Scrutiny - Hard Drive S.M.A.R.T Monitoring # https://github.com/analogj/scrutiny # Server Settings SSH_USER="dropshell" # Container name (change if running multiple instances) CONTAINER_NAME=scrutiny # Web UI port WEB_PORT=8080 # InfluxDB port (for metrics storage) INFLUXDB_PORT=8086 # Devices to monitor - space-separated list of block devices # Can use short names (sda sdb) or full paths (/dev/sda /dev/sdb) # Example: "sda sdb nvme0n1" DEVICES="sda" # Set to "true" to run in privileged mode (auto-detects all devices) # Set to "false" to use explicit DEVICES list above PRIVILEGED_MODE=false # Collector schedule (cron format) - how often to collect SMART data # Default: every day at midnight COLLECTOR_CRON_SCHEDULE="0 0 * * *"