InfluxDB.
It's About Time.

Real-time insights from any time series data with a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.

turbine

InfluxDB 3.0 keeps raising the bar


45x


Better write
throughput

90%


Reduction in
storage costs

100x


Faster queries for high
cardinality data

45x


Faster queries for
recent data

Compared to InfluxDB Open Source

InfluxDB 3.0 features


046-abstract shape-hl

Single datastore for all
time series data

009-marble-hl

Native SQL
support

Low latency
queries

009-marble-hl

Unlimited
cardinality

021-petals-hl

Open and interoperable
with data ecosystems

046-abstract shape-hl

Superior data
compression

JavaScript Python Go C# Java
          import {InfluxDBClient} from '@influxdata/influxdb3-client'
import {tableFromArrays} from 'apache-arrow';

const database = process.env.INFLUX_DATABASE;
const token = process.env.INFLUX_TOKEN;
const host = "https://us-east-1-1.aws.cloud2.influxdata.com";

async function main() {
    const client = new InfluxDBClient({host, token})
    const query = `
    SELECT
      room,
      DATE_BIN(INTERVAL '1 day', time) AS _time,
      AVG(temp) AS temp,
      AVG(hum) AS hum,
      AVG(co) AS co
    FROM home
    WHERE time >= now() - INTERVAL '90 days'
    GROUP BY room, _time
    ORDER BY _time
    `
    const result = await client.query(query, database)

    const data = {room: [], day: [], temp: []}

    for await (const row of result) {
      data.day.push(new Date(row._time).toISOString())
      data.room.push(row.room)
      data.temp.push(row.temp)
    }

    console.table([...tableFromArrays(data)])

    client.close()
}

main()
          
c
c
c
c
c

Code in the languages you love


Tap into our custom client libraries, powerful APIs and tools, or build it yourself, line by line.

See All Integrations

Trusted by developers, from startups to enterprises


InfluxDB is a G2 Leader in Time Series


G2 - Leader Fall 2023
G2 Momentum Leader
G2-Leadeer-Winter-2023
G2 - Easiest To Do Business With
G2 - Best Relationship Total

“InfluxDB is a strong database built specifically for time series data. It has made working with such data seamless and easy.”

Verified G2 Reviewer Read reviews