sensu-plugins-datadog 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3b6e78fea844cfa1e75a3b5a08f948f0d37c44b
4
- data.tar.gz: 6dba20ae2fff6ed8c438b1603e0dab13cf80ee39
3
+ metadata.gz: 22f452f0abd67b7b74e3cb5b86cd10c5fa0fa11a
4
+ data.tar.gz: 0afa9911e55fb6cfde3cbe41547ec748fe527662
5
5
  SHA512:
6
- metadata.gz: b93f7b72a02a1ef89a5731be1606ec9f6362b31bd86fa30e87a9401ee4a61278bd9a4df24cc125c5289e2e765ac3ac2c8c3e8b1032ed279d32e172459c1b0f68
7
- data.tar.gz: d67059fa7ef41e4523efbf08749f8ffc6eb77c24e3dbff43b9bcffb3a8f655ce353f0d7d7de01e6cee82b48966a68109f6e61a9fb71757a0b41128b606f633c5
6
+ metadata.gz: b7009e00828a455a10df2752e85f32b142877208a1587e3c8b60b066c3fe2da720ffa0f7b9e65d040cb671d47096aa2ce3bbe674134252fdfb54d82cbd361023
7
+ data.tar.gz: 9497a661575f85196eb05cc78877dd012cd709e52be783526cdbbb05d1bc3c61a7852a06cbedc8f659c23c2029cd405365a54522d12154f2aa9b91ffcf0e2420
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 0.1.0-alpha.1
1
+ #### 0.1.0-alpha.1
2
2
 
3
3
  * baseline release identical to **sensu-community-plugins** repo
4
4
  * basic yard coverage
@@ -6,10 +6,15 @@
6
6
  * built against 1.9.3, 2.0, 2.1
7
7
  * cryptographically signed
8
8
 
9
- ### 0.0.1-alpha.2
9
+ #### 0.0.1-alpha.2
10
10
 
11
11
  * bump Vagrant to Chef 6.6
12
12
  * update LICENSE and gemspec authors
13
13
  * update README
14
14
  * add required Ruby version *>= 1.9.3*
15
15
  * add test/spec_help.rb
16
+
17
+ #### 0.0.1
18
+
19
+ * Update CONTRIBUTING
20
+ * Update README
data/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-datadog.svg)](http://badge.fury.io/rb/sensu-plugins-datadog)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-datadog/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-datadog)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-datadog/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-datadog)
7
+ [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-datadog.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-datadog)
7
8
 
8
9
  ## Functionality
9
10
  ```json
@@ -17,25 +18,51 @@
17
18
  ```
18
19
  ## Files
19
20
 
20
- #### bin/datadog-metrics.rb
21
+ **bin/datadog-metrics.rb**
22
+
21
23
  Send metrics to datadog
22
-
23
- #### bin/datadog-notification.rb
24
+
25
+ **bin/datadog-notification.rb**
26
+
24
27
  Send event data to datadog
25
28
 
29
+ ## Usage
30
+
26
31
  ## Installation
27
32
 
28
33
  Add the public key (if you haven’t already) as a trusted certificate
29
34
 
30
35
  ```
31
36
  gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
32
- gem install <gem> -P MediumSecurity
37
+ gem install sensu-plugins-datadog -P MediumSecurity
33
38
  ```
34
39
 
35
40
  You can also download the key from /certs/ within each repository.
36
41
 
42
+ #### Rubygems
43
+
37
44
  `gem install sensu-plugins-datadog`
38
45
 
39
- Add *sensu-plugins-datadog* to your Gemfile, manifest, cookbook, etc
46
+ #### Bundler
47
+
48
+ Add *sensu-plugins-datadog* to your Gemfile and run `bundle install` or `bundle update`
49
+
50
+ #### Chef
51
+
52
+ Using the Sensu **sensu_gem** LWRP
53
+ ```
54
+ sensu_gem 'sensu-plugins-datadog' do
55
+ options('--prerelease')
56
+ version '0.0.1.alpha.1'
57
+ end
58
+ ```
59
+
60
+ Using the Chef **gem_package** resource
61
+ ```
62
+ gem_package 'sensu-plugins-datadog' do
63
+ options('--prerelease')
64
+ version '0.0.1.alpha.1'
65
+ end
66
+ ```
40
67
 
41
68
  ## Notes
@@ -3,5 +3,5 @@
3
3
  #
4
4
  module SensuPluginsDatadog
5
5
  # Gem version
6
- VERSION = '0.0.1.alpha.2'
6
+ VERSION = '0.0.1'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-datadog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha.2
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yieldbot, Inc. 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-02-01 00:00:00.000000000 Z
33
+ date: 2015-02-11 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: datadog
@@ -201,9 +201,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
201
201
  version: 1.9.3
202
202
  required_rubygems_version: !ruby/object:Gem::Requirement
203
203
  requirements:
204
- - - '>'
204
+ - - '>='
205
205
  - !ruby/object:Gem::Version
206
- version: 1.3.1
206
+ version: '0'
207
207
  requirements: []
208
208
  rubyforge_project:
209
209
  rubygems_version: 2.0.14
metadata.gz.sig CHANGED
Binary file