sensu-plugins-redis 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d84e480941378fc37dc6238221103244e6927953
4
- data.tar.gz: 8dac21557a6056203718cf360a52f7f6e662ca0d
3
+ metadata.gz: 828afc0628da1e0593c09d9f216b0bdef71eb5da
4
+ data.tar.gz: 559acb1c97cd58c4d857b5675c618477c8facb5b
5
5
  SHA512:
6
- metadata.gz: 8978a9254a29e9d3b035a0269a4452048ff20c6ea6c7b3406c647a33c3069636906402b94cfc6290b3ce433647c14e9c769c15038568782217117c0f9f9b95d9
7
- data.tar.gz: 97a0e270d28c6f0b319e213e6e63843a4c9fb2a15527aecc954867b86ef84e64137c05a6bc6f154f51189e4d0c281481335809ab0a6f2369b226b76810d7433e
6
+ metadata.gz: 799200948340d2b9828a769dcaccf57177b950632db4f1f9f65af18117ac8a146dde6131aba5212e60817967937a0df7f742706534e97d7f254d57c61cc22c9f
7
+ data.tar.gz: 04e95210aa5a86f6b2af221f05f8f14e5751a2220ab2e9eb28d3fbced12246d0c70b89d0b50619466064c883811b39e2dd28821f8ca8762c9c35191338b7cb3b
@@ -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.0...HEAD
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: '-s SCHEME',
76
+ short: '-S SCHEME',
77
77
  long: '--scheme SCHEME',
78
78
  default: "#{Socket.gethostname}.redis"
79
79
 
@@ -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: '-s SCHEME',
40
+ short: '-S SCHEME',
41
41
  long: '--scheme SCHEME',
42
42
  default: "#{Socket.gethostname}.redis"
43
43
 
@@ -2,7 +2,7 @@ module SensuPluginsRedis
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
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.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-07-23 00:00:00.000000000 Z
11
+ date: 2017-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin