aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/customservices.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/customservices.md')
-rw-r--r--docs/customservices.md27
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
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```