InfluxDB – is a time series metrics and analytics database

root@rpi-iot-jsho-NodeRED:~# apt-get install influxdb
root@rpi-iot-jsho-NodeRED:~# apt-get install influxdb-client
root@rpi-iot-jsho-NodeRED:~# influx -username <user> -password <password>
> create database NodeRED
> show databases
NodeRED
root@rpi-iot-jsho-NodeRED:~# influx
Connected to http://localhost:8086 version 1.6.4
InfluxDB shell version: 1.6.4
> show databases
name: databases
name
—-
_internal
NodeRED
> use NodeRED
Using database NodeRED
> select * from OutdoorTemperature
name: OutdoorTemperature
time value
—- —–
1608468668473015329 -1
1608468668710851981 -1
>

Leave a Reply

You must be logged in to post a comment.