sensu-plugins-datadog 0.0.1.alpha.2 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGELOG.md +7 -2
- data/README.md +32 -5
- data/lib/sensu-plugins-datadog.rb +1 -1
- metadata +4 -4
- 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: 22f452f0abd67b7b74e3cb5b86cd10c5fa0fa11a
|
4
|
+
data.tar.gz: 0afa9911e55fb6cfde3cbe41547ec748fe527662
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
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
|
-
|
21
|
+
**bin/datadog-metrics.rb**
|
22
|
+
|
21
23
|
Send metrics to datadog
|
22
|
-
|
23
|
-
|
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
|
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
|
-
|
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
|
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
|
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-
|
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:
|
206
|
+
version: '0'
|
207
207
|
requirements: []
|
208
208
|
rubyforge_project:
|
209
209
|
rubygems_version: 2.0.14
|
metadata.gz.sig
CHANGED
Binary file
|