sensu-plugins-aws 10.0.1 → 10.0.2

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: ec99e551f5ae12c1b51f244a2f3dd5c176c1dd5fc0220034821dc60a55d19fcd
4
- data.tar.gz: 54774ce564b879530c6e618c66bd7163580d798ee4aebe8f67e297bbf2ecf4b1
3
+ metadata.gz: ffc8970beca5e82f16654912ba292c00ac3b41630d2c760b9e58b8997a0123e0
4
+ data.tar.gz: 92513710dc37d66eadec1f96db1bf1311a3abe99b36f1e5cb150aae763489edb
5
5
  SHA512:
6
- metadata.gz: 7fceaaa1355bb1aee5b3a5db6fbb7762ed39fd52e48ca5e31a9966f9cb13ff899884968f69d1cbfa109540a7c1f09e2300bc1d4ebd831e259abbc452f58acab9
7
- data.tar.gz: 2cbe7239e1336d71c3c838d34d439c28a4ef749bbddcf4b3ed0136495c713f734df03e070caf91482a1fa23f7e91f4a8297e600a5a48863353de9d3b136a2a12
6
+ metadata.gz: 0c66f41a60c18e489994b213ec6510edb6590d2761ec89d8056f9feac1cafca676a447a46aac7e645853c62588a8c157b4973635e042f9cd60ae2b92dcb12dc3
7
+ data.tar.gz: bdc877b84bec60cc0d4e8a79380d4472641b5e4ddcdd34f15ffb3a26d421a1fa47cd1667c5e8beb0e3b0544a90ea37535ca6bf9f3b2a2bc531d546a333f16c3f
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
+ ## [10.0.2] - 2017-12-02
9
+ ### Fixed
10
+ - check-beanstalk-elb-metric.rb, check-cloudwatch-metric.rb, check-cloudwatch-composite-metric.rb: fixed incorrect help message (@arthurlogilab)
11
+
8
12
  ## [10.0.1] - 2017-11-18
9
13
  ### Added
10
14
  - check-rds.rb: Add R4 instances (@enokawa)
@@ -398,7 +402,8 @@ WARNING: This release contains major breaking changes that will impact all user
398
402
  ### Added
399
403
  - initial release
400
404
 
401
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.1...HEAD
405
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.2...HEAD
406
+ [10.0.2]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.1...10.0.2
402
407
  [10.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.0...10.0.1
403
408
  [10.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.1...10.0.0
404
409
  [9.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.0...9.0.1
@@ -77,7 +77,7 @@ class BeanstalkELBCheck < Sensu::Plugin::Check::CLI
77
77
  required: true
78
78
 
79
79
  option :warning,
80
- description: 'Trigger a critical when value is over VALUE',
80
+ description: 'Trigger a warning when value is over VALUE',
81
81
  short: '-w VALUE',
82
82
  long: '--warning VALUE',
83
83
  proc: proc(&:to_f)
@@ -92,7 +92,7 @@ class CloudWatchCompositeMetricCheck < Sensu::Plugin::Check::CLI
92
92
  required: true
93
93
 
94
94
  option :warning,
95
- description: 'Trigger a critical when value is over VALUE',
95
+ description: 'Trigger a warning when value is over VALUE',
96
96
  short: '-w VALUE',
97
97
  long: '--warning VALUE',
98
98
  proc: proc(&:to_f)
@@ -83,7 +83,7 @@ class CloudWatchMetricCheck < Sensu::Plugin::Check::CLI
83
83
  required: true
84
84
 
85
85
  option :warning,
86
- description: 'Trigger a critical when value is over VALUE',
86
+ description: 'Trigger a warning when value is over VALUE',
87
87
  short: '-w VALUE',
88
88
  long: '--warning VALUE',
89
89
  proc: proc(&:to_f)
@@ -2,7 +2,7 @@ module SensuPluginsAWS
2
2
  module Version
3
3
  MAJOR = 10
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 2
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.0.1
4
+ version: 10.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-18 00:00:00.000000000 Z
11
+ date: 2017-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -445,7 +445,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
445
445
  version: '0'
446
446
  requirements: []
447
447
  rubyforge_project:
448
- rubygems_version: 2.7.2
448
+ rubygems_version: 2.7.3
449
449
  signing_key:
450
450
  specification_version: 4
451
451
  summary: Sensu plugins for working with an AWS environment