Re: Monitoring PostgreSQL Process

Поиск
Список
Период
Сортировка
От adey
Тема Re: Monitoring PostgreSQL Process
Дата
Msg-id 1c66bda80611221602w4a2766a1l3dff7b05eedac574@mail.gmail.com
обсуждение исходный текст
Ответ на Monitoring PostgreSQL Process  ("Aaron Bono" <postgresql@aranya.com>)
Ответы Re: Monitoring PostgreSQL Process  ("Aaron Bono" <postgresql@aranya.com>)
Список pgsql-admin
The following query with the stats_command_string parameter turned on will give you some of the SQL per transaction:-
 

SELECT
 datid,
 datname as "DB Name",
 substr(procpid,1,6) as "Procpid",
 substr(usesysid,1,5) as "UseSysid",
 usename,
 current_query as "SQL",
 query_start
FROM
 pg_stat_activity
order by
 procpid;

 
On 11/22/06, Aaron Bono <postgresql@aranya.com> wrote:
I have a couple processes/connections to one of our databases that appears to be eating up most of the CPU and we are trying to determine what these processes are doing that is taking so much CPU time.

Is there a way to monitor the SQL being run for a specific connection/process?

We are using PostgreSQL 8.1.5 on CentOS Linux.

Thanks,
Aaron

--
==================================================================
   Aaron Bono
   Aranya Software Technologies, Inc.
   http://www.aranya.com
   http://codeelixir.com
==================================================================

В списке pgsql-admin по дате отправления:

Предыдущее
От: "Tomeh, Husam"
Дата:
Сообщение: Re: Monitoring PostgreSQL Process
Следующее
От: "Paul Lambert, Help Desk Team Leader, BSD, Infomedia Ltd"
Дата:
Сообщение: PGSQL manager password lost.