this post was submitted on 04 Jul 2026
24 points (100.0% liked)

Programming

27631 readers
194 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

I run a few side projects and I've gone through different stages of monitoring them. First it was just checking manually if the site loads. Then I added a simple curl ping in cron. Then I started tracking response times, certificate expiry, even visual changes on pages.

At some point I realized I was spending more time building monitoring than the actual product. Classic trap.

Curious what other devs use for keeping an eye on their stuff. Do you go with a hosted service, self-host something like Uptime Kuma, or just wing it with scripts?

top 7 comments
sorted by: hot top controversial new old
[–] Kissaki@programming.dev 1 points 3 days ago

I guess I don't have many hosted side projects. Those I do, I don't put them on separate domains. I doubt people use or care, so I haven't added monitoring for individual projects specifically. I guess I could and should do that now that I established my own online monitoring without third-party free tier limitations.

I use Red Sift (free) for certificate monitoring, since Let's Encrypt dropped expiry warning notifications. Given it's automated, it's never been an issue for my self-managed projects, though.

For is-online/is-reachable monitoring, after free services I used became more restricted, and none matched my simple needs, I created Meercat Monitor, which runs on my server and checks some of my and work related projects/services. Simple checks scheduled checks, email notification, and a simple history and status view. Something simple enough and open source so I can audit and manage sources.

[–] wizardbeard@lemmy.dbzer0.com 6 points 4 days ago

If it's a side project, then by definition I'm doing it for fun or to build certain skills, not as some sort of "product". Personally, I don't do "professional" work outside of my job.

But yeah, getting sidetracked is absolutely a classic trap.

At risk of sidetracking more, could you turn the monitoring you're doing into its own project or something at least re-usable?

If not, I'd either self-host something or just continue using what you've made as-is.

[–] hendrik@palaver.p3x.de 4 points 4 days ago* (last edited 4 days ago)

Isn't there a bunch of good monitoring solutions and all you need to configure is, X should be reachable, or it should answer with a HTTP status code 200. And that's the needed effort per service?

Idk which monitoring software is best of as today, here's a list: https://github.com/awesome-foss/awesome-sysadmin#monitoring--status-pages

I guess there's lots of edge cases, though. Testing whether some web form still triggers an email in your inbox is probably something that requires custom logic.

[–] Corbin@programming.dev 2 points 4 days ago

So, first, it's important to know that monitoring is not the same thing as measuring service levels to adhere to some SLA (service-level agreement, a promise to some customer). We have jargon for the latter; we say that we are measuring SLIs (service-level indicators) and checking them against SLOs (service-level objectives). An SLA is kind of like a set of SLOs.

For monitoring, in general, I recommend Prometheus-style metrics. I do not recommend OpenTelemetry in any encoding; it is far too complex compared to one metric per line of plain text. To keep metrics private, you can either scrape over SSH, scrape over an admin interface, scrape over LAN, or scrape over localhost-only listeners; read the documentation for your service's metrics-exporting tool. AlertManager, from the reference Prometheus suite, is a great way to get pinged on SMS/Pushover/Signal/etc. when something is down or broken.

For SLAs, I just set up an Uptime Kuma for a small business. It's a pretty good tool for SLAs and basic notifications in Slack/Mattermost/IRC/etc. but not capable of doing much more than uptime/ping checks.

I can't recommend any hosted service in good faith. You're not going to ever be able to price-justify it; self-hosting will always be more cost-effective. And since the hosted service isn't going to have your runbook or credentials or experience, what can they really do besides ping you? Pay $5/mo to your cloud provider instead of over $20/mo to a hosted metrics scraper or dashboard host.

[–] ludrol@programming.dev 2 points 4 days ago

I have my (1) project as homepage, if it doesn't load on browser startup then I have ze problem. (I am a monster with disabled tab restoring.)

IDK what I will do if I will have more than one, but that's future me problem.

[–] mesamunefire@piefed.social 1 points 4 days ago* (last edited 4 days ago)

If i cant do it in a weekend i usually hire someone.

...unless it brings me joy. Then its fun like setting up my miyoo mini plus with a cystom pokrmon theme.

[–] hdsrob@lemmy.world 1 points 4 days ago

Currently using UptimeRobot, but have used a few different products over the years.