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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54838ff66b0e5849220a8b08d1b76ec644b68407eca3d01b6bff2831023ccd7f
4
- data.tar.gz: f11e57b9e4a804fba44694711fc0985f18b00ba10e4350ed576b53490787f304
3
+ metadata.gz: 035f0f0a2734ebf234b0ce583f2f2f8445dcded05c338daf6fed19f8cdbfd228
4
+ data.tar.gz: 62b1c3aa175de9d5168ca40f52a4ecff68b7ae0903c9c35b85fbeffdf59bfe1f
5
5
  SHA512:
6
- metadata.gz: 353c9b344ed3940c55144ab907b987fc7c446810199a0ec9656f557d44d2a362c706d60112822afdcea5b3459d0fc839155f021d7244169b83845f0c5df8f967
7
- data.tar.gz: 1d4ca6e7c132ae96d80935babfb02e9f4016586d01359ebf8ee550c2fcd5eabd44fa43561aa2a4a6a134f2d317acc5585fc9ffd47d72b19a8c5646ea91905256
6
+ metadata.gz: 672be9ffc6ea0c80fe1c4c62b918d716c9b0aa86c41af54dd81b4c4dd05788b283237c042cd1e12b3277da69a59ae1b3c6191daff54b69485caa6d8a5158717f
7
+ data.tar.gz: c92d0af59c7b9576fe574c32cd69ee3051e1741a0367f9cf2d5fa1af39dfb1c2388495e308f7ce456567279ae503c5bf8a7e730d2cdaccdc2cc5985eedb6cf65
@@ -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.1.0...HEAD
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
@@ -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,
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsAWS
2
2
  module Version
3
3
  MAJOR = 18
4
- MINOR = 1
4
+ MINOR = 2
5
5
  PATCH = 0
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 18.1.0
4
+ version: 18.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors