Skip to main content

exporter.timescaledb

TimescaleDB exporter allows you to store monitoring data in a TimescaleDB database, which is a time-series database built on PostgreSQL.

Arguments

You can use the following arguments with exporter.timescale:

NameTypeDescriptionDefaultRequired
connection_stringstringPostgreSQL/TimescaleDB connection string (e.g., postgresql://user:password@host:5432/dbname).yes
schemastringDatabase schema to use for metrics tables.publicno

Example

exporter "timescale" "default" {
connection_string = "postgresql://zookoo:zookoo@timescaledb:5432/zookoo"
# Optional: Specify database schema (default: "public")
schema = "monitoring"
}

Resources