sensu-plugins-io-checks 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 82a41405063ed805abbd8e6b8ee0c797479e4de3
4
- data.tar.gz: de595423593dbee2d900a167d4bc2877d731901d
2
+ SHA256:
3
+ metadata.gz: fe39af6e59c60ce85947b9443d29b62b361b90f05b2ce5ed5c9b10a4539887ec
4
+ data.tar.gz: 887f57a1ffac27ba1e3cfaf9a166f11faaba6960da4b35155e4838cd647aa221
5
5
  SHA512:
6
- metadata.gz: b47d66935de7ff780fea39e75a3c32a8e3215cb75944ba6a623949a322b4088949566ce6f4b2ae763bbdf6a247700dfa3d93fc39757c42f5a3240bf5c9427928
7
- data.tar.gz: 02750f904c9684fc79df0d23b21971bf704d619cd57ed9be16dbfc31f59bdcc192d3bf4a4cd7a8a4776a7a98306bf652edd9270baa7386b4b7d3b43613fd58bb
6
+ metadata.gz: bde03ae4223eff73d210013e3f484471d08a38e01e25a6fcbd33f4373a03f729634bc98f82c41b47a31e9a46ea09dabef17b4d50382a6a991b92f025826efb27
7
+ data.tar.gz: 08472d93ce9b725d55d65c16c881edd14aec6f5fa451f37f0f592f4ecbe97a8c12b9cf2d14149a9204ae1e082aa481285943c55e2d4c64a511170d2688b1be28
@@ -1,11 +1,18 @@
1
- #Change Log
1
+ # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
4
+ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
- ## [1.0.1] - 2017-0702
8
+ ## [1.0.2] - 2018-10-27
9
+ ### Fixed
10
+ - metrics-iostat-extended.rb: Changes ouput in device session from 'Device:' to 'Device'. Fix issue #12 (@dmichelotto)
11
+
12
+ ### Added
13
+ - ruby 2.4 testing (@majormoses)
14
+
15
+ ## [1.0.1] - 2017-07-02
9
16
  ### Fixed
10
17
  - [ioping](https://github.com/koct9i/ioping) is switching to nanosecond precision - added 'ns' to metrics-ioping.rb (@MattMencel)
11
18
 
@@ -37,7 +44,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
37
44
  ### Added
38
45
  - initial release
39
46
 
40
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/1.0.1...HEAD
47
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/1.0.2...HEAD
48
+ [1.0.2]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/1.0.1...1.0.2
41
49
  [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/1.0.0...1.0.1
42
50
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/0.0.3...1.0.0
43
51
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-io-checks/compare/0.0.2...0.0.3
@@ -85,7 +85,7 @@ class IOStatExtended < Sensu::Plugin::Metric::CLI::Graphite
85
85
  headers = line.gsub(/%/, 'pct_').split(/\s+/)
86
86
  headers.shift
87
87
  next
88
- when /^(Device):/
88
+ when /^(Device):\s+.+/, /^(Device)\s+.+/
89
89
  stage = :device
90
90
  headers = line.gsub(/%/, 'pct_').split(/\s+/).map { |h| h.gsub(/\//, '_per_') }
91
91
  headers.shift
@@ -2,7 +2,7 @@ module SensuPluginsIOChecks
2
2
  module Version
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 2
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-io-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.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-07-02 00:00:00.000000000 Z
11
+ date: 2018-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -156,8 +156,8 @@ description: |-
156
156
  system `ioping` utility.
157
157
  email: "<sensu-users@googlegroups.com>"
158
158
  executables:
159
- - metrics-ioping.rb
160
159
  - metrics-iostat-extended.rb
160
+ - metrics-ioping.rb
161
161
  extensions: []
162
162
  extra_rdoc_files: []
163
163
  files:
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  version: '0'
195
195
  requirements: []
196
196
  rubyforge_project:
197
- rubygems_version: 2.4.5
197
+ rubygems_version: 2.7.7
198
198
  signing_key:
199
199
  specification_version: 4
200
200
  summary: Sensu plugins for io checks