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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d8fb89ac01ad20dd0fc03e54107e91552f73b05
4
- data.tar.gz: dd2ffcfc3f3bcc7f6a62224fad80b03868e86178
3
+ metadata.gz: cd1fde1ba94257c9485f54d1b568006b0a157161
4
+ data.tar.gz: 63a2f805d5b841b6ff757f8933e0de23fc773556
5
5
  SHA512:
6
- metadata.gz: 74b111980b9841ddd31d8727a3c18008748cc689fdcd553037b98617d87d264a15221e50829f4273f9ca5edb0cbfbcfe761e578540dc76da51a19f5575eec449
7
- data.tar.gz: 5bbfe81df31292347140722dbb70ae818ebcc9f52288f0e97f317c3918070f5f2d63808f43ad6a7d74e0a7dac25bfd7701acf6ff4e86224013967fc9c3001bd4
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.6...HEAD
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
- [ ![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-windows.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-windows)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-windows.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-windows)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-windows.svg)](http://badge.fury.io/rb/sensu-plugins-windows)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-windows)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-windows.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-windows)
8
- [ ![Codeship Status for sensu-plugins/sensu-plugins-windows](https://codeship.com/projects/36b6a840-e20b-0132-647e-4ea0dd54b93d/status?branch=master)](https://codeship.com/projects/81375)
8
+ [![Codeship Status for sensu-plugins/sensu-plugins-windows](https://codeship.com/projects/36b6a840-e20b-0132-647e-4ea0dd54b93d/status?branch=master)](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
@@ -2,7 +2,7 @@ module SensuPluginsWindows
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 6
5
+ PATCH = 7
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-windows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
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-08-12 00:00:00.000000000 Z
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