sensu-plugins-aws 7.1.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/check-beanstalk-elb-metric.rb +1 -1
- data/bin/check-cloudwatch-metric.rb +1 -1
- data/lib/sensu-plugins-aws/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d910f32661d096968c169850cc1e4152e26ba551
|
|
4
|
+
data.tar.gz: ab4e699cff566384ea3d23f3b63c6bfca3d4f2e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31476cd9c8ea48ec1ffbf4ba175939368efdc3bd580a9dcc3c52929e9e48fee66d233a02de0d66cbeb6f323f694b068de01a710945fabe006ddb82f249c5c754
|
|
7
|
+
data.tar.gz: e354d8bfd167f4a75b397073afda995a2f416233bd7b7f36b5e0323e063b148137a9273affdef026f5d11060d02b429d27c98a0177cf009acdf99f9e92ff2dd0
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [8.0.0] - 2017-08-20
|
|
9
|
+
### Breaking Changes
|
|
10
|
+
- check-beanstalk-elb-metric.rb and check-cloudwatch-metric.rb: `--opertor` flag was a typo, please use `--operator` now. (@guikcd)
|
|
11
|
+
|
|
8
12
|
## [7.1.0] - 2017-08-14
|
|
9
13
|
### Added
|
|
10
14
|
- Add `check-alb-target-group-health.rb` that checks the health of ALB target groups (@eheydrick)
|
|
@@ -348,7 +352,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
348
352
|
### Added
|
|
349
353
|
- initial release
|
|
350
354
|
|
|
351
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/
|
|
355
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.0.0...HEAD
|
|
356
|
+
[8.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.1.0...8.0.0
|
|
352
357
|
[7.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.1...7.1.0
|
|
353
358
|
[7.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.0...7.0.1
|
|
354
359
|
[7.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.3.0...7.0.0
|
|
@@ -85,7 +85,7 @@ class BeanstalkELBCheck < Sensu::Plugin::Check::CLI
|
|
|
85
85
|
option :compare,
|
|
86
86
|
description: 'Comparision operator for threshold: equal, not, greater, less',
|
|
87
87
|
short: '-o OPERATION',
|
|
88
|
-
long: '--
|
|
88
|
+
long: '--operator OPERATION',
|
|
89
89
|
default: 'greater'
|
|
90
90
|
|
|
91
91
|
option :no_data_ok,
|
|
@@ -91,7 +91,7 @@ class CloudWatchMetricCheck < Sensu::Plugin::Check::CLI
|
|
|
91
91
|
option :compare,
|
|
92
92
|
description: 'Comparision operator for threshold: equal, not, greater, less',
|
|
93
93
|
short: '-o OPERATION',
|
|
94
|
-
long: '--
|
|
94
|
+
long: '--operator OPERATION',
|
|
95
95
|
default: 'greater'
|
|
96
96
|
|
|
97
97
|
option :no_data_ok,
|
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:
|
|
4
|
+
version: 8.0.0
|
|
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-08-
|
|
11
|
+
date: 2017-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|