just run, well in mysql just need to type 'show processlist;', but in postgres you must enable two variables
to check this and other stats.
Edit your postgres.conf which should be on /var/lib/pgsql/data/postgresql.conf for *nix installations and add or change this:
stats_start_collector = true
This must be set to true for the statistics collector to be launched at all.
stats_command_string = true
This enables monitoring of the current command being executed by any server process. The statistics collector subprocess need not be running to enable this feature.
After restarting postgres the following query will show currently running queries
/etc/init.d/postgresql restart
psql -U postgres template1 -c "select * from pg_stat_activity"
only as user "postgres"
No comments:
Post a Comment