aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEvan Steinkerchner <esteinkerchner@gmail.com>2022-04-29 14:20:00 -0400
committerEvan Steinkerchner <esteinkerchner@gmail.com>2022-04-29 14:20:00 -0400
commitb19f6f228b29a320e842d52700d6930386cca199 (patch)
tree8bc0c07be077026e9d3ddc6f9537688eb30bf591
parent10fa40d1f653e5bbcb6a5452f5e11148febf25cb (diff)
downloadhomer-b19f6f228b29a320e842d52700d6930386cca199.tar.gz
homer-b19f6f228b29a320e842d52700d6930386cca199.tar.zst
homer-b19f6f228b29a320e842d52700d6930386cca199.zip
Added new Tautulli documentation
-rw-r--r--docs/custom_services.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/custom_services.md b/docs/custom_services.md
index be9d6cb..d19b560 100644
--- a/docs/custom_services.md
+++ b/docs/custom_services.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
201The Tautulli service can allow you to show the number of currently active
202streams on you Plex instance. An API key is required, and can be obtained from
203the "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
213Because the service type and link don't necessarily have to match, you could
214even make the service type Tautulli on your Plex card and provide a separate
215endpoint 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```