You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
565 B
8 lines
565 B
|
|
SELECT (now() - pg_stat_activity.xact_start) AS ts_age, pg_stat_activity.state, (now() - pg_stat_activity.query_start) as query_age, (now() - state_change) as change_age, pg_stat_activity.datname, pg_stat_activity.pid, pg_stat_activity.usename, pg_stat_activity.waiting, pg_stat_activity.client_addr, pg_stat_activity.client_port, pg_stat_activity.query |
|
FROM pg_stat_activity |
|
WHERE |
|
((now() - pg_stat_activity.xact_start) > '00:00:00.5'::interval) |
|
-- OR ((now() - pg_stat_activity.query_start)> '00:00:00.5'::interval) |
|
ORDER BY pg_stat_activity.xact_start; |
|
|
|
|