diff options
author | Greg Sabino Mullane | 2013-06-25 02:34:37 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2013-06-25 02:34:37 +0000 |
commit | 86a6b8927c2d7aa48be28dbf5cde9842615f0888 (patch) | |
tree | ebfa205375a6956c1f7342803392a6634ee50888 | |
parent | b0939cd7914c3761685bf351b4bc238ca32e419c (diff) |
Bump version to 2.20.1; update docs
-rw-r--r-- | META.yml | 4 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rwxr-xr-x | check_postgres.pl | 4 | ||||
-rw-r--r-- | check_postgres.pl.html | 32 |
4 files changed, 35 insertions, 7 deletions
@@ -1,6 +1,6 @@ --- #YAML:1.0 name : check_postgres.pl -version : 2.20.0 +version : 2.20.1 abstract : Postgres monitoring script author: - Greg Sabino Mullane <[email protected]> @@ -30,7 +30,7 @@ recommends: provides: check_postgres: file : check_postgres.pl - version : 2.20.0 + version : 2.20.1 keywords: - Postgres diff --git a/Makefile.PL b/Makefile.PL index d3db91d2a..e3b5bea75 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,7 +6,7 @@ use strict; use warnings; use 5.006001; -my $VERSION = '2.20.0'; +my $VERSION = '2.20.1'; if ($VERSION =~ /_/) { print "WARNING! This is a test version ($VERSION) and should not be used in production!\n"; diff --git a/check_postgres.pl b/check_postgres.pl index 1efd4231d..72a724be0 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -32,7 +32,7 @@ $Data::Dumper::Useqq = 1; binmode STDOUT, ':utf8'; -our $VERSION = '2.20.0'; +our $VERSION = '2.20.1'; use vars qw/ %opt $PGBINDIR $PSQL $res $COM $SQL $db /; @@ -7927,7 +7927,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.20.0 +This documents describes check_postgres.pl version 2.20.1 =head1 SYNOPSIS diff --git a/check_postgres.pl.html b/check_postgres.pl.html index ec2a7489b..afd880028 100644 --- a/check_postgres.pl.html +++ b/check_postgres.pl.html @@ -123,7 +123,7 @@ <hr /> <h1><a name="name">NAME</a></h1> <p><strong>check_postgres.pl</strong> - a Postgres monitoring script for Nagios, MRTG, Cacti, and others</p> -<p>This documents describes check_postgres.pl version 2.20.0</p> +<p>This documents describes check_postgres.pl version 2.20.1</p> <p> </p> <hr /> @@ -1793,6 +1793,31 @@ feature requests, and commit notices, send email to <a href="mailto:check_postgr <h1><a name="history">HISTORY</a></h1> <p>Items not specifically attributed are by GSM (Greg Sabino Mullane).</p> <dl> +<dt><strong><a name="version_2_20_1" class="item"><strong>Version 2.20.1</strong></a></strong></dt> + +<dd> +<pre> + Make connection check failures return CRITICAL not UNKNOWN + (Dominic Hargreaves)</pre> +<pre> + Fix --reverse option when using string comparisons in custom queries + (Nathaniel Waisbrot)</pre> +<pre> + Compute correct 'totalwastedbytes' in the bloat query + (Michael Renner)</pre> +<pre> + Do not use pg_stats "inherited" column in bloat query, if the + database is 8.4 or older. (Greg Sabino Mullane, per bug 121)</pre> +<pre> + Remove host reordering in hot_standby_delay check + (Josh Williams, with help from Jacobo Blasco)</pre> +<pre> + Better output for the "simple" flag + (Greg Sabino Mullane)</pre> +<pre> + Force same_schema to ignore the 'relallvisible' column + (Greg Sabino Mullane)</pre> +</dd> <dt><strong><a name="version_2_20_0_march_13_2013" class="item"><strong>Version 2.20.0</strong> March 13, 2013</a></strong></dt> <dd> @@ -1802,6 +1827,9 @@ feature requests, and commit notices, send email to <a href="mailto:check_postgr Force STDOUT to use utf8 for proper output (Greg Sabino Mullane; reported by Emmanuel Lesouef)</pre> <pre> + Fixes for Postgres 9.2: new pg_stat_activity view, + and use pg_tablespace_location, (Josh Williams)</pre> +<pre> Allow for spaces in item lists when doing same_schema.</pre> <pre> Allow txn_idle to work again for < 8.3 servers by switching to query_time.</pre> @@ -1834,7 +1862,7 @@ feature requests, and commit notices, send email to <a href="mailto:check_postgr <pre> Improve settings_checksum and checkpoint tests (Cédric Villemain)</pre> <pre> - Do no do an inner join to pg_user when checking database size + Do not do an inner join to pg_user when checking database size (Greg Sabino Mullane; reported by Emmanuel Lesouef)</pre> <pre> Use the full path when getting sequence information for same_schema. |