sensu-plugins-windows 0.0.6 → 0.0.7
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGELOG.md +7 -2
- data/README.md +2 -2
- data/bin/metrics-windows-network.rb +1 -1
- data/lib/sensu-plugins-windows/version.rb +1 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd1fde1ba94257c9485f54d1b568006b0a157161
|
|
4
|
+
data.tar.gz: 63a2f805d5b841b6ff757f8933e0de23fc773556
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c69f1c0ec3e1eb62dc5cd38145ed07cd930e54b035b6ea6fab8bdbcfdaf1c0809da97c6c4cb60706960cee7a8ece123489bdc20bc5a398178840bd7696abb937
|
|
7
|
+
data.tar.gz: 176b2484b84c84bac04294d9d6c767c6bfc4b56bea778c644853efe1e7246348dc7ccfa0cae039f1e4a6e75194b41c6529851f6b3e2342732b7023cad9d326fa
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,15 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## Unreleased
|
|
7
7
|
|
|
8
|
+
## [0.0.7] - 2015-11-19
|
|
9
|
+
### Fixed
|
|
10
|
+
- metrics-windows-network.rb: remove characters that break graphite metrics
|
|
11
|
+
|
|
8
12
|
## [0.0.6] - 2015-08-04
|
|
9
13
|
### Changed
|
|
10
14
|
- updated check-windows-process to use native WMI hooks
|
|
11
15
|
- bump rubocop
|
|
12
|
-
-change binstubs to only be created for ruby files
|
|
16
|
+
- change binstubs to only be created for ruby files
|
|
13
17
|
|
|
14
18
|
## [0.0.5] - 2015-07-14
|
|
15
19
|
### Changed
|
|
@@ -37,7 +41,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
37
41
|
### Added
|
|
38
42
|
- initial release
|
|
39
43
|
|
|
40
|
-
[unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.
|
|
44
|
+
[unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.7...HEAD
|
|
45
|
+
[0.0.7]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.6...0.0.7
|
|
41
46
|
[0.0.6]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.5...0.0.6
|
|
42
47
|
[0.0.5]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.4...0.0.5
|
|
43
48
|
[0.0.4]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.2...0.0.4
|
data/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
## Sensu-Plugins-windows
|
|
2
2
|
|
|
3
|
-
[
|
|
3
|
+
[](https://travis-ci.org/sensu-plugins/sensu-plugins-windows)
|
|
4
4
|
[](http://badge.fury.io/rb/sensu-plugins-windows)
|
|
5
5
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows)
|
|
6
6
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows)
|
|
7
7
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-windows)
|
|
8
|
-
[
|
|
8
|
+
[](https://codeship.com/projects/81375)
|
|
9
9
|
|
|
10
10
|
## Functionality
|
|
11
11
|
|
|
@@ -57,7 +57,7 @@ class UptimeMetric < Sensu::Plugin::Metric::CLI::Graphite
|
|
|
57
57
|
|
|
58
58
|
ifz_name = ifz[18, ifz.length - 19].gsub('.', ' ')
|
|
59
59
|
value = format('%.2f', v.to_f)
|
|
60
|
-
name = [config[:scheme], ifz_name, metric].join('.').gsub(' ', '_').tr('{}', '')
|
|
60
|
+
name = [config[:scheme], ifz_name, metric].join('.').gsub(' ', '_').tr('{}', '').tr('[]', '')
|
|
61
61
|
|
|
62
62
|
output name, value, timestamp
|
|
63
63
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-windows
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sensu-Plugins and contributors
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
|
|
31
31
|
HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2015-
|
|
33
|
+
date: 2015-11-20 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: sensu-plugin
|
metadata.gz.sig
CHANGED
|
Binary file
|