sensu-plugins-aws 2.4.2 → 2.4.3
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 +8 -8
- data/CHANGELOG.md +6 -2
- data/bin/check-ses-statistics.rb +1 -1
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
M2RhODFhMWFkNTc2NTBjMDdjN2QxNWIyNWUzMjk0ZmJmYTE4N2MzNA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ODJlNWMzNGRkZGQzMzllZDYwNWU5NTIzYmRhMDljZjg1MmZmN2Y4Mw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NmJhNzY3MDY4MzZhZDI4OTczODM1ODAwMjg0NWVhNTI0MTBjNDIwMDM1ZjEx
|
|
10
|
+
YWU3YmMzN2UwYmU1MDNiMDNmYzcxYzg2NTBhZjgwNmU3OGZiY2Q1MzBiMmFl
|
|
11
|
+
NzY5ZjI2Mzk4MmYyMjk2YmJlYzFkNjIxOWQxMzQwYjVlNmFjYTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTlkYmVkODUzMjc0NjAyMjgzZjAwODU3OTk0ZGYyNTg1ZDExYWYzNWYxODEy
|
|
14
|
+
NmQ2MDY2ZDJhYTExZjU5NzBhNzhjNzBjZGUxMzk0Y2Y2MzYxOTZjNmVmOGFm
|
|
15
|
+
YzlmMzVjNzA2MTU2NzljZTllNzk3NzgyMjY1NjlhMmRmMTdkMjE=
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.4.3] - 2016-04-13
|
|
9
|
+
- check-ses-statistics.rb: fix variable
|
|
10
|
+
|
|
8
11
|
## [2.4.2] - 2016-04-13
|
|
9
12
|
### Fixed
|
|
10
13
|
- check-ses-statistics.rb, check-emr-steps.rb: fix requires
|
|
@@ -171,8 +174,9 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
171
174
|
### Added
|
|
172
175
|
- initial release
|
|
173
176
|
|
|
174
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/2.4.
|
|
175
|
-
[2.4.
|
|
177
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/2.4.3...HEAD
|
|
178
|
+
[2.4.3]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/v2.4.2...2.4.3
|
|
179
|
+
[2.4.2]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/v2.4.1...2.4.2
|
|
176
180
|
[2.4.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/v2.4.0...2.4.1
|
|
177
181
|
[2.4.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/v2.3.0...2.4.0
|
|
178
182
|
[2.3.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/v2.2.0...2.3.0
|
data/bin/check-ses-statistics.rb
CHANGED
|
@@ -118,7 +118,7 @@ class CheckSesStatistics < Sensu::Plugin::Check::CLI
|
|
|
118
118
|
unknown 'Empty response from AWS SES API' if response.empty? # Can this happen?
|
|
119
119
|
unknown 'No data points from AWS SES API' if response.send_data_points.empty?
|
|
120
120
|
|
|
121
|
-
response.send_data_points.sort_by(&:timestamp).last
|
|
121
|
+
data_point = response.send_data_points.sort_by(&:timestamp).last
|
|
122
122
|
bounces = data_point.bounces
|
|
123
123
|
rejects = data_point.rejects
|
|
124
124
|
complaints = data_point.complaints
|