-1

Is there any tool to find the number of open postgresql connection in the application.

Thush
  • 975
  • 3
  • 8
  • 11
  • 3
    http://stackoverflow.com/questions/5267715/whats-the-correct-query-for-getting-the-current-number-of-connections-in-a-postg – ntalbs Sep 12 '14 at 05:04

1 Answers1

1

Try this

select * from pg_stat_activity;

Sajeev
  • 783
  • 3
  • 14
  • 46