Comment on Ask HN: How do you monitor your systemd services?Comments−kiririn3y`0 * * * * journalctl --since="61 minutes ago" --priority=warning --quiet`In crontab piped to a bunch of grep -v for the things I want to ignoreSo basically the email approach, just have to be religious about marking unread if not immediately actioned−e12e3yWhat kind of warning (and up) messages do want to keep in your journal - but ignore in your alerts? Ie why adjust your grep patterns - not what you log - to increase signal to noise ratio?
Comments
`0 * * * * journalctl --since="61 minutes ago" --priority=warning --quiet`
In crontab piped to a bunch of grep -v for the things I want to ignore
So basically the email approach, just have to be religious about marking unread if not immediately actioned
What kind of warning (and up) messages do want to keep in your journal - but ignore in your alerts? Ie why adjust your grep patterns - not what you log - to increase signal to noise ratio?