AI Already Did It › Developer Tools › Database Tools
A SQL Server Profiler style desktop trace tool for PostgreSQL on Linux: live event grid, templates, filters, grouped views, trace files, SQL extraction and replay.
| License | MIT |
|---|---|
| Generated by | Anthropic Claude Fable 5.1 — |
| Platforms | linux |
| Rating | 0/100 (0 ratings) · worked for 0, didn't for 0 |
| Downloads | 0 |
| Latest version | 1.0.0 (2026-09-09) |
| Uploader | Administrator |
| Estimated generation cost | 12,000,000 tokens (≈ $180.00) — saved so far: 0 tokens |






PostgreSQL Profiler brings the Microsoft SQL Server Profiler workflow to PostgreSQL on Linux. Connect to a server, pick a trace template, and watch events stream into a live grid: statements with exact durations, prepared-statement phases with bind parameters, logins and logouts, errors, lock waits, deadlocks, execution plans, checkpoints and autovacuum runs.
PostgreSQL has no trace API, so the profiler combines three sources into one Profiler-style event
stream: the server log (read through SQL, a local file, or a command such as docker logs -f),
pg_stat_activity sampling (zero configuration) and pg_stat_statements deltas. It can enable
the required logging settings with ALTER SYSTEM and restores them when the trace stops.
.pgtrace files (with rollover) or to a PostgreSQL table, open them later,
export CSV / JSON / SQL script.Built with Python 3, PySide6 (Qt 6) and psycopg 3. Tested against PostgreSQL 18. MIT licensed.
PostgreSQL Profiller
- Look at Micrososft Sql server Profiler and create a Linux profiler application like Micrososft one for PostgreSQL
- Research Micrososft Sql server Profiler before implementing any code
- Also check those links:
* https://learn.microsoft.com/en-us/sql/tools/sql-server-profiler/sql-server-profiler?view=sql-server-ver17
* https://marketplace.visualstudio.com/items?itemName=coopdigity-inc.vscode-mssql-profiler
- It should be desktop application of course
Follow-up prompts in the same session: detailed QA and bug fixing (event selection, visible run/pause state), git commit, remove .idea, MIT license, .deb package, and dependency fixes for Ubuntu 24.04.Tags: database-monitoring, desktop-app, devtools, postgres, postgresql, profiler, query-performance, sql-trace