sensu-plugins-aws 9.0.0 → 9.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d9c9a5b05f0eceeb66ab977506327e6016be83d6
4
- data.tar.gz: eb220191ac04bbd05993e433b8d074395fef0655
3
+ metadata.gz: 2699fc4c1516d96d17ab77403d5e075a31004085
4
+ data.tar.gz: 8ceba90a9f7520263f2c7687244c6e1ff2440feb
5
5
  SHA512:
6
- metadata.gz: 5e911db3dc5e23437a8c9cfd5b597a8474163de76cd63a369acddee9a119bae38f8ac120498c1aa5cd7dcd5430cd61484ca22c2ae5e51514649bfb7883f04db4
7
- data.tar.gz: 51cf5702327ff35954abd5f679fac936bdd34ac0a83de53ada5ce4dab7d306f8ad50aaf74d2f5e73d5eec14606827971da06894152cdbef425d37882bea7f3cd
6
+ metadata.gz: 4271137f66f70f6a6b42a2e83a93f3d82333e94f3a1346d41a79ae8744e008ee156d2baf5f8c58479eed55df439b5f20a9910c445401b1ff04d41f17290f8d40
7
+ data.tar.gz: b69bb4b2a860fe2adf24caa6f2e1815b960c21be8339c1fa54b170fdced41e53b365fa3fc812d63cd363a88493d523d08144324a3d7f644edecb6a8c4035f07c
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
+ ## [9.0.1] - 2017-10-17
9
+ ### Fixed
10
+ - metrics-billing.rb: replace `-s` with `-S` for services definition to prevent conflict with scheme option (@boutetnico)
11
+
8
12
  ## [9.0.0] - 2017-10-16
9
13
  ### Breaking Changes
10
14
  - metrics-sqs.rb, check-elb-certs.rb, check-elb-nodes.rb, check-elb-health-sdk.rb, metrics-ec2-count.rb: Update to AWS-SDK v2.
@@ -384,6 +388,7 @@ WARNING: This release contains major breaking changes that will impact all user
384
388
  - initial release
385
389
 
386
390
  [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.0...HEAD
391
+ [9.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/9.0.0...9.0.1
387
392
  [9.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.3.1...9.0.0
388
393
  [8.3.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.3.0...8.3.1
389
394
  [8.3.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.2.0...8.3.0
@@ -35,7 +35,7 @@ class BillingMetrics < Sensu::Plugin::Metric::CLI::Graphite
35
35
  include Common
36
36
 
37
37
  option :services_name,
38
- short: '-s SERVICES_NAME',
38
+ short: '-S SERVICES_NAME',
39
39
  long: '--services-name SERVICES_NAME',
40
40
  description: 'The name of the AWS service (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/billing-metricscollected.html)',
41
41
  default: 'AmazonEC2,AWSDataTransfer'
@@ -2,7 +2,7 @@ module SensuPluginsAWS
2
2
  module Version
3
3
  MAJOR = 9
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
8
8
  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: 9.0.0
4
+ version: 9.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors