Fixup new pg_stats_statements query (#876)

Fix all renames of `total_time` to `total_exec_time`.

Fixes: https://github.com/prometheus-community/postgres_exporter/issues/502

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
Ben Kochie 2023-07-25 22:36:51 +02:00 committed by GitHub
parent f9277b04b7
commit 716ac23f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -105,9 +105,9 @@ var (
JOIN pg_database
ON pg_database.oid = pg_stat_statements.dbid
WHERE
total_time > (
total_exec_time > (
SELECT percentile_cont(0.1)
WITHIN GROUP (ORDER BY total_time)
WITHIN GROUP (ORDER BY total_exec_time)
FROM pg_stat_statements
)
ORDER BY seconds_total DESC