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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 109b5702307162daa4308481bf6bd3e5499b511788b08465d8ad224f7b8891af
4
- data.tar.gz: 6959a863fd1c6e245dd5bdb442a13e9cc944455dbb58c1a2acbd2776dd0040ba
3
+ metadata.gz: be0422340cb449ec1d4caf7f659831e5d09818df20511bc821afc24fa1a14f8e
4
+ data.tar.gz: e11fff3a0a1bfc8b8d44eeb5ab12aee032ce99e6b61a847b0c525a958803c834
5
5
  SHA512:
6
- metadata.gz: 9f5e80b940aa669af45a50cf44bd5c5c4aed139c68c9418547ac01b024f5bff580c3fbafad828c202ba434a362127e058224dcb6818f87458e067a12ff4524f9
7
- data.tar.gz: 2f8ee12d7f54b1bc4dedc841aa13da613dba7f4cb1310bd65a2401a4dd34fb62364b0a98bd0eca21864103b32f29a089c99f08cca0dc2ae2019c2e05d678a7cd
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.0...HEAD
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
@@ -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.
@@ -2,7 +2,7 @@ module SensuPluginsAWS
2
2
  module Version
3
3
  MAJOR = 11
4
4
  MINOR = 3
5
- PATCH = 0
5
+ PATCH = 1
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
8
8
  end
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.0
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-03-23 00:00:00.000000000 Z
11
+ date: 2018-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin