this post was submitted on 27 Feb 2025
22 points (100.0% liked)

Selfhosted

44336 readers
1009 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.

Resources:

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

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

cross-posted from: https://lemmy.world/post/26112762

Hi all

I have been searching high and low but I think my search game is too weak. I am looking for a tool (similar to Uptime Kuma) that can monitor multiple systems via their own APIs, to centralise the status of these devices. Ex:

a) I have a sensor system that monitors a whole bunch of sensors across multiple locations. This system has an API that uses a secret key + api key for auth, and I can get the status of the sensor via the api. The idea is that the central dashboard shows the status, if offline, the control room personnel can log into the sensors system itself and determine root cause.

b) I also have a system to which a whole bunch of A/V equipment is connected, and via it's API I am able to view the status of multiple devices on the A/V equipment network. I want to also see on the status of these devices on my central monitoring system.

I don't care about doing root cause analysis via the central monitoring system, I just want the statuses which can action a person to check via the control system of that particular service.

All my searches come back with hits of systems that can monitor whether my APIs are up and running, but that is not what I want. Does anyone have any ideas? Preferably opensource, but definitely self-hosted/on-prem hosting. TIA

Edit: I solved it using Uptime Kuma, and the HTTP(s) JSON Query monitor. Thanks all for the inputs.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 2 weeks ago (1 children)

Sounds like you need to instrument it yourself.

It could be as "easy" as calling the endpoints yourself and saving the sensor states in any kind of storage grafana supports, then making a dashboard on top of that data.

Maybe Zabbix could also work

[–] [email protected] 2 points 2 weeks ago

Thank you for the response. I would love to steer clear of D.I.Y merely because I would like to create continuity within the company. If I leave, they should be able to move ahead with it. But your point is very valid. Indeed something like an influxDB with grafana might be a good idea.

I have not thought of Zabbix, thank you for the proposal. I will give it a go and see if this can be a fit somehow. Thank you again for taking the time to respond.