Skip to content

Instantly share code, notes, and snippets.

@source-c
Created September 22, 2022 12:43
Show Gist options
  • Save source-c/767b7fbb6d968d26a1996031de0211f6 to your computer and use it in GitHub Desktop.
Save source-c/767b7fbb6d968d26a1996031de0211f6 to your computer and use it in GitHub Desktop.
PG queries durations
SELECT pid, age(clock_timestamp(), query_start), usename, query, state
FROM pg_stat_activity
WHERE state != 'idle' AND query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment