sensu-plugins-aws 6.1.0 → 6.1.1
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 +11 -1
- data/bin/check-asg-instances-created.rb +4 -2
- data/lib/sensu-plugins-aws/version.rb +1 -1
- 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: deda2bd39a86f8e6c57041c434f79e37a6b9c2e4
|
|
4
|
+
data.tar.gz: 95bdde270de14b069be0dd17e49a5285daba775e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c85225a0ea700839cad7c7e0afd6406392ad7e1634b3e589d6bc68fc6995e7120b5661734db2b5ccb8075a4c92255f99802be39acffcaa6618ea023df4d609c
|
|
7
|
+
data.tar.gz: ff38dc81f8104b832426203ba93a537871e8a577941195e1eace8442d5fac9a12db713b3178521951844dbece9f95782833d33d755f51cdcb722586ac9ec90ba
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
4
4
|
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
|
+
## [6.1.1] - 2017-07-07
|
|
8
|
+
### Added
|
|
9
|
+
- ruby 2.4 testing (@majormoses)
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- misc repo fixes (@majormoses)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- check-asg-instances-created check fails due to int and string comparison
|
|
7
16
|
|
|
8
17
|
## [6.1.0] - 2017-06-23
|
|
9
18
|
### Added
|
|
@@ -312,7 +321,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
312
321
|
### Added
|
|
313
322
|
- initial release
|
|
314
323
|
|
|
315
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.
|
|
324
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.1...HEAD
|
|
325
|
+
[6.1.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.0...6.1.1
|
|
316
326
|
[6.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.0.1...6.1.0
|
|
317
327
|
[6.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.0.0...6.0.1
|
|
318
328
|
[6.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/5.1.0...6.0.0
|
|
@@ -50,12 +50,14 @@ class CheckAsgInstanceCreated < Sensu::Plugin::Check::CLI
|
|
|
50
50
|
option :warning_limit,
|
|
51
51
|
short: '-w W',
|
|
52
52
|
long: '--warning_limit Warning Limit',
|
|
53
|
-
description: 'Warning Limit for launching and terminated instances'
|
|
53
|
+
description: 'Warning Limit for launching and terminated instances',
|
|
54
|
+
proc: proc(&:to_i)
|
|
54
55
|
|
|
55
56
|
option :critical_limit,
|
|
56
57
|
short: '-c C',
|
|
57
58
|
long: '--critical_limit Critical Limit',
|
|
58
|
-
description: 'Critical Limit for launching and terminated instances'
|
|
59
|
+
description: 'Critical Limit for launching and terminated instances',
|
|
60
|
+
proc: proc(&:to_i)
|
|
59
61
|
|
|
60
62
|
def asg
|
|
61
63
|
@asg = Aws::AutoScaling::Client.new
|
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: 6.1.
|
|
4
|
+
version: 6.1.1
|
|
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
|
+
date: 2017-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|