sensu-plugins-aws 9.0.0 → 9.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/bin/metrics-billing.rb +1 -1
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2699fc4c1516d96d17ab77403d5e075a31004085
|
|
4
|
+
data.tar.gz: 8ceba90a9f7520263f2c7687244c6e1ff2440feb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/bin/metrics-billing.rb
CHANGED
|
@@ -35,7 +35,7 @@ class BillingMetrics < Sensu::Plugin::Metric::CLI::Graphite
|
|
|
35
35
|
include Common
|
|
36
36
|
|
|
37
37
|
option :services_name,
|
|
38
|
-
short: '-
|
|
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'
|