From a324cfc3aa688e7f029d78b4451a17b52dfd4a7b Mon Sep 17 00:00:00 2001 From: Georgi Kirichkov Date: Mon, 17 Oct 2016 22:33:13 +0300 Subject: [PATCH] Updates the influxdb documentation with minimal setup instructions (#1242) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Updates the influxdb documentation with minimal setup instructions - Adds instructions on creating the default database, which were previously located in the blog post - Clarifies that the default influxdb configuration doesn’t require authentication * Removes detailed instructions for Influx database creation Replaces the detailed instructions with a link to the official InfluxDB v 1.0 documentation for creating a database --- source/_components/influxdb.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/_components/influxdb.markdown b/source/_components/influxdb.markdown index 266e783c1d4..d8e28d95833 100644 --- a/source/_components/influxdb.markdown +++ b/source/_components/influxdb.markdown @@ -14,13 +14,15 @@ ha_release: 0.9 The `influxdb` component makes it possible to transfer all state changes to an external [InfluxDB](https://influxdb.com/) database. For more details, [see the blog post on InfluxDB](/blog/2015/12/07/influxdb-and-grafana/). -To use the `influxdb` component in your installation, add the following to your `configuration.yaml` file: +The default InfluxDB configuration doesn't enforce authentication. If you have installed InfluxDB on the same host where Home Assistant is running and haven't made any configuration changes, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry influxdb: ``` +You will still need to create a database named `home_assistant` via InfluxDB's web interface or command line. For instructions how to create a database check the [InfluxDB documentation](https://docs.influxdata.com/influxdb/v1.0/introduction/getting_started/#creating-a-database) relevant to the version you have installed. + Configuration variables: - **host** (*Optional*): IP address of your database host, eg. http://192.168.1.10. Defaults to `localhost`. @@ -37,7 +39,6 @@ Configuration variables: ## {% linkable_title Examples %} -In this section you find some real life examples of how to use this component. ### {% linkable_title Full configuration %}