Created
August 1, 2018 10:15
-
-
Save grantpullen/6f1f703a0037ad9e7481ab424c3c8647 to your computer and use it in GitHub Desktop.
Postgres runtime stats, active connections
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
-- numbackends | |
SELECT datname, numbackends FROM pg_stat_database where numbackends > 0; | |
SELECT * FROM pg_stat_activity WHERE backend_type = 'client backend'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment