sensu-plugins-redis 1.2.1 → 1.2.2
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 +2 -2
- 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: 1dabba3da868ee6fd5dfed084268102cf36a1446
|
|
4
|
+
data.tar.gz: f6c7b92239a2ad94453c9b8757cc3f9b6fd1e144
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b4bc213e3363acc1dfe6d0f2414e9bfa93607ea7271198133ae7e7b88531817fed243e8fa415db6740fc3c88116f96bf1239c6ffb94627648410be564f8eea2
|
|
7
|
+
data.tar.gz: 752ba0c5aecdebe4248ea41309e474f1df904a715f1f02908bdca82fbffdd8643efb44966e03598d53e0aa40c37194f31f9252366950ac0d856ceccdf19cedd5
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
4
4
|
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
|
+
## [1.2.2] - 2017-05-31
|
|
8
|
+
## Fixed
|
|
9
|
+
- metrics-redis-graphite: fix skipkeys option not accepting any argument (@boutetnico)
|
|
10
|
+
|
|
7
11
|
## [1.2.1] - 2017-05-14
|
|
8
12
|
## Fixed
|
|
9
13
|
- Updated list of SKIP_KEYS_REGEX in metrics-redis-graphite.rb per #22 and added an option to override the list of keys to allow users to deal with changes without the need of a release (@majormoses)
|
|
@@ -62,7 +66,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
62
66
|
### Added
|
|
63
67
|
- initial release
|
|
64
68
|
|
|
65
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.
|
|
69
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.2...HEAD
|
|
70
|
+
[1.2.2]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.1...1.2.2
|
|
66
71
|
[1.2.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.2.0...1.2.1
|
|
67
72
|
[1.2.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.1.0...1.2.0
|
|
68
73
|
[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/1.0.0...1.1.0
|
|
@@ -87,8 +87,8 @@ class Redis2Graphite < Sensu::Plugin::Metric::CLI::Graphite
|
|
|
87
87
|
|
|
88
88
|
option :skip_keys_regex,
|
|
89
89
|
description: 'a comma seperated list of keys to be skipped',
|
|
90
|
-
short: '-k',
|
|
91
|
-
long: '--skipkeys',
|
|
90
|
+
short: '-k KEYS',
|
|
91
|
+
long: '--skipkeys KEYS',
|
|
92
92
|
default: nil
|
|
93
93
|
|
|
94
94
|
def run
|
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: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
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-05-
|
|
11
|
+
date: 2017-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|