–当前总共正在使用的连接数
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;
转载自:postgres数据库最大连接数
参考点击打开链接