this post was submitted on 01 Mar 2026
80 points (96.5% liked)

Selfhosted

57035 readers
1541 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

You know how it goes. You're happily using Homer or Homepage for your home-lab dashboard. It's great. It looks nice. It does its job. But then one evening you think: "Wouldn't it be cool if the dashboard actually showed whether my services are alive without building a custom tile for homer?"

And instead of, oh I don't know, contributing to homer or using Uptime Kuma next to it like a reasonable person, you go full not-invented-here and build your own thing from scratch.

So here's ilias, a static HTML dashboard generator that actually checks your stuff.

OfozH6AxZoPCIc7.png

What makes it different from Homer / Homarr / Dashy / the other 47 dashboards?

It actually runs arbitrary checks. You give it a YAML config with HTTP endpoints and shell commands, and it:

  1. Executes all the checks in parallel (so treat it like a shell script and don't be stupid!)
  2. Matches results against rules you define (status codes, exit codes, regex on output)
  3. Bakes everything into a single, self-contained HTML file. No JavaScript, no API server, no database, no Docker container running in the background

The output is literally one .html file. You can scp it to a Raspberry Pi running nginx, open it from a USB stick, email it to yourself ... it just works. It's HTML and CSS. That's it.

The "why should I care" summary

  • Zero runtime dependencies. No Node.js, no Docker, no database. One tiny binary, one HTML file out.
  • Active health checks. HTTP requests, shell commands, regex matching on output. Not just a bookmark page.
  • Generate blocks. Run a command before rendering: pipe a Prometheus query into a chart, embed the image as a banner: now your dashboard can show graphs.
  • Single HTML file output. Icons, CSS, images, everything is inlined. The file is fully self-contained.
  • NixOS module included. Systemd timer, nginx vhost, sandboxed service. If you're a NixOS person, it's services.ilias.enable = true and you're done (after verifying my code ofc, I'm just a rando on the internet!).
  • ~1,100 lines of Go. One external dependency (gopkg.in/yaml.v3). That's the whole thing. You can read the entire codebase during lunch.

Quick taste

Minimal config:

title: My Lab  
groups:  
  - name: Services  
    tiles:  
      - name: Jellyfin  
        icon: https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/jellyfin.svg  
        link: http://jellyfin.lan:8096/  
        slots:  
          - name: status  
            check:  
              type: http  
              target: http://jellyfin.lan:8096/health  
            rules:  
              - match: { code: 200 }  
                status: { id: ok, label: "✅" }  
              - match: {}  
                status: { id: down, label: "❌" }  
ilias generate -c config.yaml -o index.html  

Done. Open index.html. Your Jellyfin tile shows ✅ or ❌ based on whether /health returns 200.

Want to check disk space too? Add a command check:

      - name: Disk  
        slots:  
          - name: root  
            check:  
              type: command  
              target: "df / --output=pcent | tail -1 | tr -d ' '"  
            rules:  
              - match: { output: "^[0-6]\\d%$" }  
                status: { id: ok, label: "✅ <70%" }  
              - match: { output: "^[7-8]\\d%$" }  
                status: { id: warn, label: "⚠️ 70-89%" }  
              - match: {}  
                status: { id: full, label: "🔴 ≥90%" }  

Hover over any status to see the raw command output in a tooltip. Regex matching on stdout. Exit codes. The works.

"But what about..."

Uptime Kuma? Uptime Kuma is excellent for monitoring with alerting, history, and notifications. ilias can't do any of that! It's for when you want a single glanceable status page that you regenerate every 5 minutes via cron ro whatever. No history, no alerts, no database. Just "is everything green right now."

Homer? Homer is a beautiful bookmark dashboard. ilias took that idea and asked "what if the bookmarks could tell you if my random, unsupported service behind them is actually working?" If you just want a pretty link page or use the services already supported, Homer is great. If you want status checks for everything baked in, give ilias a try.

Links


Edit:
Based on the suggestions from the comments that the config might be a tiny bit noisy, I implemented a few easy ways to simplify bigger configs (see here ). Since I'm misusing semver for pride-versioning, that bumped my version up to a whopping 0.2.0 🥳


Edit 2:
Someone said they might use this to make service health publicly available to customers, which made me worry about information leakage.

And since I couldn't stop worrying, I added:

  • --no-tooltips param: Don't include command output for hover tooltips to prevent system information from leaking
  • --no-timestamp param: Omit the "Generated at" timestamp to hide system clock and monitoring cadence.

If you're using these, I feel much better about making the html publicly accessible, but when you set up a config please remember that link-tags can expose your internal topology and the tile/slot name might do the same! Don't go naming your tiles something like "Database Primary", "Payment Service Worker", or "Internal Auth API"!

top 30 comments
sorted by: hot top controversial new old
[–] WhyJiffie@sh.itjust.works 2 points 6 hours ago (1 children)

wonderful! now somebody needs to rewrite this in Rust and we are done!

[–] halfdane@piefed.social 1 points 6 hours ago (1 children)
[–] WhyJiffie@sh.itjust.works 1 points 5 hours ago

it was just a joke, to the "one more dashboard" part :D its fine

[–] altphoto@lemmy.today 3 points 7 hours ago (2 children)

Hey everyone! I think I got a cool idea for a dashboard!

[–] admin@scrapetacular.ydns.eu 1 points 4 minutes ago

Gonna need a dashboard to keep track of my favorite dashboard projects, you in?

[–] halfdane@piefed.social 2 points 7 hours ago (1 children)

Is it ... a new tool? I love new tools 🥹

[–] altphoto@lemmy.today 2 points 7 hours ago (4 children)

Its just an idea....

When my router says "threat" and gives me an IP address, this address gets added to a big ass database that all routers see. Then every router in the world blocks their ass out.....get them to go to a government office and ID themselves as an adult if they want back in.

[–] admin@scrapetacular.ydns.eu 1 points 29 minutes ago

The only problem is it probably IS an adult human, a 85 year old running windows XP to check the church newsletter every Sunday.

(the newsletter is also hosted on xp)

[–] meltedcheese@c.im 2 points 6 hours ago

@altphoto @selfhosted This is essentially what Pi-Hole does. It handles your DNS queries and blocks any that you want. It automatically updates blocklists from a variety of sources available. Some IPs are trackers, advertisers, malware, phishing and other notorious or otherwise obnoxious. You decide. Works great. I have about 1.7 million IP addresses blocked, but only a couple thousand or so show up on any day. Amounts to between 5% and 8% of my total traffic. I cannot fully express my joy with the FREE software. I have a dedicated Raspberry Pi 4B on my network for this purpose, but it can run on almost any Linux variant. #RPi #homelab #DNS #PiHole

[–] halfdane@piefed.social 2 points 6 hours ago (1 children)

Wow, I can really see this taking off in the international dashboading-scene!

[–] altphoto@lemmy.today 1 points 4 hours ago

Thanks its super unique LOL.

[–] WhyJiffie@sh.itjust.works 1 points 6 hours ago (1 children)

soo.. servers your router doesn't like for whatever reason blocked for everyone else? with gov ID checks? why would we want that?

and how is this a dashboard idea?

[–] altphoto@lemmy.today 2 points 4 hours ago (1 children)
[–] WhyJiffie@sh.itjust.works 1 points 4 hours ago (1 children)

ok, but who is the target audience for that? I am interested now

[–] altphoto@lemmy.today 2 points 4 hours ago

Its a sarcastic comment because this post was started as "yet another...."

[–] papelitofeliz@lemmy.world 1 points 6 hours ago

I'm sorry if this is a dumb question, I am on my phone and did not check much of the repo. I was thinking of adding a dashboard to my stack, and was thinking about Prometheus + grafana because of versatility but the main con is the complexity. How are the graphs generated on your example? Are they static images generated manually?

[–] Decronym@lemmy.decronym.xyz 1 points 6 hours ago* (last edited 6 minutes ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
DNS Domain Name Service/System
IP Internet Protocol
PiHole Network-wide ad-blocker (DNS sinkhole)
RPi Raspberry Pi brand of SBC
SBC Single-Board Computer

[Thread #124 for this comm, first seen 1st Mar 2026, 20:20] [FAQ] [Full list] [Contact] [Source code]

[–] TheButtonJustSpins@infosec.pub 4 points 11 hours ago (1 children)

Just FYI, Homepage has ping functionality to check if your services are up. siteMonitor

[–] halfdane@piefed.social 3 points 11 hours ago

Yes, I'm aware of that, but I always found it weird to have a live service for something that hardly ever changes. And then I had the idea of this whole "fully self contained html", and now I can't imagine it another way 😆

That's just opinions though, and if Homepage strikes your fancy go for it - it's an awesome project.

[–] themachine@lemmy.world 14 points 15 hours ago (1 children)

Ok, you might have finally gotten me to consider a "dashboard". I've been wanting a simple public facing service status page and this sounds like a nice solution.

[–] halfdane@piefed.social 9 points 15 hours ago* (last edited 7 hours ago) (1 children)

Awesome, thanks for the consideration!

Please don't immediately start public facing however - I literally just bashed the thing together in an afternoon, so who knows what kind of exploitable information leaks it might bring!

I'm personally using it from within a tailnet, so not public facing.


Edit:
I have since added:

  • --no-tooltips param: Don't include check output for hover tooltips
  • --no-timestamp param: Omit the "Generated at" timestamp to hide system clock and monitoring cadence.

If you're using these, I feel much better about making the html publicly accessible, but when you set up a config please remember that link-tags can expose your internal topology and the tile/slot name might do the same! Don't go naming your tiles something like "Database Primary", "Payment Service Worker", or "Internal Auth API"!

[–] themachine@lemmy.world 1 points 10 hours ago (2 children)

Ah, well, then perhaps I will monitor it.

For internal use I just monitor everything with zabbix. What Ive been wanting is (as I said) a public "status screen" that my few users can hit just to verify if things are in fact down or if it's just them.

[–] halfdane@piefed.social 2 points 7 hours ago* (last edited 7 hours ago)

Couldn't stop worrying about this, so I added:

  • --no-tooltips param: Don't include check output for hover tooltips
  • --no-timestamp param: Omit the "Generated at" timestamp to hide system clock and monitoring cadence.

If you're using these, I feel much better about making the html publicly accessible, but when you set up a config please remember that links-tags can expose your internal topology and the tile/slot name might do the same! Don't go naming your tiles something like "Database Primary", "Payment Service Worker", or "Internal Auth API"!

(unless you wanna place a honeypot)

[–] halfdane@piefed.social 1 points 8 hours ago

Well, Ilias can certainly fill this niche. With a caveat:

Currently all output from checks are accessible as tooltips (so they're in the HTML source), but for usecases such as yours it might be helpful to have the ability to suppress that kind of information leakage.

I think I'll implement that in the coming days ...

[–] black_flag@lemmy.dbzer0.com 5 points 13 hours ago (2 children)

I've gone to write something almost exactly like this several times and never quite finished. I like how this is set up. It seems like one thing that could be improved is parameterizing the configs a bit so that e.g. matching a 200 status gives a standard label that doesn't need added to every job

[–] halfdane@piefed.social 5 points 11 hours ago* (last edited 11 hours ago)

Loved that idea so much that I went and implemented it:

  • The checks now have an automatic type inferrence and shorthand
  • introduced default rules that are used when nothing's configured
  • realized that yaml-anchors always worked thanks to the lib I'm using.

So now with this preamble:

# Defaults are used when nothing is defined at the slot level. They can be overridden by defining rules directly on a slot.  
defaults:  
  rules:  
    - match:  
        code: 0  
      status: { id: ok, label: "✅" }  
    - match: {}  
      status: { id: error, label: "❌" }  

# YAML anchors: reusable fragments ilias doesn't interpret directly... 
# it's all just yaml  
_anchors:  
  pct_rules: &pct_rules           # works for disk, memory, CPU …  
    - match:  
        output: "^[0-6]\\d%$|^[0-9]%$"  
      status: { id: ok, label: "✅ <70%" }  
    - match:  
        output: "^[7-8]\\d%$"  
      status: { id: warn, label: "⚠️ 70–89%" }  
    - match: {}  
      status: { id: critical, label: "🔴 ≥90%" }  

I can now have a tile like this:

      - name: Memory  
        slots: # combine anchors and default rules as well as check shorthands  
          - name: usage  
            check: "free | awk '/^Mem:/ {printf \"%.0f%\", $3/$2 * 100}'"  
            rules: *pct_rules  
          - name: available  
            check: "free -h | awk '/^Mem:/ {print $7 \" free\"}'"  
            # uses default rules  
          - name: total  
            check: "free -h | awk '/^Mem:/ {print $2 \" total\"}'"  
            # uses default rules  

And the best? It's fully backwards compatible ❤️

Thanks again for the suggestion!

[–] halfdane@piefed.social 5 points 13 hours ago

Hu, never thought of that - that's a pretty neat idea! Thank you 🤗

[–] Sinirlan@lemmy.world 5 points 14 hours ago

There is no such thing as "too much dashboards" friend ;)

[–] watson387@sopuli.xyz 2 points 12 hours ago

This is a great idea! Nice work man!

[–] ifGoingToCrashDont@lemmy.world 4 points 14 hours ago

Awesome work. Stuff like this is what makes selfhosted the best community on lemmy!