this post was submitted on 27 Feb 2025
10 points (91.7% liked)

Sysadmin

8291 readers
43 users here now

A community dedicated to the profession of IT Systems Administration

No generic Lemmy issue posts please! Posts about Lemmy belong in one of these communities:
[email protected]
[email protected]
[email protected]
[email protected]

founded 2 years ago
MODERATORS
 

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

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 1 week ago* (last edited 1 week ago) (1 children)

Uptime kuma checking the presence or absence of certain keywords?

Or perhaps https://github.com/dgtlmoon/changedetection.io, to check for changes in the api responses?

[–] Luckyfriend222 1 points 1 week ago (1 children)

This was my idea initially. But it seems that the auth methods for the sensors service cannot be handled by Uptime Kuma. It only allows for user and pass, or Oauth methods. None of which is the way that the service uses auth. So that is what put me off. I love the simplicity of UK, and wanted to go with that off the bat.

[–] [email protected] 1 points 1 week ago (1 children)

https://github.com/dgtlmoon/changedetection.io has browser automation. So as long as there's no captcha

[–] Luckyfriend222 3 points 1 week ago

In the end I got UK to work. Does exactly what I need it to do. I was just stupid in my "figuring out part". So it works perfectly. Thank you for the input!