Created
September 13, 2019 09:06
-
-
Save unavailabl3/62471575076bbaa2b3433f9bb03cf328 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
pid, | |
now() - pg_stat_activity.query_start AS duration, | |
query, | |
state | |
FROM pg_stat_activity | |
WHERE (now() - pg_stat_activity.query_start) > interval '5 minutes'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment