Show HN: I built a self-hosted status page and monitoring tool for my projects(github.com)
github.com
Show HN: I built a self-hosted status page and monitoring tool for my projects
https://github.com/goksan/Statusnook
71 comments
The README offers a whole bunch of different installation options, but none of them are the one I was looking for!
I ended up inspecting "curl -fsSL https://get.statusnook.com | sudo bash" and extracting the script so I could see what it did:
https://gist.github.com/simonw/09b8817b4010cf32e4bfcbe929dcd...
It downloads either the arm64 or amd64 built binaries, both of which are also available from the GitHub releases page: https://github.com/goksan/Statusnook/releases/tag/v0.0.0
Feature request: add those to the README too!
I ended up inspecting "curl -fsSL https://get.statusnook.com | sudo bash" and extracting the script so I could see what it did:
https://gist.github.com/simonw/09b8817b4010cf32e4bfcbe929dcd...
It downloads either the arm64 or amd64 built binaries, both of which are also available from the GitHub releases page: https://github.com/goksan/Statusnook/releases/tag/v0.0.0
Feature request: add those to the README too!
Thanks for the suggestion. I've added it to the README.
The killer feature I need is heartbeat so I can make some device send a request every 5 min and if it’s not sent then it is down. Currently using UptimeRobot for this.
Hey mate, I'm using https://healthchecks.io/ for heartbeat monitoring my crons. It's been working flawlessly for quite some time now. The UI is super clean and easy to navigate. It's also free up to 20 monitored jobs. Note - I'm not in any way related to that project.
Thanks for sharing this.
I haven’t used the product but I remember reading about if here on Hacker News: https://news.ycombinator.com/item?id=31488910
I haven’t used the product but I remember reading about if here on Hacker News: https://news.ycombinator.com/item?id=31488910
Thank you!
You can use also the open-source Uptime Kuma for this (actually for almost everything else what UptimeRobot knows)
https://github.com/louislam/uptime-kuma
https://github.com/louislam/uptime-kuma
I’ve considered using this. Just haven’t got around to it.
+1 for Uptime Kuma
I have been using healthchecks.io for over 4 years and I can vouch for it. Super reliable, I think it might do the job :)
Thanks for sharing!
I think that could also be helpful for ensuring scheduled jobs are running fine. I can see myself wanting this at some point.
I think that could also be helpful for ensuring scheduled jobs are running fine. I can see myself wanting this at some point.
It helps for internal servers that don’t have a public ip.
DeadManSnitch works pretty well for that
[deleted]
Looks great! You just need https://status.statusnook.com/ to demo monitoring yourself :D
You're right! I've just spun one up at that url.
Could be cool to have a restricted demo version in the future for people to poke around in.
Could be cool to have a restricted demo version in the future for people to poke around in.
All of that code in one file is certainly... a thing you can do. I'm surprised you used embed on your schema.
Haha I was waiting for this comment, thanks
I was about to ask the same question, would you mind sharing more context why did you decided to go with a single 14k main.go file?
Perhaps because we’re on hacker news and not software architect news?
I would hire you in a flash, if I was a hirer and had a job to hire you for ;)
I initially thought the project was going to be much smaller.
I was happy with how things were going in that file and didn’t feel a need to add more files. I’d probably do it again on a solo project.
I was happy with how things were going in that file and didn’t feel a need to add more files. I’d probably do it again on a solo project.
Thanks that's what I thought. Do you have any specific way of navigating that file or use a functions outline for that?
Jumping around by function: https://code.visualstudio.com/docs/editor/editingevolved#_go...
For a single dev, a single file is often far more efficient than jumping between files.
I’ve had a good experience with it. I’ve been jumping around by function.
In Elm in particular it is idiomatic
[deleted]
Apologies for the hijack, but I’ve been looking for a particular kind of monitoring tool lately that I’m not sure exists.
I would like something that allows me to write my own arbitrary monitoring scripts in whatever language I want, and the tool would take care of everything else: scheduling and running the scripts, parsing the output, alerting, authentication, presenting the info on a pretty dashboard with graphs, etc.
I think Monit can do this to some extent, but I haven’t explored it yet — it looks like the dashboard and info presented is a lot simpler than what I’m looking for.
Is there some reason this isn’t a useful concept? For context, I’m looking at this from a homelab/selfhosting/hacking perspective.
I would like something that allows me to write my own arbitrary monitoring scripts in whatever language I want, and the tool would take care of everything else: scheduling and running the scripts, parsing the output, alerting, authentication, presenting the info on a pretty dashboard with graphs, etc.
I think Monit can do this to some extent, but I haven’t explored it yet — it looks like the dashboard and info presented is a lot simpler than what I’m looking for.
Is there some reason this isn’t a useful concept? For context, I’m looking at this from a homelab/selfhosting/hacking perspective.
Good ol' Nagios does this, except maybe for pretty graphing. Maybe look into Icinga2 (fork of Nagios) for that.
The modern Version would be something like Prometheus with Grafana.
Zabbix might be too much for a homelab setup.
The modern Version would be something like Prometheus with Grafana.
Zabbix might be too much for a homelab setup.
Actually, Zabbix runs pretty well in a homelab setup. Doesn’t eat much resources with its 3 containers here.
I’m not sure how useful this is from a homelab setting as the services are private, but what I’ve typically done to address this need is to write AWS Lambda functions, make them accessible over HTTP, and have the uptime monitor (I personally use uptime kuma) monitor that HTTP endpoint. I can then return a 4xx or 5xx response from the function when a certain condition isn’t as expected.
Have you considered adding a custom webhook for notifications? In a first iteration it could post some hardcoded JSON payload.
Further iterations could add more configuration capabilities or even templating for custom payloads.
Further iterations could add more configuration capabilities or even templating for custom payloads.
Hey, thanks for the question.
This is something I've considered but haven't needed just yet. I think it would be helpful.
This is something I've considered but haven't needed just yet. I think it would be helpful.
awesome-status-page > Open Source: https://github.com/ivbeg/awesome-status-pages?tab=readme-ov-...
Logging cert hashes and checking them against a configurable list and/or CT Certificate Transparency logs would be helpful
Logging cert hashes and checking them against a configurable list and/or CT Certificate Transparency logs would be helpful
Thanks for the suggestion, I hadn't considered this.
I was thinking of making something like that using SQLite, and Go - which is exactly what you did :)
Could you maybe make a feature list in the README so it's easy to see if it supports what I need myself?
And, do yo accept PRs if they're good quality?
Could you maybe make a feature list in the README so it's easy to see if it supports what I need myself?
And, do yo accept PRs if they're good quality?
Good shout on the feature list on the README, thanks. In the meantime, there's some additional detail at https://statusnook.com to that end.
Honestly, I'm not sure about PR's yet. To prevent any disappointment I'd encourage discussing any changes before beginning work intended to be upstreamed. I should include this in the README.
Honestly, I'm not sure about PR's yet. To prevent any disappointment I'd encourage discussing any changes before beginning work intended to be upstreamed. I should include this in the README.
Nice work. Funny how even simple/clean UI designs can require so much CSS.
How'd you like working with HTMX? First time?
How'd you like working with HTMX? First time?
There's gotta be lots of duplicated styles. I've mostly been starting fresh with each page and copying similar bits around.
I've been a fan of htmx for a few years. I was already subscribed to the approach having previously cobbled stuff together which resembled hx-boost and hx-swap-oob. htmx feels natural to me, I feel I get to focus on what I want to accomplish vs thinking about how to use htmx.
I've been a fan of htmx for a few years. I was already subscribed to the approach having previously cobbled stuff together which resembled hx-boost and hx-swap-oob. htmx feels natural to me, I feel I get to focus on what I want to accomplish vs thinking about how to use htmx.
Thanks for the feedback. Yeah, HTMX reminds me of the early days of AJAX and seems like a breath of fresh air, especially if you're more interested in providing enhancements via some dynamic functionality versus building a full-on SPA.
It also actually looks fun to use, which has been missing from webdev for a while IMO.
Anyway, thanks again. Really appreciate your approach in keeping things simple.
It also actually looks fun to use, which has been missing from webdev for a while IMO.
Anyway, thanks again. Really appreciate your approach in keeping things simple.
Give it a try - you might like it. Thank you!
Perhaps I'm not looking in the right places, but is there a way to configure everything using a config file?
Hey, thanks for the question.
Once Statusnook is deployed everything is configured via the web interface. If I've understood the question - what you're looking for doesn't currently exist.
It's something I've thought about and have received suggestions on. I think I personally will just need the ability to occasionally import/export configurations between instances. At the moment I can just copy the db.
Interested to hear more about what you would have wanted to see.
Once Statusnook is deployed everything is configured via the web interface. If I've understood the question - what you're looking for doesn't currently exist.
It's something I've thought about and have received suggestions on. I think I personally will just need the ability to occasionally import/export configurations between instances. At the moment I can just copy the db.
Interested to hear more about what you would have wanted to see.
A config file would be useful, as I can template the config file, which means I can effectively do auto-discovery of intranet resources working on my cluster.
Stepping further into config files, a helm chart (once config file support is added) would be very useful
Stepping further into config files, a helm chart (once config file support is added) would be very useful
Interesting point regarding auto-discovery, thank you.
Somebody else has also told me a helm chart would be useful.
Somebody else has also told me a helm chart would be useful.
Yup that's what I was referring to. I always feel more confident configuring services using config files that can be managed using version control. It's PTSD from having to deal with software such as Jenkins ages ago.
Is this like the status pages of big companies but for indie hackers or personal use?
Thanks for the question! I haven't made a conscious decision here, my needs are certainly a lot closer to that of an indie hacker vs a bigger company though.
Nice status page. Using SQLite in your project makes it very easy to self-host.
Thank you!
Very nice. Hate to be that guy but a dark theme would be awesome
All good, thanks for sharing.
Maybe it'll happen at some point in the future.
Maybe it'll happen at some point in the future.
I built Statusnook for my own projects, but I soon began incorporating bits of feedback from friends & colleagues.
My goal was to create a tool with a solid essential feature set, and to make it easy to self-host.
I welcome any feedback or suggestions.