From 264458c4e12b67c99613795167a38678150e2588 Mon Sep 17 00:00:00 2001 From: Michael Banck Date: Wed, 4 Oct 2023 17:23:11 +0200 Subject: [PATCH] Fix check_archive_ready for version 10 and above This fixes issue #150. --- check_postgres.pl | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/check_postgres.pl b/check_postgres.pl index c3f1409..1de0bc9 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -9423,8 +9423,17 @@ sub check_wal_files { ## Figure out where the pg_xlog directory is $SQL = qq{SELECT count(*) AS count FROM $lsfunc($lsargs) WHERE $lsfunc ~ E'^[0-9A-F]{24}$extrabit\$'}; ## no critic (RequireInterpolationOfMetachars) - my $SQL10 = $opt{lsfunc} ? $SQL : - qq{SELECT count(*) AS count FROM pg_ls_waldir() WHERE name ~ E'^[0-9A-F]{24}$extrabit\$'}; ## no critic (RequireInterpolationOfMetachars) + my $SQL10 = ""; + + if ($extrabit) { + # check_archive_ready + $SQL10 = $opt{lsfunc} ? $SQL : + qq{SELECT count(*) AS count FROM pg_ls_archive_statusdir() WHERE name ~ E'^[0-9A-F]{24}$extrabit\$'}; ## no critic (RequireInterpolationOfMetachars) + } else { + # check_wal_files + $SQL10 = $opt{lsfunc} ? $SQL : + qq{SELECT count(*) AS count FROM pg_ls_waldir() WHERE name ~ E'^[0-9A-F]{24}\$'}; ## no critic (RequireInterpolationOfMetachars) + } my $info = run_command($SQL, {regex => qr[\d], version => [">9.6 $SQL10"] });