Skip to content

Commit

Permalink
Update pg_long_running_transactions.go (#1092)
Browse files Browse the repository at this point in the history
To extract time in seconds for pg_long_running_transactions_oldest_timestamp_seconds query which currently return epoch time.

Signed-off-by: Jyothi Kiran Thammana <[email protected]>
  • Loading branch information
jyothikirant-sayukth authored Dec 22, 2024
1 parent a324fe3 commit 6f36adf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions collector/pg_long_running_transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,13 @@ var (
)

longRunningTransactionsQuery = `
SELECT
COUNT(*) as transactions,
MAX(EXTRACT(EPOCH FROM clock_timestamp())) AS oldest_timestamp_seconds
FROM pg_catalog.pg_stat_activity
WHERE state is distinct from 'idle' AND query not like 'autovacuum:%'
SELECT
COUNT(*) as transactions,
MAX(EXTRACT(EPOCH FROM clock_timestamp() - pg_stat_activity.xact_start)) AS oldest_timestamp_seconds
FROM pg_catalog.pg_stat_activity
WHERE state IS DISTINCT FROM 'idle'
AND query NOT LIKE 'autovacuum:%'
AND pg_stat_activity.xact_start IS NOT NULL;
`
)

Expand Down

0 comments on commit 6f36adf

Please sign in to comment.