sensu-plugins-redis 2.2.0 → 2.2.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 +11 -2
- data/bin/check-redis-info.rb +1 -0
- data/bin/check-redis-keys.rb +1 -0
- data/bin/check-redis-list-length.rb +1 -0
- data/bin/check-redis-memory-percentage.rb +1 -0
- data/bin/check-redis-memory.rb +1 -0
- data/bin/check-redis-ping.rb +1 -0
- data/bin/check-redis-slave-status.rb +1 -0
- data/lib/sensu-plugins-redis/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4276c3c602a59e367708ccbc5fa74dca365646c
|
|
4
|
+
data.tar.gz: fc8de75b9975656b151c64570a00b8be968562dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3288ecb669aab05bb08e4dad3a4afeec9c7072d8014c9e28e54497cc4ee4ec65c38bf83e69a6399944d14c454515e1e0301eb701babaf4d1f04f8eb156f8c991
|
|
7
|
+
data.tar.gz: 78762285078483bc623f7ad05e693f99553c6c461fd722d4d93c4a6ca8e76d9e89ac619d0858e7739766a583cc633f6a8a536eb8c88c5f493d4bf30a3bd66221
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
3
|
|
|
4
|
-
This CHANGELOG follows the format listed at [
|
|
4
|
+
This CHANGELOG follows the format listed at [Our CHANGELOG Guidelines ](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).
|
|
5
|
+
Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|
5
6
|
|
|
6
7
|
## [Unreleased]
|
|
7
8
|
|
|
9
|
+
## [2.2.1] - 2017-09-14
|
|
10
|
+
### Fixed
|
|
11
|
+
- ensure that `--timeout` option is an integer (@empyrean987)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- update location of our CHANGELOG guidelines (@majormoses)
|
|
15
|
+
|
|
8
16
|
## [2.2.0] - 2017-09-09
|
|
9
17
|
### Added
|
|
10
18
|
- All check scripts have a new option of `--timeout` (@empyrean987)
|
|
@@ -106,7 +114,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
106
114
|
### Added
|
|
107
115
|
- initial release
|
|
108
116
|
|
|
109
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.2.
|
|
117
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.2.1...HEAD
|
|
118
|
+
[2.2.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.2.0...2.2.1
|
|
110
119
|
[2.2.0]:https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.1.0...2.2.0
|
|
111
120
|
[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.0.1...2.1.0
|
|
112
121
|
[2.0.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.0.0...2.0.1
|
data/bin/check-redis-info.rb
CHANGED
data/bin/check-redis-keys.rb
CHANGED
data/bin/check-redis-memory.rb
CHANGED
data/bin/check-redis-ping.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-redis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.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: 2017-09-
|
|
11
|
+
date: 2017-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|