sensu-plugins-aws 11.3.0 → 11.3.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 +6 -1
- data/bin/check-rds-events.rb +1 -1
- data/lib/sensu-plugins-aws/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be0422340cb449ec1d4caf7f659831e5d09818df20511bc821afc24fa1a14f8e
|
|
4
|
+
data.tar.gz: e11fff3a0a1bfc8b8d44eeb5ab12aee032ce99e6b61a847b0c525a958803c834
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7638136dd037cdbe6e4a8e7c72d9d29bd4c6b7fafc11661e5d303a72ad377f65ccff577a7ec5043dbdb64622bef3837addfe8d3b421a2385aac55ecd216e9b74
|
|
7
|
+
data.tar.gz: cf3f7bb16a9a9329cc0f79927abf93bfa8bb7bd49fea61db7359530e3d5e77c583520c1589a9081a5bb3c9548eabfeda976b719800981918bc80ed061bbd328b
|
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
|
+
## [11.3.1] - 2018-04-17
|
|
9
|
+
### Fixed
|
|
10
|
+
- check-rds-events.rb: fixed issues with queries because the assume local time, now we force UTC timezone (@nadarashwin) (@majormoses)
|
|
11
|
+
|
|
8
12
|
## [11.3.0] - 2018-03-22
|
|
9
13
|
### Added
|
|
10
14
|
- Added ability to get metrics from cloudfront (@yuri-zubov sponsored by Actility, https://www.actility.com)
|
|
@@ -455,7 +459,8 @@ WARNING: This release contains major breaking changes that will impact all user
|
|
|
455
459
|
### Added
|
|
456
460
|
- initial release
|
|
457
461
|
|
|
458
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.3.
|
|
462
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.3.1...HEAD
|
|
463
|
+
[11.3.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.3.0...11.3.1
|
|
459
464
|
[11.3.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.2.0...11.3.0
|
|
460
465
|
[11.2.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.1.0...11.2.0
|
|
461
466
|
[11.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/11.0.0...11.1.0
|
data/bin/check-rds-events.rb
CHANGED
|
@@ -117,7 +117,7 @@ class CheckRDSEvents < Sensu::Plugin::Check::CLI
|
|
|
117
117
|
# fetch the last 15 minutes of events for each cluster
|
|
118
118
|
# that way, we're only spammed with persistent notifications that we'd care about.
|
|
119
119
|
clusters.each do |cluster_name|
|
|
120
|
-
events_record = rds.describe_events(start_time: (Time.now - 900).iso8601, source_type: 'db-instance', source_identifier: cluster_name)
|
|
120
|
+
events_record = rds.describe_events(start_time: (Time.now.utc - 900).iso8601, source_type: 'db-instance', source_identifier: cluster_name)
|
|
121
121
|
next if events_record[:events].empty?
|
|
122
122
|
|
|
123
123
|
# we will need to filter out non-disruptive/basic operation events.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 11.3.
|
|
4
|
+
version: 11.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sensu-Plugins and contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-04-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|