sensu-plugins-bluepill 0.0.1.alpha.2 → 0.0.1
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 +10 -5
- data/LICENSE +1 -1
- data/README.md +3 -35
- data/lib/sensu-plugins-bluepill.rb +10 -3
- data/lib/sensu-plugins-bluepill/version.rb +28 -0
- metadata +14 -11
- 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: da857dc8c9bcbfe131b841cbf662dc31c6796074
|
|
4
|
+
data.tar.gz: aee3654dd309c167ecac539a57dcd578ef91f509
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15276d6f1f1b72774c94c6078e4f1b5a477efeac75f30d04d9f4d5820f42a72385486b7b122d535d75c0f9520e2e12408b6099241e17eed306bddaa5bad90aec
|
|
7
|
+
data.tar.gz: 9829ae57e1e03b6a0e8225cac1298dc807a723a9f73209b024d57b1bcb4653b1b47dde494b56c708b7ff46ab712fecc62cfe71c690a4a980cdf4b50f93056a3c
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
#Change Log
|
|
2
|
+
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
|
5
|
+
|
|
6
|
+
## Unreleased][unreleased]
|
|
7
|
+
|
|
8
|
+
## 0.0.1 - 2015-04-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- initial release
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -5,49 +5,17 @@
|
|
|
5
5
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-bluepill)
|
|
6
6
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-bluepill)
|
|
7
7
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-bluepill)
|
|
8
|
+
[ ](https://codeship.com/projects/76229)
|
|
8
9
|
|
|
9
10
|
## Functionality
|
|
10
11
|
|
|
11
12
|
## Files
|
|
12
|
-
* bin/check-bluepill-procs
|
|
13
|
+
* bin/check-bluepill-procs.rb
|
|
13
14
|
|
|
14
15
|
## Usage
|
|
15
16
|
|
|
16
17
|
## Installation
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
|
|
22
|
-
gem install sensu-plugins-bluepill -P MediumSecurity
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
You can also download the key from /certs/ within each repository.
|
|
26
|
-
|
|
27
|
-
#### Rubygems
|
|
28
|
-
|
|
29
|
-
`gem install sensu-plugins-bluepill`
|
|
30
|
-
|
|
31
|
-
#### Bundler
|
|
32
|
-
|
|
33
|
-
Add *sensu-plugins-bluepill* to your Gemfile and run `bundle install` or `bundle update`
|
|
34
|
-
|
|
35
|
-
#### Chef
|
|
36
|
-
|
|
37
|
-
Using the Sensu **sensu_gem** LWRP
|
|
38
|
-
```
|
|
39
|
-
sensu_gem 'sensu-plugins-bluepill' do
|
|
40
|
-
options('--prerelease')
|
|
41
|
-
version '0.0.1'
|
|
42
|
-
end
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
Using the Chef **gem_package** resource
|
|
46
|
-
```
|
|
47
|
-
gem_package 'sensu-plugins-bluepill' do
|
|
48
|
-
options('--prerelease')
|
|
49
|
-
version '0.0.1'
|
|
50
|
-
end
|
|
51
|
-
```
|
|
19
|
+
[Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
|
|
52
20
|
|
|
53
21
|
## Notes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
# encoding: utf-8
|
|
4
|
+
module SensuPluginsBluepill
|
|
5
|
+
# This defines the version of the gem
|
|
6
|
+
module Version
|
|
7
|
+
MAJOR = 0
|
|
8
|
+
MINOR = 0
|
|
9
|
+
PATCH = 1
|
|
10
|
+
|
|
11
|
+
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
|
12
|
+
|
|
13
|
+
NAME = 'sensu-plugins-bluepill'
|
|
14
|
+
BANNER = "#{NAME} v%s"
|
|
15
|
+
|
|
16
|
+
module_function
|
|
17
|
+
|
|
18
|
+
def version
|
|
19
|
+
format(BANNER, VER_STRING)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def json_version
|
|
23
|
+
{
|
|
24
|
+
'version' => VER_STRING
|
|
25
|
+
}.to_json
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-bluepill
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.1
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Sensu-Plugins and contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain:
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
|
|
31
31
|
HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2015-04-
|
|
33
|
+
date: 2015-04-30 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: english
|
|
@@ -80,14 +80,14 @@ dependencies:
|
|
|
80
80
|
requirements:
|
|
81
81
|
- - '='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: 0.
|
|
83
|
+
version: 0.30.0
|
|
84
84
|
type: :development
|
|
85
85
|
prerelease: false
|
|
86
86
|
version_requirements: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
|
88
88
|
- - '='
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
|
-
version: 0.
|
|
90
|
+
version: 0.30.0
|
|
91
91
|
- !ruby/object:Gem::Dependency
|
|
92
92
|
name: rspec
|
|
93
93
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -197,14 +197,18 @@ files:
|
|
|
197
197
|
- README.md
|
|
198
198
|
- bin/check-bluepill-procs.rb
|
|
199
199
|
- lib/sensu-plugins-bluepill.rb
|
|
200
|
+
- lib/sensu-plugins-bluepill/version.rb
|
|
200
201
|
homepage: https://github.com/sensu-plugins/sensu-plugins-bluepill
|
|
201
202
|
licenses:
|
|
202
203
|
- MIT
|
|
203
204
|
metadata:
|
|
204
205
|
maintainer: ''
|
|
205
206
|
development_status: unmaintained
|
|
206
|
-
production_status: unstable - testing
|
|
207
|
-
|
|
207
|
+
production_status: unstable - testing recommended
|
|
208
|
+
release_draft: 'false'
|
|
209
|
+
release_prerelease: 'false'
|
|
210
|
+
post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
|
|
211
|
+
in /etc/default/sensu
|
|
208
212
|
rdoc_options: []
|
|
209
213
|
require_paths:
|
|
210
214
|
- lib
|
|
@@ -215,14 +219,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
215
219
|
version: 1.9.3
|
|
216
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
217
221
|
requirements:
|
|
218
|
-
- - "
|
|
222
|
+
- - ">="
|
|
219
223
|
- !ruby/object:Gem::Version
|
|
220
|
-
version:
|
|
224
|
+
version: '0'
|
|
221
225
|
requirements: []
|
|
222
226
|
rubyforge_project:
|
|
223
|
-
rubygems_version: 2.
|
|
227
|
+
rubygems_version: 2.4.6
|
|
224
228
|
signing_key:
|
|
225
229
|
specification_version: 4
|
|
226
230
|
summary: Bluepill process supervisor plugins
|
|
227
231
|
test_files: []
|
|
228
|
-
has_rdoc:
|
metadata.gz.sig
CHANGED
|
Binary file
|