Build a clearer workflow for InfluxDB: reverse engineer existing schemas into interactive ER diagrams, model changes visually, and generate reviewed SQL scripts before deployment.
DbSchema is built for visual modeling, schema documentation, and deployment. Keep an offline model in Git, collaborate across teams, and publish documentation that developers, analysts, and stakeholders can navigate in minutes.
Download DbSchema See InfluxDB Features Download InfluxDB JDBC Driver
Get to your first InfluxDB schema diagram in minutes. No account, no credit card.
Download the installer for Windows, macOS, or Linux and launch DbSchema. No signup required.
Reverse engineer an existing InfluxDB database or open a sample model to explore tables, relationships, and indexes.
Edit schema visually, generate documentation, and prepare reviewed migration scripts for safer releases.
InfluxDB organizes time-series data into measurements, each containing tag keys (indexed metadata strings), field keys (the measured numeric or string values), and a timestamp. This model differs fundamentally from relational schemas — there is no DDL defining columns, and the tag-and-field set is inferred from the data as it is written. DbSchema maps each measurement as a table, exposes tag keys and field types in the diagram view, and supports SQL-compatible queries for InfluxDB 3.x as well as connections to InfluxDB 2.x instances.
InfluxDB 3.x exposes a SQL interface via Arrow Flight SQL, and DbSchema's SQL editor connects
to it directly. Write time-bounded SELECT statements, aggregate by tag keys, and apply
InfluxDB SQL functions such as date_bin — all without switching to a separate
client or the InfluxDB web UI.
Download DbSchema Free See InfluxDB Features
The data explorer renders measurement query results in a paginated grid. Filter by time range and tag values to narrow down the result set and inspect individual data points — useful for validating ingestion pipelines or tracing unexpected values back to their source.
DbSchema auto-generates HTML schema documentation from the inferred measurement structure, covering tag keys, field types, and any manually defined relationships between measurements. Share this documentation with teams consuming your time-series data via Grafana, Telegraf, or custom clients so they know exactly which fields to expect.
InfluxDB 3.x (InfluxDB Cloud Serverless and InfluxDB 3 Core) supports SQL via Arrow Flight SQL
on port 443. Use the InfluxDB JDBC driver or an Arrow Flight JDBC driver and authenticate with
an InfluxDB API token supplied as the password field — leave the username blank or use
token. For self-hosted InfluxDB 2.x, the HTTP API runs on port 8086; use an
InfluxDB 2.x-compatible JDBC driver or the Flux HTTP interface. Generate API tokens in the
InfluxDB UI under Load Data → API Tokens before configuring the DbSchema
connection.
DbSchema provides an open-source InfluxDB JDBC driver. The source code is available on GitHub.