sensu-plugins-redis 2.0.0 → 2.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 +6 -1
- data/bin/metrics-redis-graphite.rb +1 -1
- data/bin/metrics-redis-llen.rb +1 -1
- 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: 828afc0628da1e0593c09d9f216b0bdef71eb5da
|
|
4
|
+
data.tar.gz: 559acb1c97cd58c4d857b5675c618477c8facb5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 799200948340d2b9828a769dcaccf57177b950632db4f1f9f65af18117ac8a146dde6131aba5212e60817967937a0df7f742706534e97d7f254d57c61cc22c9f
|
|
7
|
+
data.tar.gz: 04e95210aa5a86f6b2af221f05f8f14e5751a2220ab2e9eb28d3fbced12246d0c70b89d0b50619466064c883811b39e2dd28821f8ca8762c9c35191338b7cb3b
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.0.1] - 2017-08-15
|
|
9
|
+
### Fixed
|
|
10
|
+
- metrics-redis-graphite.rb, metrics-redis-llen.rb: rename short option for `--scheme` from `-s` to `-S` to resolve conflict. (@stuwil)
|
|
11
|
+
|
|
8
12
|
## [2.0.0] - 2017-07-23
|
|
9
13
|
### Breaking Changes
|
|
10
14
|
- Standardised exit status for Redis connection failures/timeouts to Unknown, with the exception of 'check-redis-ping' which will exit Critical (@Evesy)
|
|
@@ -90,7 +94,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
90
94
|
### Added
|
|
91
95
|
- initial release
|
|
92
96
|
|
|
93
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.0.
|
|
97
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.0.1...HEAD
|
|
98
|
+
[2.0.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/2.0.0...2.0.1
|
|
94
99
|
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.4.0...2.0.0
|
|
95
100
|
[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.3.1...1.4.0
|
|
96
101
|
[1.3.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.3.0...1.3.1
|
|
@@ -73,7 +73,7 @@ class Redis2Graphite < Sensu::Plugin::Metric::CLI::Graphite
|
|
|
73
73
|
|
|
74
74
|
option :scheme,
|
|
75
75
|
description: 'Metric naming scheme, text to prepend to metric',
|
|
76
|
-
short: '-
|
|
76
|
+
short: '-S SCHEME',
|
|
77
77
|
long: '--scheme SCHEME',
|
|
78
78
|
default: "#{Socket.gethostname}.redis"
|
|
79
79
|
|
data/bin/metrics-redis-llen.rb
CHANGED
|
@@ -37,7 +37,7 @@ class RedisListLengthMetric < Sensu::Plugin::Metric::CLI::Graphite
|
|
|
37
37
|
|
|
38
38
|
option :scheme,
|
|
39
39
|
description: 'Metric naming scheme, text to prepend to metric',
|
|
40
|
-
short: '-
|
|
40
|
+
short: '-S SCHEME',
|
|
41
41
|
long: '--scheme SCHEME',
|
|
42
42
|
default: "#{Socket.gethostname}.redis"
|
|
43
43
|
|
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.0.
|
|
4
|
+
version: 2.0.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-
|
|
11
|
+
date: 2017-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|