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/).
4
4
This CHANGELOG follows the format listed [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md ) .
5
5
6
6
## [ Unreleased]
7
+
8
+ ## [ 2.3.0] - 2018-12-08
7
9
### Added
8
- - metric-postgres-statsdb.rb: Add --all-databases option.
10
+ - metric-postgres-statsdb.rb: Add --all-databases option. ( @ cyrilgdn )
9
11
10
12
## [ 2.2.2] - 2018-10-27
11
13
### Fixed
@@ -168,7 +170,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
168
170
### Added
169
171
- initial release
170
172
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
172
175
[ 2.2.2 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.1...2.2.2
173
176
[ 2.2.1 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.0...2.2.1
174
177
[ 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
68
68
default : 'postgres'
69
69
70
70
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' ,
72
72
short : '-a' ,
73
73
long : '--all-databases' ,
74
74
boolean : true ,
Original file line number Diff line number Diff line change 1
1
module SensuPluginsPostgres
2
2
module Version
3
3
MAJOR = 2
4
- MINOR = 2
5
- PATCH = 2
4
+ MINOR = 3
5
+ PATCH = 0
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments