SQLite Historian

This is a VOLTTRON historian agent that stores its data in a sqlite database. It depends on volttron-lib-sql-historian and extends the class SQLHistorian

Configuration

The following is a minimal configuration file that uses a relative path to the database.

{
   "connection": {
       "type": "sqlite",
       "params": {
           "database": "data/historian.sqlite"
       }
   }

}

All the above parameters are mandatory.

Optional Configuration

In addition to the above configuration, SQLite Historian can optionally be configured using all the available configurations exposed by the SQLHistorian and BaseHistorian. Please refer to SQL Historian and Base Historian Configurations for more details