Fix configuration variables for Graphite component (#6695)

* Fix configuration variables

Related to #6385.

* ✏️ Tweak
This commit is contained in:
Nicholas Westerhausen 2018-10-11 16:06:20 -04:00 committed by Franck Nijhof
parent 22c80839ca
commit 50fa817ec1

View File

@ -21,9 +21,21 @@ To enable this component, add the following lines to your `configuration.yaml`:
graphite: graphite:
``` ```
Configuration variables: {% configuration %}
host:
- **host** (*Option*): IP address of your graphite host, eg. http://192.168.1.10. Defaults to `localhost` description: IP address of your graphite host, e.g., http://192.168.1.10.
- **port** (*Optional*): Port to use. Defaults to 2003. required: false
- **prefix** (*Optional*): Prefix is the metric prefix in graphite. Defaults to `ha`. type: string
default: localhost
port:
description: This is a description of what this key is for.
required: false
type: integer
default: 2003
prefix:
description: Prefix is the metric prefix in graphite.
required: false
type: string
default: ha
{% endconfiguration %}