sensu-plugins-process-checks 2.0.0 → 2.1.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
  SHA1:
3
- metadata.gz: cac4dabc14637107d249a25b6433d181aced85ba
4
- data.tar.gz: 0b4518cc291f7353a0e6df9f922c3be91d7ffcb2
3
+ metadata.gz: 7322081334ecbad95da949952e23b5487d0351d8
4
+ data.tar.gz: 60fc93cf57746f3524e691401e88bf6360f47375
5
5
  SHA512:
6
- metadata.gz: b2cae1dbced906dbf167e698d22f8c1ef12742624452eca8aec5e0a31a0122854902e5dedcd1332bfd0295f7d453af48f115856b43026ba9bee28abcdc6e499a
7
- data.tar.gz: b9d48b6ed2e4e354551537eb0288ab81c9803897190e2ad3f4793eb068e872edf2d17a4b45fe437477d4cf1af76777d26540b95cf83ad13afb6e56aae1657ed7
6
+ metadata.gz: f615e23ec960b1f1919f0c0f574d46c1bdb5763fa01fc89ff3b7bd5547185ddf969134b9c2cafb9d81c86f1e00d6610a45955ebc952863d06c174bb3caa8e177
7
+ data.tar.gz: 1d8fd086ce01cc65d52d81440c9048a2b44079ab64fda9711e2b1447225a2d0206adf222a80b9fdd073801c6e416527af911044ed1624cc6ee3274203e1a1beb
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+ ## [2.1.0] - 2017-05-25
8
+ ### Added
9
+ - metrics-per-process.rb: Binstub for metrics-per-process.py
10
+ - metrics-process-uptime.rb: Binstub for metrics-process-uptime.sh
11
+
7
12
  ## [2.0.0] 2017-05-18
8
13
  ### Breaking Changes
9
14
  - check-process.rb: renamed `--propotional-set-size` to `--cpu-utilization` as that's really what it was. (@majormoses)
@@ -113,7 +118,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
113
118
  - built against 1.9.3, 2.0, 2.1
114
119
  - cryptographically signed
115
120
 
116
- [unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.0.0...HEAD
121
+ [unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.1.0...HEAD
122
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.0.0...2.1.0
117
123
  [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/1.0.0...2.0.0
118
124
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/0.0.6...1.0.0
119
125
  [0.0.6]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/0.0.5...0.0.6
data/README.md CHANGED
@@ -17,9 +17,12 @@
17
17
  * bin/check-process-restart.rb
18
18
  * bin/check-process.rb
19
19
  * bin/check-threads-count.rb
20
+ * bin/metrics-per-process.py
21
+ * bin/metrics-per-process.rb
20
22
  * bin/metrics-process-status.rb
21
- * bin/metrics-processes-threads-count.rb
23
+ * bin/metrics-process-uptime.rb
22
24
  * bin/metrics-process-uptime.sh
25
+ * bin/metrics-processes-threads-count.rb
23
26
 
24
27
  ## Usage
25
28
 
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ bin_dir = File.expand_path(File.dirname(__FILE__))
4
+ shell_script_path = File.join(bin_dir, File.basename($PROGRAM_NAME, '.rb') + '.py')
5
+
6
+ exec shell_script_path, *ARGV
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ bin_dir = File.expand_path(File.dirname(__FILE__))
4
+ shell_script_path = File.join(bin_dir, File.basename($PROGRAM_NAME, '.rb') + '.sh')
5
+
6
+ exec shell_script_path, *ARGV
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsProcessChecks
2
2
  module Version
3
3
  MAJOR = 2
4
- MINOR = 0
4
+ MINOR = 1
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: 2.0.0
4
+ version: 2.1.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: 2017-05-19 00:00:00.000000000 Z
11
+ date: 2017-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: english
@@ -188,7 +188,9 @@ executables:
188
188
  - check-process-restart.rb
189
189
  - check-process.rb
190
190
  - check-threads-count.rb
191
+ - metrics-per-process.rb
191
192
  - metrics-process-status.rb
193
+ - metrics-process-uptime.rb
192
194
  - metrics-processes-threads-count.rb
193
195
  extensions: []
194
196
  extra_rdoc_files: []
@@ -201,7 +203,9 @@ files:
201
203
  - bin/check-process.rb
202
204
  - bin/check-threads-count.rb
203
205
  - bin/metrics-per-process.py
206
+ - bin/metrics-per-process.rb
204
207
  - bin/metrics-process-status.rb
208
+ - bin/metrics-process-uptime.rb
205
209
  - bin/metrics-process-uptime.sh
206
210
  - bin/metrics-processes-threads-count.rb
207
211
  - lib/sensu-plugins-process-checks.rb