sensu-plugins-aws 18.1.0 → 18.2.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-rds.rb +12 -0
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 035f0f0a2734ebf234b0ce583f2f2f8445dcded05c338daf6fed19f8cdbfd228
|
|
4
|
+
data.tar.gz: 62b1c3aa175de9d5168ca40f52a4ecff68b7ae0903c9c35b85fbeffdf59bfe1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 672be9ffc6ea0c80fe1c4c62b918d716c9b0aa86c41af54dd81b4c4dd05788b283237c042cd1e12b3277da69a59ae1b3c6191daff54b69485caa6d8a5158717f
|
|
7
|
+
data.tar.gz: c92d0af59c7b9576fe574c32cd69ee3051e1741a0367f9cf2d5fa1af39dfb1c2388495e308f7ce456567279ae503c5bf8a7e730d2cdaccdc2cc5985eedb6cf65
|
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
|
+
## [18.2.0] - 2019-05-06
|
|
9
|
+
### Added
|
|
10
|
+
- check-rds.rb: added support for new `t3` and `r5` family instances (@mmitucha)
|
|
11
|
+
|
|
8
12
|
## [18.1.0] - 2019-05-06
|
|
9
13
|
### Added
|
|
10
14
|
- `check-ec2-cpu_balance.rb`: `--filter` option added to filter which instance to check. (@boutetnico)
|
|
@@ -574,7 +578,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
574
578
|
### Added
|
|
575
579
|
- initial release
|
|
576
580
|
|
|
577
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.
|
|
581
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.2.0...HEAD
|
|
582
|
+
[18.2.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.1.0...18.2.0
|
|
578
583
|
[18.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.0.0...18.1.0
|
|
579
584
|
[18.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/17.2.0...18.0.0
|
|
580
585
|
[17.2.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/17.1.0...17.2.0
|
data/bin/check-rds.rb
CHANGED
|
@@ -231,6 +231,12 @@ class CheckRDS < Sensu::Plugin::Check::CLI
|
|
|
231
231
|
'db.r4.4xlarge' => 122.0,
|
|
232
232
|
'db.r4.8xlarge' => 244.0,
|
|
233
233
|
'db.r4.16xlarge' => 488.0,
|
|
234
|
+
'db.r5.large' => 16.0,
|
|
235
|
+
'db.r5.xlarge' => 32.0,
|
|
236
|
+
'db.r5.2xlarge' => 64.0,
|
|
237
|
+
'db.r5.4xlarge' => 128.0,
|
|
238
|
+
'db.r5.12xlarge' => 384.0,
|
|
239
|
+
'db.r5.24xlarge' => 768.0,
|
|
234
240
|
'db.t1.micro' => 0.615,
|
|
235
241
|
'db.t2.micro' => 1.0,
|
|
236
242
|
'db.t2.small' => 2.0,
|
|
@@ -238,6 +244,12 @@ class CheckRDS < Sensu::Plugin::Check::CLI
|
|
|
238
244
|
'db.t2.large' => 8.0,
|
|
239
245
|
'db.t2.xlarge' => 16.0,
|
|
240
246
|
'db.t2.2xlarge' => 32.0,
|
|
247
|
+
'db.t3.micro' => 1.0,
|
|
248
|
+
'db.t3.small' => 2.0,
|
|
249
|
+
'db.t3.medium' => 4.0,
|
|
250
|
+
'db.t3.large' => 8.0,
|
|
251
|
+
'db.t3.xlarge' => 16.0,
|
|
252
|
+
'db.t3.2xlarge' => 32.0,
|
|
241
253
|
'db.x1.16xlarge' => 976.0,
|
|
242
254
|
'db.x1.32xlarge' => 1952.0,
|
|
243
255
|
'db.x1e.xlarge' => 122.0,
|