File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
lib/sensu-plugins-postgres Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44This CHANGELOG follows the format listed [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md ) .
55
66## [ Unreleased]
7+
8+ ## [ 2.3.0] - 2018-12-08
79### Added
8- - metric-postgres-statsdb.rb: Add --all-databases option.
10+ - metric-postgres-statsdb.rb: Add --all-databases option. ( @ cyrilgdn )
911
1012## [ 2.2.2] - 2018-10-27
1113### Fixed
@@ -168,7 +170,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
168170### Added
169171- initial release
170172
171- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.2...HEAD
173+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.0...HEAD
174+ [ 2.3.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.2...2.3.0
172175[ 2.2.2 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.1...2.2.2
173176[ 2.2.1 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.0...2.2.1
174177[ 2.2.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.1.0...2.2.0
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class PostgresStatsDBMetrics < Sensu::Plugin::Metric::CLI::Graphite
6868 default : 'postgres'
6969
7070 option :all_databases ,
71- description : 'Get stats for all the databases instead of only the one we are connected on. ' ,
71+ description : 'Get stats for all available databases' ,
7272 short : '-a' ,
7373 long : '--all-databases' ,
7474 boolean : true ,
Original file line number Diff line number Diff line change 11module SensuPluginsPostgres
22 module Version
33 MAJOR = 2
4- MINOR = 2
5- PATCH = 2
4+ MINOR = 3
5+ PATCH = 0
66
77 VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
88 end
You can’t perform that action at this time.
0 commit comments