哔哔one
--当前总共正在使用的连接数postgres=# select count(1) from pg_stat_activity; --显示系统允许的最大连接数postgres=# show max_connections; --显示系统保留的用户数postgres=# show superuser_reserved_connections ; --按照用户分组查看select usename, count(*) from pg_stat_activity group by usename order by count(*) desc;