sensu-plugins-process-checks 3.2.0 → 4.0.0

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
2
  SHA256:
3
- metadata.gz: 2a288fd9a1ed892d88ea986fc8e8b6fbaedbc34cfae8e08d2d44ddb5c834b7c2
4
- data.tar.gz: 6bf54c41a16984d27bfb3b55b39ca82af8de47329bebaac5982693598a8ea194
3
+ metadata.gz: 92730956c81dea6e6096a87ab06222531754724acad44c6fb2b789b26ee6e531
4
+ data.tar.gz: 8775adad168921607d3333ca044503f6e093f4ff4dadd26a8f4d85f503d2f856
5
5
  SHA512:
6
- metadata.gz: 6b577a669141a93bd719e36c70ac81da62fb450cabe9ed61aa0421b7981195dc253101bfac4bffc6cac80a18dda7ee658a2ca1c59db93940bf5cd80e3574d5f3
7
- data.tar.gz: cfe654f17518f58fbf14a9da7af419047eebfe09fd1b0525e3bb7abdba28681146459af4aac384dec228c24c6ead3d7ae0886749879c133e1d319a1a9050a160
6
+ metadata.gz: b0bbbe49ff5cf66b71bbc5d10c03a1aae464a0352f6bdce430dbeec764e995844a7c00b8247fafc5476498bd6998f4e9a5a6dad92a55f390da0b7d143a190259
7
+ data.tar.gz: 7e227d04836b4d0aefe5a28d965f4b0ca6660f8ef8f363cc7871a6eefb40b950a295ffa2df057ef4b05c5e2be4b4110048e71b180b015095eb049ddfaa7a0d48
@@ -6,6 +6,16 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [4.0.0] - 2019-04-18
10
+ ### Breaking Changes
11
+ - Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
12
+ - Bump `sensu-plugin` dependency from `~> 1.2` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29)
13
+
14
+ ### Added
15
+ - Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index
16
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
17
+
18
+
9
19
  ## [3.2.0] - 2018-05-02
10
20
  ### Fixed
11
21
  - metrics-processes-threads-count.rb: Backward compatible support for TASK_IDLE process state in Linux 4.14+ (@awangptc)
@@ -190,7 +200,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
190
200
  - built against 1.9.3, 2.0, 2.1
191
201
  - cryptographically signed
192
202
 
193
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.2.0...HEAD
203
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/4.0.0...HEAD
204
+ [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.2.0...4.0.0
194
205
  [3.2.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.1.0...3.2.0
195
206
  [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.2...3.1.0
196
207
  [3.0.2]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.1...3.0.2
data/README.md CHANGED
@@ -5,6 +5,10 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-process-checks/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-process-checks)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-process-checks/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-process-checks)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-process-checks.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-process-checks)
8
+ [![Sensu Bonsai Asset](https://img.shields.io/badge/Bonsai-Download%20Me-brightgreen.svg?colorB=89C967&logo=sensu)](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-process-checks)
9
+
10
+ ## Sensu Asset
11
+ The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io).
8
12
 
9
13
  ## Functionality
10
14
 
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsProcessChecks
2
2
  module Version
3
- MAJOR = 3
4
- MINOR = 2
3
+ MAJOR = 4
4
+ MINOR = 0
5
5
  PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
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: 3.2.0
4
+ version: 4.0.0
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: 2018-05-03 00:00:00.000000000 Z
11
+ date: 2019-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: english
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.2'
33
+ version: '4.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.2'
40
+ version: '4.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sys-proctable
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.3'
89
+ version: '3.0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.3'
96
+ version: '3.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: pry
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -198,15 +198,15 @@ description: |-
198
198
  process status, uptime, thread count, and others
199
199
  email: "<sensu-users@googlegroups.com>"
200
200
  executables:
201
+ - metrics-process-status.rb
202
+ - metrics-per-process.rb
203
+ - metrics-ipcs.rb
201
204
  - check-cmd.rb
205
+ - metrics-processes-threads-count.rb
206
+ - check-threads-count.rb
202
207
  - check-process-restart.rb
203
208
  - check-process.rb
204
- - check-threads-count.rb
205
- - metrics-ipcs.rb
206
- - metrics-per-process.rb
207
- - metrics-process-status.rb
208
209
  - metrics-process-uptime.rb
209
- - metrics-processes-threads-count.rb
210
210
  extensions: []
211
211
  extra_rdoc_files: []
212
212
  files:
@@ -244,15 +244,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
244
244
  requirements:
245
245
  - - ">="
246
246
  - !ruby/object:Gem::Version
247
- version: 2.1.0
247
+ version: 2.3.0
248
248
  required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  requirements:
250
250
  - - ">="
251
251
  - !ruby/object:Gem::Version
252
252
  version: '0'
253
253
  requirements: []
254
- rubyforge_project:
255
- rubygems_version: 2.7.6
254
+ rubygems_version: 3.0.3
256
255
  signing_key:
257
256
  specification_version: 4
258
257
  summary: Sensu plugins for checking running processes