Categorygithub.com/FileGo/dump1090-influx
repositorypackage
0.0.0-20220726063911-977ad39b77f3
Repository: https://github.com/filego/dump1090-influx.git
Documentation: pkg.go.dev

# README

dump1090-influx

Go Report Card build tests docker

This program periodically retrieves JSON data from dump1090-mutability and stores it in InfluxDB.

The easiest way to use this is through Docker with docker-compose:

version: "3.6"
services:
    dump1090-influx:
        container_name: dump1090-influx
        build: .
        restart: unless_stopped
        environment:
            - HOST=http://localhost/dump1090/data/stats.json
            - INFLUX_URL=http://localhost:8086
            - INFLUX_TOKEN=
            - INFLUX_ORG=
            - INFLUX_BUCKET=dump1090 # Database name for InfluxDB v1
            - POLL_TIME=10s