Influx DB

InfluxDB is a custom high-performance data store written specifically for time series data. It allows for high throughput ingest, compression and real-time querying of that same data.

Influx SQL

Action CLI Command
Launch Influx CLI influx
Create Database CREATE DATABASE databasename
Create User CREATE USER username WITH PASSWORD ‘userpassword’ WITH privileges
Drop Series drop series from measurementname

Influx line protocol input : measurement,field name=field value,field name 1=field value 1SPACEtag name=tag value,tag name1 =tag value1SPACEtimestamp

Link to Documentation InfluxSQL