diff options
author | Greg Sabino Mullane | 2011-06-30 02:53:57 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2011-06-30 02:53:57 +0000 |
commit | 2f8c975fb0f82ab179cf44a6713948e07336ca97 (patch) | |
tree | 80bab5559c86c104a0e79c404432badda8e32063 /check_postgres.pl | |
parent | a89adb9b7120698b5284295e3f93c40786d79009 (diff) |
Bump to 2.18.0.
Update Changes
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 37 |
1 files changed, 34 insertions, 3 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 6dc8c331e..4c204b19f 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -30,7 +30,7 @@ $Data::Dumper::Varname = 'POSTGRES'; $Data::Dumper::Indent = 2; $Data::Dumper::Useqq = 1; -our $VERSION = '2.17.1'; +our $VERSION = '2.18.0'; use vars qw/ %opt $PSQL $res $COM $SQL $db /; @@ -7474,7 +7474,7 @@ sub check_wal_files { B<check_postgres.pl> - a Postgres monitoring script for Nagios, MRTG, Cacti, and others -This documents describes check_postgres.pl version 2.17.0 +This documents describes check_postgres.pl version 2.18.0 =head1 SYNOPSIS @@ -9223,9 +9223,32 @@ Items not specifically attributed are by Greg Sabino Mullane. =item B<Version 2.18.0> + Redo the same_schema action. Use new --filter argument for all filtering. + Allow comparisons between any number of databases. + Remove the db*2 arguments. + Allow comparison of the same db over time. + Swap db1 and db2 if the slave is 1 for the hot standby check (David E. Wheeler) -=item B<Version 2.17.0> + Fix ORDER BY in the last vacuum/analyze action (Nicolas Thauvin) + + Fix check_hot_standby_delay perfdata output (Nicolas Thauvin) + + Look in the correct place for the .ready files with the archive_ready action ((Nicolas Thauvin) + + New action: commitratio (Guillaume Lelarge) + + New action: hitratio (Guillaume Lelarge) + + Make sure --action overrides the symlink naming trick. + + Fix warning when client_port set to empty string (bug #79) + + Account for "empty row" in -x output (i.e. source of functions). + + Fix some incorrectly named data fields (Andy Lester) + + Expand the number of pgbouncer actions (Ruslan Kabalin) Give detailed information and refactor txn_idle, txn_time, and query_time (Per request from bug #61) @@ -9236,12 +9259,16 @@ Items not specifically attributed are by Greg Sabino Mullane. Support non-standard version strings in the bloat check. (Michel Sijmons and Gurjeet Singh, bug #66) + Do not show excluded databases in some output (Ruslan Kabalin) + Allow "and", "or" inside arguments (David E. Wheeler) Add the "new_version_box" action. Fix psql version regex (Peter Eisentraut, bug #69) + Add the --assume-standby-mode option (Ruslan Kabalin) + Standardize and clean up all perfdata output (bug #52) Exclude "idle in transaction" from the query_time check (bug #43) @@ -9252,6 +9279,10 @@ Items not specifically attributed are by Greg Sabino Mullane. Handle undef percents in check_fsm_relations (Andy Lester) + Fix MRTG for last vacuum and last_analyze actions. + +=item B<Version 2.17.0> no public release + =item B<Version 2.16.0> January 20, 2011 Add new action 'hot_standby_delay' (Nicolas Thauvin) |