I want to profile (keep an Eye on) all the activities that goes on in a Database which is in PostgreSQL.
Is there any such utility which will help me do this?
|
I want to profile (keep an Eye on) all the activities that goes on in a Database which is in PostgreSQL. Is there any such utility which will help me do this? |
||||
|
|
|
For "keeping an eye", I use pgtop, a program which deliberately mimics Unix 'top' command. |
|||||
|
|
"Keep an eye on" and "profile" are two quite different tasks in my view. For profiling (not a live view on what's going on right now, but to see which queries take most time etc), check out pgFouine: http://pgfouine.projects.postgresql.org/ This will let you see which queries are resource intensive, and take appropriate action: Add missing indexes, rewrite queries using other techiques etc. |
||||
|
|
|
Well, if you're looking at what's going on, regarding selects, updates, deletes, and so on, there are a few tables in the There also is the I've hacked together four munin plugins that uses the user_tables and user_indexes, they're available there |
|||||||
|
|
Have a look at Nagios-Plugin script or check_postgres.pl |
||||
|
|