sensu-plugins-aws 11.6.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0a7cfda7cb6bd01676855165c26cb958e6519942a36011ae0284fd492b1c447
4
- data.tar.gz: ea3b4cd611d683ee68ce85ae4501ab5a6134a4986ee865c6ead7e589a6447596
3
+ metadata.gz: 31017c7ec95b3c63fff718e67a620586aff45b234b9d498f14e48862e3362df3
4
+ data.tar.gz: 8b87f31b8be52d80bbb42a7159feeefe7cd69fd43588d3a993c825c08ee7bcab
5
5
  SHA512:
6
- metadata.gz: 6f15a6b096a8df0fdde39a4ea477deea6784dd53ae51fc81db366b79f5a5f04cfa21079d9b58e0c58cb4a61151578a8b3897493c27486bdb69bfd700c5cd093c
7
- data.tar.gz: 1790f97ad255ac62ba382f157dba8a4e59000e008168f388fe78c06bd22dc46283d8233c3043081dabddd0b5cf5c8ce81dc925db65cf95df42e11ca688c29d20
6
+ metadata.gz: 4472bf2cee558b964d29815e80f37ea436a15439fb8e7c9ae45bc9376cf798324efe541b82deba3c5dbcf9f11d4ba565695b22398b7223976d4836f1df623051
7
+ data.tar.gz: 90de7452049ff5025663ba86e71a78ddcab07acbe9a592576b4d0d6a4b30181c6f5afc054fe94c6c72e2d2972691907892f81ec8de3d8156d29b2da10cbd4ca6
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [12.0.0] - 2018-06-21
9
+ ### Breaking Changes
10
+ - `check-ebs-burst-limit.rb`: Fixed period to pass to config from 60 to 120 so as to not have empty values returned sometimes (@wari)
11
+
8
12
  ## [11.6.0] - 2018-06-21
9
13
  ### Added
10
14
  - metrics-rds.rb: adding option `--fetch-age` to allow getting metrics in the past (@multani)
@@ -486,7 +490,8 @@ WARNING: This release contains major breaking changes that will impact all user
486
490
  ### Added
487
491
  - initial release
488
492
 
489
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.6.0...HEAD
493
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/12.0.0...HEAD
494
+ [12.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.6.0...12.0.0
490
495
  [11.6.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.5.1...11.6.0
491
496
  [11.5.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.5.0...11.5.1
492
497
  [11.5.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.4.2...11.5.0
@@ -93,7 +93,7 @@ class CheckEbsBurstLimit < Sensu::Plugin::Check::CLI
93
93
  config[:metric_name] = 'BurstBalance'
94
94
  config[:namespace] = 'AWS/EBS'
95
95
  config[:statistics] = 'Average'
96
- config[:period] = 60
96
+ config[:period] = 120
97
97
  crit = false
98
98
  should_warn = false
99
99
 
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsAWS
2
2
  module Version
3
- MAJOR = 11
4
- MINOR = 6
3
+ MAJOR = 12
4
+ MINOR = 0
5
5
  PATCH = 0
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.6.0
4
+ version: 12.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors