Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion check_postgres.pl
Original file line number Diff line number Diff line change
Expand Up @@ -6125,7 +6125,7 @@ sub check_logfile {
$SQL = q{
SELECT name, CASE WHEN length(setting)<1 THEN '?' ELSE setting END AS s
FROM pg_settings
WHERE name IN ('log_destination','log_directory','log_filename','redirect_stderr','syslog_facility')
WHERE name IN ('log_destination','log_directory','log_filename','redirect_stderr','syslog_facility','data_directory')
ORDER BY name
};

Expand Down Expand Up @@ -6171,6 +6171,10 @@ sub check_logfile {
ndie msg('logfile-stderr');
}
}
elsif ($i->{log_destination} eq 'csvlog') {
$logfile = "$i->{'data_directory'}/$i->{log_directory}/$i->{log_filename}";
$logfile =~ s/\.log$/\.csv/;
}
}

## We now have a logfile (or a template)..parse it into pieces.
Expand Down