top | item 40158266

Show HN: I built a self-hosted status page and monitoring tool for my projects

103 points| goksan | 1 year ago |github.com | reply

Hey HN! I'm excited to share Statusnook - a status page and monitoring tool.

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.

69 comments

order
[+] simonw|1 year ago|reply
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!

[+] goksan|1 year ago|reply
Thanks for the suggestion. I've added it to the README.
[+] pastorhudson|1 year ago|reply
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.
[+] stanislavb|1 year ago|reply
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.
[+] kaushikt|1 year ago|reply
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 :)
[+] goksan|1 year ago|reply
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.

[+] rmbyrro|1 year ago|reply
DeadManSnitch works pretty well for that
[+] yobert|1 year ago|reply
Looks great! You just need https://status.statusnook.com/ to demo monitoring yourself :D
[+] goksan|1 year ago|reply
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.

[+] asmor|1 year ago|reply
All of that code in one file is certainly... a thing you can do. I'm surprised you used embed on your schema.
[+] goksan|1 year ago|reply
Haha I was waiting for this comment, thanks
[+] justusthane|1 year ago|reply
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.

[+] moehm|1 year ago|reply
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.

[+] supriyo-biswas|1 year ago|reply
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.
[+] omnibrain|1 year ago|reply
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.

[+] goksan|1 year ago|reply
Hey, thanks for the question.

This is something I've considered but haven't needed just yet. I think it would be helpful.

[+] noah32|1 year ago|reply
All fun and games until you need a status page for your status pages' status page. Nice looking project tho.
[+] martinbaun|1 year ago|reply
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?

[+] goksan|1 year ago|reply
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.

[+] unclebucknasty|1 year ago|reply
Nice work. Funny how even simple/clean UI designs can require so much CSS.

How'd you like working with HTMX? First time?

[+] goksan|1 year ago|reply
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.

[+] avtar|1 year ago|reply
Perhaps I'm not looking in the right places, but is there a way to configure everything using a config file?
[+] goksan|1 year ago|reply
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.

[+] robby1110|1 year ago|reply
Nice this looks useful, look forward to using it for a future project. Starred the repo
[+] eh8|1 year ago|reply
Design is super clean--looks great!
[+] sisve|1 year ago|reply
Good webpage and nice job with all the different infra/deploy options.

well done, will try it out!

[+] alberduris|1 year ago|reply
Is this like the status pages of big companies but for indie hackers or personal use?
[+] lionkor|1 year ago|reply
big companies shy away from real status pages and prefer those that look live, but aren't, so they can pretend theyre 100% up.
[+] goksan|1 year ago|reply
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.
[+] hrishikshpathak|1 year ago|reply
Nice status page. Using SQLite in your project makes it very easy to self-host.
[+] dddw|1 year ago|reply
Oh this is nice! Thanks for sharing! Will try and run it on some things
[+] iJohnDoe|1 year ago|reply
Looks nice and clean. Congrats on the launch!
[+] kzshantonu|1 year ago|reply
Very nice. Hate to be that guy but a dark theme would be awesome
[+] goksan|1 year ago|reply
All good, thanks for sharing.

Maybe it'll happen at some point in the future.