Created
January 23, 2021 08:03
-
-
Save StevenJL/e830cc24c04f185fcdaf68c481e3fc9f to your computer and use it in GitHub Desktop.
How many queries running longer
This file contains hidden or 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 count(*) | |
| FROM pg_stat_activity | |
| WHERE state != 'idle' | |
| AND query_start < (NOW() - INTERVAL '60 seconds'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment