5 ms·
Show HN: I built a self-hosted status page and monitoring tool for my projects
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.
- alberduris 2y agoIs this like the status pages of big companies but for indie hackers or personal use?
- lionkor 2y agobig companies shy away from real status pages and prefer those that look live, but aren't, so they can pretend theyre 100% up.
- goksan 2y agoThanks 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 2y agoNice status page. Using SQLite in your project makes it very easy to self-host.
- goksan 2y agoThank you!
- eh8 2y agoDesign is super clean--looks great!
- goksan 2y agoThank you!
- yobert 2y agoLooks great! You just need https://status.statusnook.com/ https://status.statusnook.com/ to demo monitoring yourself :D
- goksan 2y agoYou'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.
- _cenw 2y agoAll of that code in one file is certainly... a thing you can do. I'm surprised you used embed on your schema.
- goksan 2y agoHaha I was waiting for this comment, thanks
- piterrro 2y agoI 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?
- wegwerfaccount 2y agoPerhaps because we’re on hacker news and not software architect news?
- fuzztester 2y agoI would hire you in a flash, if I was a hirer and had a job to hire you for ;)
- superq 2y agoFor a single dev, a single file is often far more efficient than jumping between files.
- goksan 2y agoI’ve had a good experience with it. I’ve been jumping around by function.
- datascienced 2y agoIn Elm in particular it is idiomatic
- 2y ago
- avtar 2y agoPerhaps I'm not looking in the right places, but is there a way to configure everything using a config file?
- goksan 2y agoHey, 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.
- avtar 2y agoYup 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.
- goksan 2y agoGot you, thanks for sharing your experience. I’ll keep this in mind.
- simonw 2y agoSame here - I want my configs for EVERYTHING in version control at all times. That way I can see exactly why things are working / not working, when things were changed, who changed them etc.
- goksan 2y agoThis makes sense, noted.
- hadlock 2y agoA 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
- martinbaun 2y agoI 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 2y agoGood shout on the feature list on the README, thanks. In the meantime, there's some additional detail at https://statusnook.com 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.
- dddw 2y agoOh this is nice! Thanks for sharing! Will try and run it on some things
- goksan 2y agoThank you!
- pastorhudson 2y agoThe 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 2y agoHey mate, I'm using https://healthchecks.io/ 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.
- goksan 2y agoThanks 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 https://news.ycombinator.com/item?id=31488910
- pastorhudson 2y agoThank you!
- goksan 2y agoThanks 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.
- pastorhudson 2y agoIt helps for internal servers that don’t have a public ip.
- tibu 2y agoYou 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
- iJohnDoe 2y agoLooks nice and clean. Congrats on the launch!
- goksan 2y agoThank you!
- sisve 2y agoGood webpage and nice job with all the different infra/deploy options. well done, will try it out!
- goksan 2y agoThank you!
- omnibrain 2y agoHave 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 2y agoHey, thanks for the question. This is something I've considered but haven't needed just yet. I think it would be helpful.
- noah32 2y agoAll fun and games until you need a status page for your status pages' status page. Nice looking project tho.
- goksan 2y agoThank you!
- unclebucknasty 2y agoNice work. Funny how even simple/clean UI designs can require so much CSS. How'd you like working with HTMX? First time?
- goksan 2y agoThere'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.
- unclebucknasty 2y agoThanks 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.
- goksan 2y agoGive it a try - you might like it. Thank you!
- deleted 2y ago[deleted]
- simonw 2y agoThe 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 https://get.statusnook.com | sudo bash" and extracting the script so I could see what it did: https://gist.github.com/simonw/09b8817b4010cf32e4bfcbe929dcd6e6 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 https://github.com/goksan/Statusnook/releases/tag/v0.0.0 Feature request: add those to the README too!
- goksan 2y agoThanks for the suggestion. I've added it to the README.
- westurner 2y agoawesome-status-page > Open Source: https://github.com/ivbeg/awesome-status-pages?tab=readme-ov-file#opensource 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
- goksan 2y agoThanks for the suggestion, I hadn't considered this.
- justusthane 2y agoApologies 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.
- supriyo-biswas 2y agoI’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.
- moehm 2y agoGood 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.
- mbirth 2y agoActually, Zabbix runs pretty well in a homelab setup. Doesn’t eat much resources with its 3 containers here.
- kzshantonu 2y agoVery nice. Hate to be that guy but a dark theme would be awesome
- goksan 2y agoAll good, thanks for sharing. Maybe it'll happen at some point in the future.
- robby1110 2y agoNice this looks useful, look forward to using it for a future project. Starred the repo
- goksan 2y agoThank you!