diff options
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 | ``` | ||