Skip to content

Commit f80d45c

Browse files
authored
Make 'monitored_conditions' optional (home-assistant#3141)
1 parent 276ca74 commit f80d45c

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

source/_components/sensor.radarr.markdown

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,34 +13,32 @@ ha_release: 0.47
1313
---
1414

1515

16-
This `radarr` sensor platform pulls data from a given Radarr instance.
16+
This `radarr` sensor platform pulls data from a given [Radarr](https://radarr.video/) instance.
1717

18-
To use your [Radarr](https://radarr.video/) sensor in your installation, add the following to your `configuration.yaml` file:
18+
To use your Radarr sensor in your installation, add the following to your `configuration.yaml` file:
1919

2020
```yaml
2121
# Example configuration.yml entry
2222
sensor:
2323
- platform: radarr
2424
api_key: YOUR_API_KEY
25-
host: IP_ADDRESS
26-
port: PORT
2725
```
2826
2927
Configuration variables:
3028
3129
- **api_key** (*Required*): Your Radarr API key, found in Settings > General in the Radarr Web UI.
32-
- **monitored_conditions** array (*Required*): Conditions to display on the frontend.
30+
- **host** (*Optional*): The host Radarr is running on. Defaults to `localhost`.
31+
- **port** (*Optional*): The port Radarr is running on. Defaults to 7878.
32+
- **urlbase** (*Optional*): The base URL Radarr is running under. Defaults to `/`.
33+
- **monitored_conditions** array (*Optional*): Conditions to display on the frontend. Defaults to `movies`.
3334
- **movies**: The number of movies in Radarr.
3435
- **upcoming**: The number of upcoming movie releases (physical and in cinemas).
3536
- **commands**: The number of commands being run.
36-
- **diskspace**: Available disk space.
37-
- **status**: System status information
38-
- **host** (*Optional*): The host Radarr is running on (Default: localhost).
39-
- **port** (*Optional*): The port Radarr is running on (Default: 7878).
40-
- **urlbase** (*Optional*): The base URL Radarr is running under (Default: /).
41-
- **days** (*Optional*): How many days to look ahead for the upcoming sensor, 1 means today only (Default: 1).
37+
- **diskspace**: The available disk space.
38+
- **status**: The current system status information.
39+
- **days** (*Optional*): How many days to look ahead for the upcoming sensor, 1 means today only. Defaults to 1.
4240
- **include_paths** (*Optional*): Array of filepaths to include when calculating diskspace. Leave blank to include all.
43-
- **unit**: (*Optional*): The unit to display disk space in (Default: GB).
41+
- **unit**: (*Optional*): The unit to display disk space in. Defaults to GB.
4442
- **ssl**: boolean (*Optional*): Whether or not to use SSL for Radarr.
4543

4644
## {% linkable_title Examples %}

0 commit comments

Comments
 (0)