sensu-plugins-process-checks 4.0.0 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/metrics-ipcs.rb +1 -0
- data/lib/sensu-plugins-process-checks/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40659e2af00a1bba8285a4b71eea322d7db9e0945e7eb5637530281fd4f991de
|
4
|
+
data.tar.gz: ba91233750b4142cd1f6c6b02b93f0b00209164524a5439687acb3656dcdc978
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46990a3a438272b19bf721cefdfce4420e5c56f6e2086f5b07e0adb1111315e6ae9d375092e185f889643fd81cce1da566a55f280993c54e315cc38c3c78b83f
|
7
|
+
data.tar.gz: fa4cc25c38c781808344a88ecdd38820b518ebabeea94b5e9e6324237b38142ac2687ec9f339574154356e2c76b460c893136a8154ec8845fb15a7c8789f109f
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [4.0.1] - 2019-05-06
|
10
|
+
### Fixed
|
11
|
+
- metrics-ipcs.rb: fixed metric script by setting `found = true` when its found (@eberkut)
|
12
|
+
|
9
13
|
## [4.0.0] - 2019-04-18
|
10
14
|
### Breaking Changes
|
11
15
|
- Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
|
@@ -200,7 +204,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
200
204
|
- built against 1.9.3, 2.0, 2.1
|
201
205
|
- cryptographically signed
|
202
206
|
|
203
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/4.0.
|
207
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/4.0.1...HEAD
|
208
|
+
[4.0.1]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/4.0.0...4.0.1
|
204
209
|
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.2.0...4.0.0
|
205
210
|
[3.2.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.1.0...3.2.0
|
206
211
|
[3.1.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.2...3.1.0
|
data/bin/metrics-ipcs.rb
CHANGED
@@ -60,6 +60,7 @@ class MetricsIPCS < Sensu::Plugin::Metric::CLI::Graphite
|
|
60
60
|
result = line.match(/[[:space:]]*(?<name>[a-zA-Z ]*).*(?<value>\d+)/)
|
61
61
|
output "#{config[:scheme]}.#{key}.#{result[:name].strip.tr(' ', '-')}", result[:value].strip
|
62
62
|
end
|
63
|
+
found = true
|
63
64
|
end
|
64
65
|
if found
|
65
66
|
ok
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-plugins-process-checks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.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: 2019-
|
11
|
+
date: 2019-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: english
|