mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 09:17:35 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
242 lines
10 KiB
Markdown
242 lines
10 KiB
Markdown
---
|
||
layout: page
|
||
title: "Recorder"
|
||
description: "Instructions on how to configure the data recorder for Home Assistant."
|
||
date: 2017-09-24 09:00
|
||
sidebar: true
|
||
comments: false
|
||
sharing: true
|
||
footer: true
|
||
logo: home-assistant.png
|
||
ha_category: "History"
|
||
ha_release: pre 0.7
|
||
---
|
||
|
||
The `recorder` component is storing details in a database which then are handled by the [`history` component](/components/history/).
|
||
|
||
Home Assistant uses [SQLAlchemy](http://www.sqlalchemy.org/) as Object Relational Mapper (ORM). This means that you can now use **any** SQL backend for the recorder that is supported by SQLAlchemy, like [MySQL](https://www.mysql.com/), [MariaDB](https://mariadb.org/), [PostgreSQL](https://www.postgresql.org/), or [MS SQL Server](https://www.microsoft.com/en-us/sql-server/).
|
||
|
||
The default database engine is [SQLite](https://www.sqlite.org/) which doesn't require any configuration. The database is stored in your Home Assistant configuration directory (`.homeassistant`) and called `home-assistant_v2.db`.
|
||
|
||
To setup the `recorder` component in your installation, add the following to your `configuration.yaml` file:
|
||
|
||
```yaml
|
||
# Example configuration.yaml entry
|
||
recorder:
|
||
```
|
||
|
||
{% configuration %}
|
||
recorder:
|
||
description: Enables the recorder component. Only allowed once.
|
||
required: true
|
||
type: map
|
||
keys:
|
||
db_url:
|
||
description: The URL which points to your database.
|
||
required: false
|
||
type: URL
|
||
purge_keep_days:
|
||
description: Specify the number of history days to keep in recorder database after a purge.
|
||
required: false
|
||
default: 10
|
||
type: int
|
||
purge_interval:
|
||
description: How often (in days) the purge task runs. If a scheduled purge is missed (e.g., if Home Assistant was not running), the schedule will resume soon after Home Assistant restarts. You can use the [service](#service-purge) call `purge` when required without impacting the purge schedule. If this is set to `0` (zero), automatic purging is disabled.
|
||
required: false
|
||
default: 1
|
||
type: int
|
||
exclude:
|
||
description: Configure which components should be excluded
|
||
required: false
|
||
type: map
|
||
keys:
|
||
domains:
|
||
description: The list of domains to be excluded from recordings.
|
||
required: false
|
||
type: List
|
||
entities:
|
||
description: The list of entity ids to be excluded from recordings.
|
||
required: false
|
||
type: List
|
||
include:
|
||
description: Configure which components should be included in recordings. If set, all other entities will not be recorded.
|
||
required: false
|
||
type: map
|
||
keys:
|
||
domains:
|
||
description: The list of domains to be included in the recordings.
|
||
required: false
|
||
type: List
|
||
entities:
|
||
description: The list of entity ids to be included in the recordings.
|
||
required: false
|
||
type: List
|
||
{% endconfiguration %}
|
||
|
||
Define domains and entities to `exclude` (aka. blacklist). This is convenient when you are basically happy with the information recorded, but just want to remove some entities or domains. Usually these are entities/domains which do not change (like `weblink`) or rarely change (`updater` or `automation`).
|
||
|
||
```yaml
|
||
# Example configuration.yaml entry with exclude
|
||
recorder:
|
||
purge_keep_days: 5
|
||
db_url: sqlite:///home/user/.homeassistant/test
|
||
exclude:
|
||
domains:
|
||
- automation
|
||
- weblink
|
||
- updater
|
||
entities:
|
||
- sun.sun # Don't record sun data
|
||
- sensor.last_boot # Comes from 'systemmonitor' sensor platform
|
||
- sensor.date
|
||
```
|
||
|
||
Define domains and entities to record by using the `include` configuration (aka. whitelist). If you have a lot of entities in your system and your `exclude` lists possibly get very large, it might be better just to define the entities or domains to record.
|
||
|
||
```yaml
|
||
# Example configuration.yaml entry with include
|
||
recorder:
|
||
include:
|
||
domains:
|
||
- sensor
|
||
- switch
|
||
- media_player
|
||
```
|
||
|
||
Use the `include` list to define the domains/entities to record, and exclude some of them with in the `exclude` list. This makes sense if you for instance include the `sensor` domain, but want to exclude some specific sensors. Instead of adding every sensor entity to the `include` `entities` list just include the `sensor` domain and exclude the sensor entities you are not interested in.
|
||
|
||
```yaml
|
||
# Example configuration.yaml entry with include and exclude
|
||
recorder:
|
||
include:
|
||
domains:
|
||
- sensor
|
||
- switch
|
||
- media_player
|
||
exclude:
|
||
entities:
|
||
- sensor.last_boot
|
||
- sensor.date
|
||
```
|
||
|
||
If you only want to hide events from e.g., your history, take a look at the [`history` component](/components/history/). Same goes for logbook. But if you have privacy concerns about certain events or neither want them in history or logbook, you should use the `exclude`/`include` options of the `recorder` component, that they aren't even in your database. That way you can save storage and keep the database small by excluding certain often-logged events (like `sensor.last_boot`).
|
||
|
||
### {% linkable_title Service `purge` %}
|
||
|
||
Call the service `recorder.purge` to start a purge task which deletes events and states older than x days, according to `keep_days` service data.
|
||
|
||
| Service data attribute | Optional | Description |
|
||
| ---------------------- | -------- | ----------- |
|
||
| `keep_days` | yes | The number of history days to keep in recorder database (defaults to the component `purge_keep_days` configuration)
|
||
| `repack` | yes | Rewrite the entire database, possibly saving some disk space (only supported for SQLite)
|
||
|
||
### {% linkable_title Restore State %}
|
||
|
||
If the `recorder` component is activated then some components support `restore_state` which will restore the state of the entity after Home Assistant is started to the state before Home Assistant was stopped. Please make sure that you do not exclude the entities for which you want the state to be restored from your recordings. An incomplete list of components that currently support `restore_state`:
|
||
|
||
* [`input_boolean`](/components/input_boolean/#restore-state)
|
||
* [`input_number`](/components/input_number/#restore-state)
|
||
* [`input_select`](/components/input_select/#restore-state)
|
||
* [`input_datetime`](/components/input_datetime/#restore-state)
|
||
* [`input_text`](/components/input_text/#restore-state)
|
||
|
||
|
||
## {% linkable_title Custom database engines %}
|
||
|
||
| Database engine | `db_url` |
|
||
| :---------------|:---------------------------------------------------------|
|
||
| SQLite | `sqlite:///PATH/TO/DB_NAME` |
|
||
| MariaDB | `mysql://SERVER_IP/DB_NAME?charset=utf8` |
|
||
| MariaDB | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||
| MySQL | `mysql://SERVER_IP/DB_NAME?charset=utf8` |
|
||
| MySQL | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||
| MySQL (pymysql) | `mysql+pymysql://SERVER_IP/DB_NAME?charset=utf8` |
|
||
| MySQL (pymysql) | `mysql+pymysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
|
||
| PostgreSQL | `postgresql://scott:tiger@SERVER_IP/DB_NAME` |
|
||
| MS SQL Server | `mssql+pymssql://user:pass@SERVER_IP/DB_NAME?charset=utf8` |
|
||
|
||
<p class='note'>
|
||
If you use MariaDB 10 you need to add port 3307 to the SERVER_IP, e.g., `mysql://user:password@SERVER_IP:3307/DB_NAME?charset=utf8`.
|
||
|
||
+If you are running a database server instance on the same server as Home Assistant then you must ensure that this service starts before Home Assistant. For a Linux instance running Systemd (Raspberry Pi, Debian, Ubuntu and others) then you should edit the service file.
|
||
|
||
```bash
|
||
$ sudo nano /etc/systemd/system/home-assistant@homeassistant.service
|
||
```
|
||
|
||
and add the service for PostgreSQL:
|
||
|
||
```
|
||
[Unit]
|
||
Description=Home Assistant
|
||
After=network.target postgresql.service
|
||
```
|
||
|
||
Save the file then reload `systemctl`:
|
||
|
||
```bash
|
||
$ sudo systemctl daemon-reload
|
||
```
|
||
</p>
|
||
|
||
## {% linkable_title Installation notes %}
|
||
|
||
Not all Python bindings for the chosen database engine can be installed directly. This section contains additional details which should help you to get it working.
|
||
|
||
### {% linkable_title MariaDB and MySQL %}
|
||
|
||
If you are in a virtual environment, don't forget to activate it before installing the `mysqlclient` Python package described below.
|
||
|
||
```bash
|
||
pi@homeassistant:~ $ sudo su homeassistant -s /bin/bash
|
||
homeassistant@homeassistant:~$ source /srv/homeassistant/bin/activate
|
||
(homeassistant) homeassistant@homeassistant:~$ pip3 install mysqlclient
|
||
```
|
||
|
||
For MariaDB you may have to install a few dependencies. If you're using MariaDB version 10.2, libmariadbclient-dev was renamed to libmariadb-dev, please install the correct package based on your MariaDB version.
|
||
|
||
On the Python side we use the `mysqlclient`:
|
||
|
||
```bash
|
||
$ sudo apt-get install libmariadbclient-dev libssl-dev
|
||
$ pip3 install mysqlclient
|
||
```
|
||
|
||
For MySQL you may have to install a few dependencies. You can choose between `pymysql` and `mysqlclient`:
|
||
|
||
```bash
|
||
$ sudo apt-get install default-libmysqlclient-dev libssl-dev
|
||
$ pip3 install mysqlclient
|
||
```
|
||
|
||
After installing the dependencies, it is required to create the database manually. During the startup, Home Assistant will look for the database specified in the `db_url`. If the database doesn't exist, it will not automatically create it for you.
|
||
|
||
Once Home Assistant finds the database, with right level of permissions, all the required tables will then be automatically created and the data will be populated accordingly.
|
||
|
||
### {% linkable_title PostgreSQL %}
|
||
|
||
For PostgreSQL you may have to install a few dependencies:
|
||
|
||
```bash
|
||
$ sudo apt-get install postgresql-server-dev-X.Y
|
||
$ pip3 install psycopg2
|
||
```
|
||
|
||
### {% linkable_title MS SQL Server %}
|
||
|
||
For MS SQL Server you may have to install a few dependencies:
|
||
|
||
```bash
|
||
$ sudo apt-get install freetds-dev
|
||
$ pip3 install pymssql
|
||
```
|
||
|
||
If you are in a virtual environment, don't forget to activate it before installing the pymssql package.
|
||
|
||
```bash
|
||
$ sudo su -s /bin/bash homeassistant
|
||
$ source /srv/homeassistant/bin/activate
|
||
$ pip3 install pymssql
|
||
```
|