sensu-plugins-aws 10.0.0 → 10.0.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 +5 -5
- data/CHANGELOG.md +6 -1
- data/bin/check-ecs-service-health.rb +4 -0
- data/bin/check-rds.rb +6 -0
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ec99e551f5ae12c1b51f244a2f3dd5c176c1dd5fc0220034821dc60a55d19fcd
|
|
4
|
+
data.tar.gz: 54774ce564b879530c6e618c66bd7163580d798ee4aebe8f67e297bbf2ecf4b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fceaaa1355bb1aee5b3a5db6fbb7762ed39fd52e48ca5e31a9966f9cb13ff899884968f69d1cbfa109540a7c1f09e2300bc1d4ebd831e259abbc452f58acab9
|
|
7
|
+
data.tar.gz: 2cbe7239e1336d71c3c838d34d439c28a4ef749bbddcf4b3ed0136495c713f734df03e070caf91482a1fa23f7e91f4a8297e600a5a48863353de9d3b136a2a12
|
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.1] - 2017-11-18
|
|
9
|
+
### Added
|
|
10
|
+
- check-rds.rb: Add R4 instances (@enokawa)
|
|
11
|
+
|
|
8
12
|
## [10.0.0] - 2017-10-24
|
|
9
13
|
### Breaking Changes
|
|
10
14
|
- handler-ses.rb, handler-sns.rb: Update to AWS-SDK v2. With the update to AWS-SDK v2 these handlers no longer take `access_key`, `secret_key`, or `use_ami_role` settings. Authentication should be configured per [here](https://github.com/sensu-plugins/sensu-plugins-aws/blob/master/README.md#authentication). (@eheydrick)
|
|
@@ -394,7 +398,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
394
398
|
### Added
|
|
395
399
|
- initial release
|
|
396
400
|
|
|
397
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.
|
|
401
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.1...HEAD
|
|
402
|
+
[10.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.0...10.0.1
|
|
398
403
|
[10.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.1...10.0.0
|
|
399
404
|
[9.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.0...9.0.1
|
|
400
405
|
[9.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.3.1...9.0.0
|
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
#
|
|
28
28
|
# NOTES:
|
|
29
29
|
#
|
|
30
|
+
# MULTIPLE CLUSTERS/SERVICES AUTOMATION
|
|
31
|
+
# Create multiple clusters/services with these scripts: https://github.com/ay-b/ecs-service-check-autocreate
|
|
32
|
+
# Don't forget to edit template file
|
|
33
|
+
#
|
|
30
34
|
# LICENSE:
|
|
31
35
|
# Norm MacLennan <nmaclennan@cimpress.com>
|
|
32
36
|
# Released under the same terms as Sensu (the MIT license); see LICENSE
|
data/bin/check-rds.rb
CHANGED
|
@@ -218,6 +218,12 @@ class CheckRDS < Sensu::Plugin::Check::CLI
|
|
|
218
218
|
'db.r3.2xlarge' => 61.0,
|
|
219
219
|
'db.r3.4xlarge' => 122.0,
|
|
220
220
|
'db.r3.8xlarge' => 244.0,
|
|
221
|
+
'db.r4.large' => 15.0,
|
|
222
|
+
'db.r4.xlarge' => 30.5,
|
|
223
|
+
'db.r4.2xlarge' => 61.0,
|
|
224
|
+
'db.r4.4xlarge' => 122.0,
|
|
225
|
+
'db.r4.8xlarge' => 244.0,
|
|
226
|
+
'db.r4.16xlarge' => 488.0,
|
|
221
227
|
'db.t1.micro' => 0.615,
|
|
222
228
|
'db.t2.micro' => 1,
|
|
223
229
|
'db.t2.small' => 2,
|
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.
|
|
4
|
+
version: 10.0.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-11-18 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.
|
|
448
|
+
rubygems_version: 2.7.2
|
|
449
449
|
signing_key:
|
|
450
450
|
specification_version: 4
|
|
451
451
|
summary: Sensu plugins for working with an AWS environment
|