Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.51 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.51 KB

Smart Home Analytics Platform

Syntax Linting

This repository consists of several role Ansible Playbooks used for configuring and running InfluxDB, Grafana, and Telegraf in Docker on a Raspberry Pi. There are a few prerequesites and assumptions made before this playbook will run through successfully. This playbook assumes:

  • Docker is installed. The playbook will start docker if it is not running, but the assumption is Docker is already installed.
  • The UUID for mounting storage used by each of the services is hardcoded to my hard drive. This should be changed to using a variable in the future that can be set in the inventory.

Development

It's recommended to use a dedicated, virtual python environment when adding new features, fixing bugs, or in general doing any python development work. Use the following commands to initialize and activate a virtual environment.

# Initialize virtual environment
pyenv virtualenv 3.10.2 smarthome-analytics-platform

# Activate virtual environment
pyenv activate smarthome-analytics-platform

# Install Ansible and required additional collections
make

Playbook execution

# Configure and run Telegraf
make telegraf

# Configure and run InfluxDB
make influxdb

# Configure and run Grafana
make grafana

# Configure and run Telegraf, InfluxDB, and Grafana
make all