diff options
author | Evan Steinkerchner <esteinkerchner@gmail.com> | 2022-04-29 14:18:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-29 14:18:59 -0400 |
commit | e6c106eb72412fc6ad2998e1ff662f9206595ae7 (patch) | |
tree | d85bee77527cea8dd0a026515c29696ccafe428f /docs | |
parent | 6e4410d8f144e3ab2ff22444313f2a3c3a24c29c (diff) | |
download | homer-e6c106eb72412fc6ad2998e1ff662f9206595ae7.tar.gz homer-e6c106eb72412fc6ad2998e1ff662f9206595ae7.tar.zst homer-e6c106eb72412fc6ad2998e1ff662f9206595ae7.zip |
Added Tautulli service (#439)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/customservices.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/customservices.md b/docs/customservices.md index be9d6cb..d19b560 100644 --- a/docs/customservices.md +++ b/docs/customservices.md | |||
@@ -195,3 +195,30 @@ The following configuration is available for the UptimeKuma service. Needs v1.13 | |||
195 | slug: "myCustomDashboard" # Defaults to "default" if not provided. | 195 | slug: "myCustomDashboard" # Defaults to "default" if not provided. |
196 | type: "UptimeKuma" | 196 | type: "UptimeKuma" |
197 | ``` | 197 | ``` |
198 | |||
199 | ## Tautulli | ||
200 | |||
201 | The Tautulli service can allow you to show the number of currently active | ||
202 | streams on you Plex instance. An API key is required, and can be obtained from | ||
203 | the "Web Interface" section of settings on the Tautulli web UI. | ||
204 | |||
205 | ```yaml | ||
206 | - name: "Tautulli" | ||
207 | logo: "assets/tools/sample.png" | ||
208 | url: "http://192.168.0.151:8181" | ||
209 | type: "Tautulli" | ||
210 | apikey: "MY-SUPER-SECRET-API-KEY" | ||
211 | ``` | ||
212 | |||
213 | Because the service type and link don't necessarily have to match, you could | ||
214 | even make the service type Tautulli on your Plex card and provide a separate | ||
215 | endpoint pointing to Tautulli! | ||
216 | |||
217 | ```yaml | ||
218 | - name: "Plex" | ||
219 | logo: "assets/tools/sample.png" | ||
220 | url: "http://192.168.0.151:32400/web" # Plex | ||
221 | endpoint: "http://192.168.0.151:8181" # Tautulli | ||
222 | type: "Tautulli" | ||
223 | apikey: "MY-SUPER-SECRET-API-KEY" | ||
224 | ``` | ||