Skip to main content

PostgreSQL query and administration CLI tool

Project description

tsdb-tool

PostgreSQL and TimescaleDB query and administration CLI tool.

Provides multiple output formats (table, JSON, CSV), flexible connection management (CLI flags, DSN, PG* env vars, config profiles), and admin commands for database inspection and maintenance.

Installation

git clone <repository-url>
cd tsdb-tool
uv sync

Run commands with uv run tsdb-tool or install globally:

uv tool install .

Quick Start

# Check connectivity
tsdb-tool service check

# Run a query
tsdb-tool query -e "SELECT now()"

# List databases
tsdb-tool databases

# List tables in a schema
tsdb-tool -s myschema table

# Show table columns and preview data
tsdb-tool table myschema.sensor_data --head 5

Commands

Query Execution

# Inline query
tsdb-tool query -e "SELECT * FROM users LIMIT 10"

# From file
tsdb-tool query queries/report.sql

# From stdin
echo "SELECT 1" | tsdb-tool query

# With timeout
tsdb-tool query -e "SELECT pg_sleep(5)" -t 3

Database Overview

# List all databases (sorted by size)
tsdb-tool databases

# List schemas with space usage
tsdb-tool schema

# Schemas across all databases
tsdb-tool schema --all-databases

Table Inspection

# List all tables with sizes
tsdb-tool table

# Filter by schema
tsdb-tool -s myschema table

# Show column definitions
tsdb-tool table myschema.sensor_data

# Preview data
tsdb-tool table myschema.sensor_data --head 10
tsdb-tool table myschema.sensor_data --tail 5
tsdb-tool table myschema.sensor_data --sample 3

# Show timestamp range for hypertables
tsdb-tool table myschema.sensor_data --range

Connections

# Active connections (non-idle)
tsdb-tool connections

# All connections including idle
tsdb-tool connections --all

# Connection summary with memory config
tsdb-tool connections --summary

# Filter by user, database, or state
tsdb-tool connections --filter-user appuser --filter-db mydb
tsdb-tool connections --min-duration 5

Service & Maintenance

# Check server connectivity and version
tsdb-tool service check

# Vacuum a table
tsdb-tool service vacuum my_table
tsdb-tool service vacuum my_table --full
tsdb-tool service vacuum --all

# Kill a backend process
tsdb-tool service kill 12345
tsdb-tool service kill 12345 --cancel  # cancel query only

TimescaleDB

# List hypertables
tsdb-tool ts hypertables

# Show chunks for a hypertable
tsdb-tool ts chunks myschema.sensor_data

# Compression statistics
tsdb-tool ts compression
tsdb-tool ts compression myschema.sensor_data

# Compression settings and policies
tsdb-tool ts compression-settings -s myschema

# Configure compression
tsdb-tool ts compression-set myschema.sensor_data --segmentby "device_id, sensor" --orderby "timestamp DESC"
tsdb-tool ts compression-set myschema.sensor_data --policy "4 hours"

# Compress chunks
tsdb-tool ts compress myschema.sensor_data
tsdb-tool ts compress myschema.sensor_data --chunk 11420

# Continuous aggregates
tsdb-tool ts caggs

# Retention policies
tsdb-tool ts retention

# Background jobs
tsdb-tool ts jobs
tsdb-tool ts jobs --history
tsdb-tool ts jobs --history --job 1005

Configuration

# Show resolved config with source attribution
tsdb-tool config show

# List available profiles
tsdb-tool config profiles

Output Formats

All listing commands support multiple output formats:

# Table format (default in terminal)
tsdb-tool -f table databases

# JSON format
tsdb-tool -f json databases

# Compact JSON
tsdb-tool --compact -f json databases

# CSV format (default when piped)
tsdb-tool databases | head

# CSV without header
tsdb-tool --no-header databases

Auto-detection: table format for TTY, CSV when piped.

Connection Options

Global flags (must appear before the subcommand):

tsdb-tool -H myhost -p 5432 -d mydb -U myuser query -e "SELECT 1"
tsdb-tool --dsn "postgresql://user@host/db" databases
tsdb-tool -P production table
Flag Env Var Description
-H, --host PGHOST PostgreSQL host
-p, --port PGPORT PostgreSQL port
-d, --database PGDATABASE Database name
-U, --user PGUSER User name
-W, --password PGPASSWORD Password
--dsn Connection DSN
-P, --profile SQL_PROFILE Named profile

Configuration File

Location: ~/.config/tsdb-tool/config.toml

default_timeout = 30
default_format = "table"

[profiles.local]
host = "localhost"
port = 5432
dbname = "postgres"
user = "postgres"

[profiles.production]
dsn = "postgresql://readonly@prod-db.example.com:5432/myapp?sslmode=verify-full"

[profiles.staging]
dsn = "postgresql://user@staging-db.example.com/myapp"
sslmode = "verify-full"
connect_timeout = 5

See config.example.toml for a full example.

Precedence (highest to lowest)

  1. CLI flags (--host, --port, etc.)
  2. --dsn flag
  3. Environment variables (PGHOST, PGPORT, etc.)
  4. Named profile (--profile or SQL_PROFILE)
  5. Config file defaults
  6. Built-in defaults (localhost:5432/postgres)

Exit Codes

Code Meaning
0 Success
1 General error (SQL syntax, permission denied)
2 Usage error (invalid arguments)
3 Input error (file not found, invalid parameters)
5 Network error (connection failed, authentication)
6 Timeout (query timeout, connection timeout)
7 Configuration error (malformed config, unknown profile)

Development

# Run tests
uv run pytest

# Run with coverage
uv run pytest --cov=tsdb_tool

# Lint
uv run ruff check src/

# Type check
uv run mypy src/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tsdb_tool-0.1.2.tar.gz (238.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tsdb_tool-0.1.2-py3-none-any.whl (52.4 kB view details)

Uploaded Python 3

File details

Details for the file tsdb_tool-0.1.2.tar.gz.

File metadata

  • Download URL: tsdb_tool-0.1.2.tar.gz
  • Upload date:
  • Size: 238.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.3

File hashes

Hashes for tsdb_tool-0.1.2.tar.gz
Algorithm Hash digest
SHA256 c547357c27b7854538b40d1a3651c63a3000a82877ef595ff80765a8811afa45
MD5 191de6977dd20974df7dfdc964ea46d4
BLAKE2b-256 abc559c197bdd588193eba5a37a73941604d5fdeaa8a1e5236b154c073c7642f

See more details on using hashes here.

File details

Details for the file tsdb_tool-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: tsdb_tool-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 52.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.3

File hashes

Hashes for tsdb_tool-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 00f88e91e1747e03c5b3049b87f24122f8aceea9eb11f2968138361580c45709
MD5 de8f9bc83c141ce0a08cbaaec111c678
BLAKE2b-256 dc3882e6398c01c929238c02720b0357b18d2ab5feced84d0cf968a8c32f0787

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page