sensu-plugins-ceph 0.0.1 → 0.0.2
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 +6 -4
- data/README.md +3 -36
- data/bin/check-ceph.rb +1 -0
- data/bin/metrics-ceph-osd.rb +1 -1
- data/lib/sensu-plugins-ceph.rb +0 -13
- data/lib/sensu-plugins-ceph/version.rb +1 -20
- metadata +9 -33
- 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: 52cb768d3d1d8d926922f1ff6f18ee324629de54
|
|
4
|
+
data.tar.gz: 25196fc983a0c32c89906a996bd16f5c3da155be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bcae13f399ec5c552d630cc2b1b642497a786c83c66486fe59ac538fd66794f81887852331750411590b79313387e6ffb27f5e8b84763f8d493a32d02e470a9
|
|
7
|
+
data.tar.gz: 9506f2620758355e123bc3b417665f619a2cadc82de89e64123ddb7756a8a545bc744e561701fd33b066c3d4bfad95b3f46cae5acb0575106f2268431f721e7e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
Change Log
|
|
2
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
|
-
|
|
4
1
|
#Change Log
|
|
5
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
3
|
|
|
@@ -13,5 +10,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
13
10
|
### Added
|
|
14
11
|
- initial release
|
|
15
12
|
|
|
13
|
+
## 0.0.2 - 2015-06-02
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- added binstubs
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
### Changed
|
|
19
|
+
- removed cruft from /lib
|
data/README.md
CHANGED
|
@@ -10,46 +10,13 @@
|
|
|
10
10
|
## Functionality
|
|
11
11
|
|
|
12
12
|
## Files
|
|
13
|
-
* bin/check-ceph
|
|
14
|
-
* bin/metrics-ceph-osd
|
|
13
|
+
* bin/check-ceph.rb
|
|
14
|
+
* bin/metrics-ceph-osd.rb
|
|
15
15
|
|
|
16
16
|
## Usage
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
|
|
24
|
-
gem install sensu-plugins-ceph -P MediumSecurity
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
You can also download the key from /certs/ within each repository.
|
|
28
|
-
|
|
29
|
-
#### Rubygems
|
|
30
|
-
|
|
31
|
-
`gem install sensu-plugins-ceph`
|
|
32
|
-
|
|
33
|
-
#### Bundler
|
|
34
|
-
|
|
35
|
-
Add *sensu-plugins-ceph* to your Gemfile and run `bundle install` or `bundle update`
|
|
36
|
-
|
|
37
|
-
#### Chef
|
|
38
|
-
|
|
39
|
-
Using the Sensu **sensu_gem** LWRP
|
|
40
|
-
```
|
|
41
|
-
sensu_gem 'sensu-plugins-ceph' do
|
|
42
|
-
options('--prerelease')
|
|
43
|
-
version '0.0.1'
|
|
44
|
-
end
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Using the Chef **gem_package** resource
|
|
48
|
-
```
|
|
49
|
-
gem_package 'sensu-plugins-ceph' do
|
|
50
|
-
options('--prerelease')
|
|
51
|
-
version '0.0.1'
|
|
52
|
-
end
|
|
53
|
-
```
|
|
20
|
+
[Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
|
|
54
21
|
|
|
55
22
|
## Notes
|
data/bin/check-ceph.rb
CHANGED
data/bin/metrics-ceph-osd.rb
CHANGED
data/lib/sensu-plugins-ceph.rb
CHANGED
|
@@ -1,28 +1,9 @@
|
|
|
1
|
-
require 'json'
|
|
2
|
-
|
|
3
|
-
# encoding: utf-8
|
|
4
1
|
module SensuPluginsCeph
|
|
5
|
-
# This defines the version of the gem
|
|
6
2
|
module Version
|
|
7
3
|
MAJOR = 0
|
|
8
4
|
MINOR = 0
|
|
9
|
-
PATCH =
|
|
5
|
+
PATCH = 2
|
|
10
6
|
|
|
11
7
|
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
|
12
|
-
|
|
13
|
-
NAME = 'sensu-plugins-ceph'
|
|
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
8
|
end
|
|
28
9
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-ceph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
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-
|
|
33
|
+
date: 2015-06-03 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: english
|
|
@@ -46,34 +46,6 @@ dependencies:
|
|
|
46
46
|
- - '='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
48
|
version: 0.6.3
|
|
49
|
-
- !ruby/object:Gem::Dependency
|
|
50
|
-
name: timeout
|
|
51
|
-
requirement: !ruby/object:Gem::Requirement
|
|
52
|
-
requirements:
|
|
53
|
-
- - '='
|
|
54
|
-
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.0.1
|
|
56
|
-
type: :runtime
|
|
57
|
-
prerelease: false
|
|
58
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
59
|
-
requirements:
|
|
60
|
-
- - '='
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.0.1
|
|
63
|
-
- !ruby/object:Gem::Dependency
|
|
64
|
-
name: json
|
|
65
|
-
requirement: !ruby/object:Gem::Requirement
|
|
66
|
-
requirements:
|
|
67
|
-
- - '='
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: 1.8.2
|
|
70
|
-
type: :runtime
|
|
71
|
-
prerelease: false
|
|
72
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
requirements:
|
|
74
|
-
- - '='
|
|
75
|
-
- !ruby/object:Gem::Version
|
|
76
|
-
version: 1.8.2
|
|
77
49
|
- !ruby/object:Gem::Dependency
|
|
78
50
|
name: sensu-plugin
|
|
79
51
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -216,7 +188,9 @@ dependencies:
|
|
|
216
188
|
version: '0.10'
|
|
217
189
|
description: Sensu plugins for ceph
|
|
218
190
|
email: "<sensu-users@googlegroups.com>"
|
|
219
|
-
executables:
|
|
191
|
+
executables:
|
|
192
|
+
- metrics-ceph-osd.rb
|
|
193
|
+
- check-ceph.rb
|
|
220
194
|
extensions: []
|
|
221
195
|
extra_rdoc_files: []
|
|
222
196
|
files:
|
|
@@ -231,9 +205,11 @@ homepage: https://github.com/sensu-plugins/sensu-plugins-ceph
|
|
|
231
205
|
licenses:
|
|
232
206
|
- MIT
|
|
233
207
|
metadata:
|
|
234
|
-
maintainer:
|
|
235
|
-
development_status:
|
|
208
|
+
maintainer: sensu-plugin
|
|
209
|
+
development_status: active
|
|
236
210
|
production_status: unstable - testing recommended
|
|
211
|
+
release_draft: 'false'
|
|
212
|
+
release_prerelease: 'false'
|
|
237
213
|
post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
|
|
238
214
|
in /etc/default/sensu
|
|
239
215
|
rdoc_options: []
|
metadata.gz.sig
CHANGED
|
Binary file
|