Added whitelist option to InfluxDB (#735)

This commit is contained in:
Marcelo Moreira de Mello 2016-08-05 07:46:02 -04:00 committed by Fabian Affolter
parent c18453b860
commit 12ee1f0cca

View File

@ -30,6 +30,9 @@ influxdb:
blacklist:
- entity.id1
- entity.id2
whitelist:
- entity.id3
- entity.id4
tags:
- instance: prod
```
@ -44,5 +47,6 @@ Configuration variables:
- **ssl** (*Optional*): Use https instead of http to connect. Defaults to false.
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.
- **blacklist** (*Optional*): List of entities not logged to InfluxDB.
- **whitelist** (*Optional*): List of the entities (only) that will be logged to InfluxDB. If not set, all entities will be logged. Values set by the **blacklist** option will prevail.
- **tags** (*Optional*): Tags to mark the data.