mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-13 04:16:48 +00:00
Added whitelist option to InfluxDB (#735)
This commit is contained in:
parent
c18453b860
commit
12ee1f0cca
@ -30,6 +30,9 @@ influxdb:
|
|||||||
blacklist:
|
blacklist:
|
||||||
- entity.id1
|
- entity.id1
|
||||||
- entity.id2
|
- entity.id2
|
||||||
|
whitelist:
|
||||||
|
- entity.id3
|
||||||
|
- entity.id4
|
||||||
tags:
|
tags:
|
||||||
- instance: prod
|
- instance: prod
|
||||||
```
|
```
|
||||||
@ -44,5 +47,6 @@ Configuration variables:
|
|||||||
- **ssl** (*Optional*): Use https instead of http to connect. Defaults to false.
|
- **ssl** (*Optional*): Use https instead of http to connect. Defaults to false.
|
||||||
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.
|
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.
|
||||||
- **blacklist** (*Optional*): List of entities not logged to InfluxDB.
|
- **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.
|
- **tags** (*Optional*): Tags to mark the data.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user