From 12ee1f0cca3c39299840b22e438b4890bc534103 Mon Sep 17 00:00:00 2001 From: Marcelo Moreira de Mello Date: Fri, 5 Aug 2016 07:46:02 -0400 Subject: [PATCH] Added whitelist option to InfluxDB (#735) --- source/_components/influxdb.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/_components/influxdb.markdown b/source/_components/influxdb.markdown index b53e983c2b8..439c198b9f1 100644 --- a/source/_components/influxdb.markdown +++ b/source/_components/influxdb.markdown @@ -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.