mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-14 12:56:54 +00:00
Document blacklist_domains of InfluxDB (#2493)
* Document blacklist_domains of InfluxDB Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de> * Adapt changes to InfluxDB include/exclude changes. The config options used there are now following the same scheme as the ones in recorder and similar components. Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
This commit is contained in:
parent
3c6b558275
commit
e0f5bd4b95
@ -36,8 +36,12 @@ Configuration variables:
|
|||||||
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.
|
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.
|
||||||
- **default_measurement** (*Optional*): Measurement name to use when an entity doesn't have a unit. Defaults to entity id.
|
- **default_measurement** (*Optional*): Measurement name to use when an entity doesn't have a unit. Defaults to entity id.
|
||||||
- **override_measurement** (*Optional*): Measurement name to use instead of unit or default measurement. This will store all data points in a single measurement.
|
- **override_measurement** (*Optional*): Measurement name to use instead of unit or default measurement. This will store all data points in a single measurement.
|
||||||
- **blacklist** (*Optional*): List of entities that should not be logged to InfluxDB.
|
- **exclude** (*Optional*): Configure which components should be excluded from recording 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.
|
- **entities** (*Optional*): The list of entity ids to be excluded from recording to InfluxDB.
|
||||||
|
- **domains** (*Optional*): The list of domains to be excluded from recording to InfluxDB.
|
||||||
|
- **include** (*Optional*): Configure which components should be included in recordings to InfluxDB. If set, all other entities will not be recorded to InfluxDB. Values set by the **blacklist** option will prevail.
|
||||||
|
- **entities** (*Optional*): The list of entity ids to be included from recordings to InfluxDB.
|
||||||
|
- **domains** (*Optional*): The list of domains to be included from recordings to InfluxDB.
|
||||||
- **tags** (*Optional*): Tags to mark the data.
|
- **tags** (*Optional*): Tags to mark the data.
|
||||||
|
|
||||||
## {% linkable_title Data migration %}
|
## {% linkable_title Data migration %}
|
||||||
@ -169,12 +173,16 @@ influxdb:
|
|||||||
ssl: true
|
ssl: true
|
||||||
verify_ssl: true
|
verify_ssl: true
|
||||||
default_measurement: state
|
default_measurement: state
|
||||||
blacklist:
|
exclude:
|
||||||
- entity.id1
|
entities:
|
||||||
- entity.id2
|
- entity.id1
|
||||||
whitelist:
|
- entity.id2
|
||||||
- entity.id3
|
domains:
|
||||||
- entity.id4
|
- automation
|
||||||
|
include:
|
||||||
|
entities:
|
||||||
|
- entity.id3
|
||||||
|
- entity.id4
|
||||||
tags:
|
tags:
|
||||||
instance: prod
|
instance: prod
|
||||||
source: hass
|
source: hass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user