looking for recommendations in:
- open-source server monitoring software (things like "e-mail me when the server is down", "e-mail me when the server is about to run out of disk space", and I guess optionally things like "record, store, and graph metrics like CPU and memory"); there seem to be a lot of options out there but I'd be interested in hearing anyone's personal experience
- open-source issue tracker software -- similarly, there's a ton of them and I'm interested in hearing which ones people have had good experiences with. I'm mostly a minimalist here, with the exception that I want to be able to create ordered lists of issues (like GitHub projects).
Ben Weinstein-Raun likes this.
Ben Weinstein-Raun
in reply to Ben Millwood • •Ben Millwood likes this.
Kevin Gibbons
in reply to Ben Millwood • •A service, not a piece of software, but I love Dead Man's Snitch for basic "let me know if something has failed to happen". The free tier only lets you notify on one thing failing to alert within 24 hours, but that's plenty for my needs. My "monitoring software" then consists of a bash script with `set -euxo pipefail` at the top, my backups and various integrity checks in the middle, and `curl nosnch.in/XXXXXX` at the end.
When something goes wrong I generally find out by getting an email a day later, and then I have to check the logs to figure out what was actually wrong. But in five years of running this I've never felt the need to get fancier, beyond occasionally adding new checks to the script.
Ben Millwood likes this.
Ben Weinstein-Raun
in reply to Ben Millwood • •Ben Weinstein-Raun
in reply to Ben Weinstein-Raun • •