sensu-plugins-redis 1.3.0 → 1.3.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: 6d5a2e7ad15cec51e30e8b1d89902aec3cca0c3e
4
- data.tar.gz: 4e389ecc0f27b5f52bf5e6a2a4d2c844415df5b8
3
+ metadata.gz: 1de16379e596b5c7e6bdab0f503efd47317bf71a
4
+ data.tar.gz: 4f961f3e7d7c4947a6b7c9029c2958d9dc51151a
5
5
  SHA512:
6
- metadata.gz: 88aa138e23e8ffb72089d7fe39e3a0cf5625a064d8178b891e52904688190ae01d528ac6011eb90074a0669249c5d60be130393e6ac5ec3cdf99a8827afe4a23
7
- data.tar.gz: e5f5d5099413025154c92553ccef950d7ab6cdca0212599227cbe699206e49cf1f2000c62ee2489fe18bad0779af541a7dbebdd95690e1966ea710df011dd7ab
6
+ metadata.gz: e1a5ebcbf245893dd3e5eb880b2297e7130bd7e7379225242ce16bb33154f80c834143fc6eb7ea9fdf4af74a9002cf112631354077920ef824e9581809ea2696
7
+ data.tar.gz: f9e86330e8a43615df701efee9dca27933fef37d8505b853efe6283b8a05329c84af3eb566bb6c10bb06745c2583eb7a7498807b9065d43daeae5fefcfbc3ff1
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [1.3.1] - 2017-05-31
9
+ ### Fixed
10
+ - metrics-redis-graphite: fix commandstats output (@boutetnico)
11
+
8
12
  ## [1.3.0] - 2017-05-31
9
13
  ### Added
10
14
  - Added option to connect to Redis via Unix sockets. (@mbyczkowski)
@@ -71,7 +75,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
71
75
  ### Added
72
76
  - initial release
73
77
 
74
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.3.0...HEAD
78
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.3.1...HEAD
79
+ [1.3.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.3.0...1.3.1
75
80
  [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.2...1.3.0
76
81
  [1.2.2]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.1...1.2.2
77
82
  [1.2.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.0...1.2.1
@@ -136,7 +136,7 @@ class Redis2Graphite < Sensu::Plugin::Metric::CLI::Graphite
136
136
 
137
137
  # Loop thru commandstats entries for perf metrics
138
138
  redis.info('commandstats').each do |k, v|
139
- %w(['calls', 'usec_per_call', 'usec']).each do |x|
139
+ %w(calls usec_per_call usec).each do |x|
140
140
  output "#{config[:scheme]}.commandstats.#{k}.#{x}", v[x]
141
141
  end
142
142
  end
@@ -2,7 +2,7 @@ module SensuPluginsRedis
2
2
  module Version
3
3
  MAJOR = 1
4
4
  MINOR = 3
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors