Files
dropshell-templates/scrutiny/config/service.env
j 97fe9d0bd9
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 13s
Update 2 files
2026-01-15 10:35:14 +13:00

28 lines
745 B
Bash

# 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 * * *"