diff options
author | Adyanth H <me@adyanth.dev> | 2022-04-20 18:13:55 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 08:43:55 -0400 |
commit | 847d1ba3e89b4a267c013126eaafa33a98ed9713 (patch) | |
tree | 52a3a82169c6d0b988c6d3f88c77f33cada0be67 /docs/customservices.md | |
parent | 9c370d3c5e25d1a5e3e04f6e146e35883e4ac2e3 (diff) | |
download | homer-847d1ba3e89b4a267c013126eaafa33a98ed9713.tar.gz homer-847d1ba3e89b4a267c013126eaafa33a98ed9713.tar.zst homer-847d1ba3e89b4a267c013126eaafa33a98ed9713.zip |
Add UptimeKuma Service component (#414)
* :sparkles: Add UptimeKuma Service component
* :memo: Add custom services documentation
* Change await to fetch and use new API
* :sparkles: Tri State logic from Uptime Kuma
* :memo: 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>
Diffstat (limited to 'docs/customservices.md')
-rw-r--r-- | docs/customservices.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/customservices.md b/docs/customservices.md index 509278f..709b16b 100644 --- a/docs/customservices.md +++ b/docs/customservices.md | |||
@@ -179,3 +179,18 @@ You need to set the type to Emby, provide an api key and choose which stats to s | |||
179 | apikey: "MY-SUPER-SECRET-API-KEY" | 179 | apikey: "MY-SUPER-SECRET-API-KEY" |
180 | libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies. | 180 | libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies. |
181 | ``` | 181 | ``` |
182 | |||
183 | ## Uptime Kuma | ||
184 | |||
185 | Using the Uptime Kuma service you can display info about your instance uptime right on your Homer dashboard. | ||
186 | |||
187 | 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). | ||
188 | |||
189 | ```yaml | ||
190 | - name: "Uptime Kuma" | ||
191 | logo: "assets/tools/sample.png" | ||
192 | # subtitle: "A fancy self-hosted monitoring tool" # optional, if no subtitle is defined, Uptime Kuma incidents, if any, will be shown | ||
193 | url: "http://192.168.0.151:3001" | ||
194 | slug: "myCustomDashboard" # Defaults to "default" if not provided. | ||
195 | type: "UptimeKuma" | ||
196 | ``` | ||