aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorMatt Bentley <mbentley@mbentley.net>2023-02-07 02:38:37 -0500
committerGitHub <noreply@github.com>2023-02-07 08:38:37 +0100
commitdfde8ea89d02f59f5408585702c0f2cf3f94eac1 (patch)
tree9b546463afa26c98d0fe9dab66a658ee5e452a86 /docs
parent1c7451bc81b847cf26cdb60c87b9c6cfffb12a6a (diff)
downloadhomer-dfde8ea89d02f59f5408585702c0f2cf3f94eac1.tar.gz
homer-dfde8ea89d02f59f5408585702c0f2cf3f94eac1.tar.zst
homer-dfde8ea89d02f59f5408585702c0f2cf3f94eac1.zip
Added Tdarr service (#573)v23.02.1
* Added Tdarr service Signed-off-by: Matt Bentley <mbentley@mbentley.net> * Added dummy-data for Tdarr; remove trailing / for API endpoint Signed-off-by: Matt Bentley <mbentley@mbentley.net> --------- Signed-off-by: Matt Bentley <mbentley@mbentley.net>
Diffstat (limited to 'docs')
-rw-r--r--docs/customservices.md16
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
36If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. 37If 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
398The Tdarr service can allow you to show the number of currently queued items
399for 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```