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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9037053cd9190aec61913079bab7f62f3951eae1
4
- data.tar.gz: 1cdec9cdfb533b8c8d4d4b14c4b5a903643e99d4
3
+ metadata.gz: 52cb768d3d1d8d926922f1ff6f18ee324629de54
4
+ data.tar.gz: 25196fc983a0c32c89906a996bd16f5c3da155be
5
5
  SHA512:
6
- metadata.gz: 353ba812670fab3cd098e4c4e29c1ff6b066a4ae432db8469f47360540d63fc60952d7bd739616af9851589ba7e2bb37152cdb43db4c510d1a8a52e1496e1c14
7
- data.tar.gz: 07eba3960b51eacb6e2a20c8450278320886395de006fa9ff83a35a13b94ead4b0c6ce21258d595ed0627c459fd87f784ad438966c8feda180cdd891fa5b64e9
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
- * identical functionality to the community-plugins repo
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
- Add the public key (if you haven’t already) as a trusted certificate
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
@@ -13,6 +13,7 @@
13
13
  #
14
14
  # DEPENDENCIES:
15
15
  # gem: sensu-plugin
16
+ # gem: english
16
17
  # ceph client
17
18
  #
18
19
  # USAGE:
@@ -13,7 +13,7 @@
13
13
  #
14
14
  # DEPENDENCIES:
15
15
  # gem: sensu-plugin
16
- # gem: json
16
+ # gem: english
17
17
  # ceph client
18
18
  #
19
19
  # USAGE:
@@ -1,14 +1 @@
1
1
  require 'sensu-plugins-ceph/version'
2
-
3
- # Load the defaults
4
-
5
- #
6
- # Default class
7
- #
8
- module SensuPluginsCeph
9
- class << self
10
- end
11
-
12
- class << self
13
- end
14
- end
@@ -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 = 1
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.1
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-05-05 00:00:00.000000000 Z
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: unmaintained
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