You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-5Lines changed: 17 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ Looking to **upgrade from V1 to V2**? Look [here](#upgrading-from-v1-to-v2)
47
47
-[WHISPARR](#whisparr)
48
48
-[Downloaders](#download-clients)
49
49
-[QBITTORRENT](#qbittorrent)
50
+
-[SABNZBD](#sabnzbd)
50
51
-[Disclaimer](#disclaimer)
51
52
52
53
## Overview
@@ -518,10 +519,13 @@ This is the interesting section. It defines which job you want decluttarr to run
518
519
- Steers whether slow downloads are removed from the queue
519
520
- Blocklisted: Yes
520
521
- Note:
521
-
- Does not apply to usenet downloads (since there users pay for certain speed, slowness should not occur)
522
-
- Applies only if qBittorrent is configured: The remove_slow check is automatically temporarily disabled if qBittorrent is already using more than 80% of your available download bandwidth.
523
-
For this to work, you must set a Global Download Rate Limit in qBittorrent. Otherwise, unlimited capacity is assumed, and the auto-disable feature will never trigger.
524
-
Make sure to configure the limit in the correct place — either the standard or the alternative limits, depending on which one is active in your setup.
522
+
Radarr, Sonarr, etc. only update the info about progress and speed of the queue items periodically.
523
+
Therefore, relying only on that information is imprecise to establish whether a download is slow.
524
+
It is advised that you configure qBittorrent (for torrents) and or SABnzbd (for Usenet), so that decluttarr can query those information real-time.
525
+
- Additional benefit when having qBittorrent configured:
526
+
- The remove_slow check is automatically temporarily disabled if qBittorrent is already using more than 80% of your available download bandwidth.
527
+
- For this to work, you must set a Global Download Rate Limit in qBittorrent. Otherwise, unlimited capacity is assumed, and the auto-disable feature will never trigger.
528
+
- Make sure to configure the limit in the correct place — either the standard or the alternative limits, depending on which one is active in your setup.
525
529
- Type: Boolean or Dict
526
530
- Permissible Values:
527
531
If bool: True, False
@@ -602,7 +606,7 @@ Defines arr-instances on which download queue should be decluttered
602
606
Certain jobs need access directly to the download clients, as the arr instances don't offer all the relevant APIs / data.
603
607
You can perfectly use decluttarr without this; just certain features won't be available (as documented above).
604
608
605
-
For time being, only qbittorrent is supported.
609
+
Supported download clients: **qBittorrent** and **SABnzbd**.
606
610
607
611
#### QBITTORRENT
608
612
- List of qbittorrent instances
@@ -613,6 +617,14 @@ For time being, only qbittorrent is supported.
613
617
- password: Optional - see above
614
618
- name: Optional. Needs to correspond with the name that you have set up in your Arr instance. Defaults to "qBittorrent"
615
619
620
+
#### SABNZBD
621
+
- List of SABnzbd instances
622
+
- Type: List of SABnzbd instances
623
+
- Keys per instance
624
+
- base_url: URL under which SABnzbd can be reached (mandatory)
625
+
- api_key: SABnzbd API key (mandatory)
626
+
- name: Optional. Needs to correspond with the name that you have set up in your Arr instance. Defaults to "SABnzbd"
Copy file name to clipboardExpand all lines: config/config_example.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,3 +66,7 @@ download_clients:
66
66
# username: xxxx # (optional -> if not provided, assuming not needed)
67
67
# password: xxxx # (optional -> if not provided, assuming not needed)
68
68
# name: "qBittorrent" # (optional -> if not provided, assuming "qBittorrent". Must correspond with what is specified in your *arr as download client name)
69
+
# sabnzbd:
70
+
# - base_url: "http://sabnzbd:8080" # SABnzbd server URL
71
+
# api_key: "your_api_key_here" # (required -> SABnzbd API key)
72
+
# # name: "SABnzbd" # (optional -> if not provided, assuming "SABnzbd". Must correspond with what is specified in your *arr as download client name)
0 commit comments