Expand the root disk size from 35 GB to 50 GB and implement log size limits for Docker containers. Add details about the new monitoring dashboard for homelab services, including deployment instructions and access URL. Ensure clarity on log rotation policies and risks associated with disk space usage.
20 lines
535 B
Desktop File
20 lines
535 B
Desktop File
# Дашборд мониторинга homelab (хост, контейнеры, сервисы)
|
|
# Порт 19998, статика + API + прокси к Netdata
|
|
|
|
[Unit]
|
|
Description=Homelab Dashboard (monitoring)
|
|
After=network-online.target netdata.service
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/python3 /root/scripts/dashboard/dashboard-server.py
|
|
WorkingDirectory=/root/scripts/dashboard
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|