All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s
28 lines
757 B
Bash
28 lines
757 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
|
|
# Example: "/dev/sda /dev/sdb /dev/nvme0n1"
|
|
# Leave empty to auto-detect (requires --privileged mode)
|
|
DEVICES="/dev/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 * * *"
|