sensu-plugins-redis 1.3.0 → 1.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 +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/metrics-redis-graphite.rb +1 -1
- data/lib/sensu-plugins-redis/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1de16379e596b5c7e6bdab0f503efd47317bf71a
|
|
4
|
+
data.tar.gz: 4f961f3e7d7c4947a6b7c9029c2958d9dc51151a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1a5ebcbf245893dd3e5eb880b2297e7130bd7e7379225242ce16bb33154f80c834143fc6eb7ea9fdf4af74a9002cf112631354077920ef824e9581809ea2696
|
|
7
|
+
data.tar.gz: f9e86330e8a43615df701efee9dca27933fef37d8505b853efe6283b8a05329c84af3eb566bb6c10bb06745c2583eb7a7498807b9065d43daeae5fefcfbc3ff1
|
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
|
+
## [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.
|
|
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(
|
|
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
|