Skip to content

Instantly share code, notes, and snippets.

@areguig
Last active March 23, 2017 12:51
Show Gist options
  • Save areguig/b53bb7aae772ef085ff1f99f4faff802 to your computer and use it in GitHub Desktop.
Save areguig/b53bb7aae772ef085ff1f99f4faff802 to your computer and use it in GitHub Desktop.
Show postgres running queries
SELECT now() - query_start as "runtime",client_addr, waiting, state, query
FROM pg_stat_activity
ORDER BY runtime DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment