I saw that ZenCash secure node needs atleast 92% uptime to earn reward so I was wondering if something like that is also the case in the event of an outage. I think using Monit is unnecessary as all major Linux distros have adopted systemd for process and log management. This is the systemd service file I'm using:
[Unit]
Description=Snowgem daemon
After=network-online.target
[Service]
ExecReload=/bin/kill -HUP $MAINPID
ExecStart=/usr/local/bin/snowgemd
WorkingDirectory=/home/snowgem
User=snowgem
KillMode=mixed
Restart=always
RestartSec=10
TimeoutStopSec=10
Nice=-20
ProtectSystem=full
[Install]
WantedBy=multi-user.target
systemctl enable --now snowgem.service
to start on boot.