mirror of
https://github.com/bastienwirtz/homer.git
synced 2026-01-23 02:15:09 +00:00
Add UptimeKuma Service component (#414)
* ✨ Add UptimeKuma Service component * 📝 Add custom services documentation * Change await to fetch and use new API * ✨ Tri State logic from Uptime Kuma * 📝 Add and lint documentation * Remove erroneous logging Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Remove CORS warning Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Correct error level Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Correct error level Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Prevent caching of requests Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Prevent caching of requests Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com> * Undo unrelated changes Co-authored-by: Evan Steinkerchner <esteinkerchner@gmail.com>
This commit is contained in:
parent
9c370d3c5e
commit
847d1ba3e8
2 changed files with 167 additions and 0 deletions
|
|
@ -179,3 +179,18 @@ You need to set the type to Emby, provide an api key and choose which stats to s
|
|||
apikey: "MY-SUPER-SECRET-API-KEY"
|
||||
libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies.
|
||||
```
|
||||
|
||||
## Uptime Kuma
|
||||
|
||||
Using the Uptime Kuma service you can display info about your instance uptime right on your Homer dashboard.
|
||||
|
||||
The following configuration is available for the UptimeKuma service. Needs v1.13.1 or later because of the change in APIs due to [multiple status pages support](https://github.com/louislam/uptime-kuma/releases/tag/1.13.1).
|
||||
|
||||
```yaml
|
||||
- name: "Uptime Kuma"
|
||||
logo: "assets/tools/sample.png"
|
||||
# subtitle: "A fancy self-hosted monitoring tool" # optional, if no subtitle is defined, Uptime Kuma incidents, if any, will be shown
|
||||
url: "http://192.168.0.151:3001"
|
||||
slug: "myCustomDashboard" # Defaults to "default" if not provided.
|
||||
type: "UptimeKuma"
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue