diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/customservices.md | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/customservices.md b/docs/customservices.md index 82114c2..b28f399 100644 --- a/docs/customservices.md +++ b/docs/customservices.md | |||
@@ -32,6 +32,7 @@ within Homer: | |||
32 | - [What's Up Docker](#whats-up-docker) | 32 | - [What's Up Docker](#whats-up-docker) |
33 | - [SABnzbd](#sabnzbd) | 33 | - [SABnzbd](#sabnzbd) |
34 | - [OctoPrint](#sabnzbd) | 34 | - [OctoPrint](#sabnzbd) |
35 | - [Tdarr](#tdarr) | ||
35 | 36 | ||
36 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. | 37 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. |
37 | 38 | ||
@@ -390,4 +391,17 @@ The OctoPrint service only needs an `apikey` & `url` and optionally a `display` | |||
390 | url: "http://192.168.0.151:8080" | 391 | url: "http://192.168.0.151:8080" |
391 | display: "text" # 'text' or 'bar'. Default to `text`. | 392 | display: "text" # 'text' or 'bar'. Default to `text`. |
392 | type: "OctoPrint" | 393 | type: "OctoPrint" |
393 | ``` \ No newline at end of file | 394 | ``` |
395 | |||
396 | ## Tdarr | ||
397 | |||
398 | The Tdarr service can allow you to show the number of currently queued items | ||
399 | for transcoding on your Tdarr instance as well as the number of errored items. | ||
400 | |||
401 | ```yaml | ||
402 | - name: "Tdarr" | ||
403 | logo: "assets/tools/sample.png" | ||
404 | url: "http://192.168.0.151:8265" | ||
405 | type: "Tdarr" | ||
406 | checkInterval: 5000 # (Optional) Interval (in ms) for updating the queue & error counts | ||
407 | ``` | ||