Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.27 KB

README.md

File metadata and controls

45 lines (36 loc) · 1.27 KB

fronius-to-postgres

Collect data from the Fronius Symo JSON API and store in a PostgreSQL database

Based on:

I don't know much about postgresql, so this is very much a hack. It probably requires source code modifications to work for other people.

It's meant to be used with Grafana.

The docker directory contains some Dockerfiles which can be used to create an environment for this script. It's meant to be used together with a postgres database container in a docker compose file. I.e., something like

  database:
    image: postgres:12
    restart: always
    environment:
      - POSTGRES_USER=kalle
      - POSTGRES_PASSWORD=anka
      - POSTGRES_DB=kalle
    ports:
     - 5432:5432
    volumes:
      - kalle-db:/var/lib/postgresql/data

  fronius-script:
    image: simonkagstrom/fronius-script:latest
    restart: always
    environment:
      - DATABASE_USER=kalle
      - DATABASE_PASS=anka
      - DATABASE_NAME=kalle
      - DATABASE_HOST=database
      - FRONIUS_IP=<IP-to-the-inverter>

A snippet is available in docker-compose.yml.

Grafana screenshot