lucasheld / uptime-kuma-api

A Python wrapper for the Uptime Kuma Socket.IO API
https://uptime-kuma-api.readthedocs.io
MIT License
270 stars 20 forks source link

Support for Quick Stats #50

Open Subbeh opened 1 year ago

Subbeh commented 1 year ago

I don't know if this is a feature I overlooked, but it would be great to be able to get the quick stats for all monitors, without having to call the API for each individual monitor.

image

Ideally something like get_quick_stats() which returns:

{
    "up": 71,
    "down": 0,
    "maintenance": 0,
    "unknown": 0,
    "pause": 2
}