home-assistant.io/source/_components/sensor.nzbget.markdown
cgtobi ca98712887 Fix nzbget configuration (#6752)
* Fix nzbget configuration

* Fix stupidness
2018-10-13 21:41:52 +02:00

2.0 KiB

layout title description date sidebar comments sharing footer ha_category logo ha_iot_class ha_release
page NZBGet Instructions on how to integrate NZBGet within Home Assistant. 2016-04-08 19:59 true false true true Downloading nzbget.png Local Polling 0.17

The nzbget platform will allow you to monitor your downloads with NZBGet from within Home Assistant and setup automation based on the information.

To use NZBGet with your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  platform: nzbget
  host: YOUR_NZBGET_HOST
  monitored_variables:
    - article_cache
    - download_rate
    - download_paused

{% configuration %} host: required: true type: string description: IP address where your NZBGet installation is running. port: required: false type: integer description: The port of your NZBGet installation. default: 6789 ssl: required: false type: boolean description: Whether or not to use SSL to access NZBGet. default: false name: required: false type: string description: The prefix to use for your sensor. default: NZBGet username: required: false type: string description: The username to access your NZBGet installation. password: required: false type: string description: The password to access your NZBGet installation. monitored_variables: required: true type: list description: List of monitored details. keys: article_cache: description: Number of cached articles. average_download_rate: description: Average download rate download_paused: description: Paused downloads download_rate: description: Current download rate download_size: description: The size to download free_disk_space: description: Free disk space at the storage location of NZBGet post_paused: description: Paused posts remaining_size: description: Remaining size to download uptime: description: Uptime of NZBGet {% endconfiguration %}