sensu-plugins-pingdom 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8f0e4e0d3ce8dec25d6991be93bef53bdd58d5eb
4
+ data.tar.gz: 98b074b92401cde652c82c11b5d5082c83830ebf
5
+ SHA512:
6
+ metadata.gz: 9dc86dc458b850cb66999c5edc449601cc56a09a0dcedaa6b8b79b2b91a60703d2651fc6fc0830da23d43385ac115fd268cbd24063738b958a9ba7784355c4d8
7
+ data.tar.gz: 894bd64268041734f58aa7137d92d1e46ccd1aae8dce794067585871a83ab5b979e054fcc0395c4a9522d5dde123abcbdfacce2046a2788f34fd2c301a821b4d
checksums.yaml.gz.sig ADDED
@@ -0,0 +1 @@
1
+ ����_-�H��F��o�����cÕ�9����������]��3�%��v��?��[��d]���X[^C�i�Zd�1BT��Q���0��ٰ��ș$΋��
data/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ #Change Log
2
+ This project adheres to [Semantic Versioning](http://semver.org/).
3
+
4
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
+
6
+ ## Unreleased][unreleased]
7
+
8
+ ## 0.0.1 - 2015-05-21
9
+
10
+ ### Added
11
+ - initial release
12
+
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Sensu-Plugins
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,22 @@
1
+ ## Sensu-Plugins-pingdom
2
+
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-pingdom.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-pingdom)
4
+ [![Gem Version](https://badge.fury.io/rb/sensu-plugins-pingdom.svg)](http://badge.fury.io/rb/sensu-plugins-pingdom)
5
+ [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-pingdom/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-pingdom)
6
+ [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-pingdom/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-pingdom)
7
+ [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-pingdom.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-pingdom)
8
+ [![Codeship Status for sensu-plugins/sensu-plugins-pingdom](https://codeship.com/projects/df105a20-db4b-0132-445b-5ad94843e341/status?branch=master)](https://codeship.com/projects/79591)
9
+
10
+ ## Functionality
11
+
12
+ ## Files
13
+ * bin/check-pingdom-aggregates.rb
14
+ * bin/check-pingdom-credits.rb
15
+
16
+ ## Usage
17
+
18
+ ## Installation
19
+
20
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
21
+
22
+ ## Notes
@@ -0,0 +1,113 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Check Pingdom aggregates (checks down)
4
+ # ===
5
+ #
6
+ # Alerts if too many websites are down in the Pingdom account.
7
+ # Default crit is 1.
8
+ #
9
+ # Usage
10
+ # Authentication
11
+ # Pingdom's API requires 3 parameters for authentication:
12
+ # --user: the user's email
13
+ # --password: the user's password
14
+ # --application-key: create one at https://my.pingdom.com/account/appkeys
15
+ #
16
+ # Thresholds of website checks down
17
+ # --crit
18
+ # --warn
19
+ #
20
+ # --verbose: displays all check names that are down, as well as the count.
21
+ #
22
+ # Dependencies
23
+ #
24
+ # gem 'rest-client'
25
+ # gem 'json'
26
+ #
27
+ # Copyright 2013 Rock Solid Ops Inc. <hello@rocksolidops.com>
28
+ # Created by Mathieu Martin, 2013
29
+ #
30
+ # Released under the same terms as Sensu (the MIT license); see LICENSE
31
+ # for details.
32
+
33
+ require 'sensu-plugin/check/cli'
34
+ require 'rest-client'
35
+ require 'json'
36
+
37
+ class CheckPingdomAggregates < Sensu::Plugin::Check::CLI
38
+ option :user,
39
+ short: '-u EMAIL',
40
+ required: true
41
+ option :password,
42
+ short: '-p PASSWORD',
43
+ required: true
44
+ option :application_key,
45
+ short: '-k APP_KEY',
46
+ long: '--application-key APP_KEY',
47
+ required: true
48
+
49
+ option :warn,
50
+ short: '-w COUNT',
51
+ default: 1,
52
+ proc: proc(&:to_i),
53
+ required: true
54
+ option :crit,
55
+ short: '-c COUNT',
56
+ default: 1,
57
+ proc: proc(&:to_i),
58
+ required: true
59
+
60
+ option :timeout,
61
+ short: '-t SECS',
62
+ default: 10
63
+ option :verbose,
64
+ short: '-v'
65
+
66
+ def run
67
+ down_count = down_checks.size
68
+
69
+ if down_count >= config[:crit]
70
+ critical "There are #{down_count} pingdom checks down#{details}"
71
+ elsif down_count >= config[:warn]
72
+ warning "There are #{down_count} pingdom checks down#{details}"
73
+ else
74
+ ok "There are less than #{config[:warn]} checks down"
75
+ end
76
+ end
77
+
78
+ def details
79
+ return nil unless config[:verbose]
80
+ ":\n#{ down_checks.map { |check| "#{check[:name]} is down" }.join("\n") }"
81
+ end
82
+
83
+ def down_checks
84
+ # Cache the API call
85
+ @down_checks ||= api_call[:checks].select { |check| 'down' == check[:status] }
86
+ end
87
+
88
+ def api_call
89
+ resource = RestClient::Resource.new(
90
+ 'https://api.pingdom.com/api/2.0/checks',
91
+ user: config[:user],
92
+ password: config[:password],
93
+ headers: { 'App-Key' => config[:application_key] },
94
+ timeout: config[:timeout]
95
+ )
96
+ JSON.parse(resource.get, symbolize_names: true)
97
+
98
+ rescue RestClient::RequestTimeout
99
+ warning 'Connection timeout'
100
+ rescue SocketError
101
+ warning 'Network unavailable'
102
+ rescue Errno::ECONNREFUSED
103
+ warning 'Connection refused'
104
+ rescue RestClient::RequestFailed
105
+ warning 'Request failed'
106
+ rescue RestClient::RequestTimeout
107
+ warning 'Connection timed out'
108
+ rescue RestClient::Unauthorized
109
+ warning 'Missing or incorrect API credentials'
110
+ rescue JSON::ParserError
111
+ warning 'API returned invalid JSON'
112
+ end
113
+ end
@@ -0,0 +1,142 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Check Pingdom credits
4
+ # ===
5
+ #
6
+ # Checks that there are enough SMS credits and website checks left in a
7
+ # Pingdom account.
8
+ #
9
+ # Usage
10
+ # Authentication
11
+ # Pingdom's API requires 3 parameters for authentication:
12
+ # --user: the user's email
13
+ # --password: the user's password
14
+ # --application-key: create one at https://my.pingdom.com/account/appkeys
15
+ #
16
+ # Alerts
17
+ # SMS left
18
+ # --crit-available-sms
19
+ # --warn-available-sms
20
+ # Website checks left
21
+ # --crit-available-checks
22
+ # --warn-available-checks
23
+ #
24
+ # Dependencies
25
+ #
26
+ # gem 'rest-client'
27
+ # gem 'json'
28
+ #
29
+ # Copyright 2013 Rock Solid Ops Inc. <hello@rocksolidops.com>
30
+ # Created by Mathieu Martin, 2013
31
+ #
32
+ # Released under the same terms as Sensu (the MIT license); see LICENSE
33
+ # for details.
34
+
35
+ require 'sensu-plugin/check/cli'
36
+ require 'rest-client'
37
+ require 'json'
38
+
39
+ class CheckPingdomCredits < Sensu::Plugin::Check::CLI
40
+ option :user,
41
+ short: '-u EMAIL',
42
+ required: true
43
+ option :password,
44
+ short: '-p PASSWORD',
45
+ required: true
46
+ option :application_key,
47
+ short: '-k APP_KEY',
48
+ long: '--application-key APP_KEY',
49
+ required: true
50
+
51
+ option :warn_sms,
52
+ long: '--warn-available-sms COUNT',
53
+ default: 10,
54
+ proc: proc(&:to_i)
55
+ option :crit_sms,
56
+ long: '--crit-available-sms COUNT',
57
+ default: 5,
58
+ proc: proc(&:to_i)
59
+
60
+ option :warn_checks,
61
+ long: '--warn-available-checks COUNT',
62
+ default: 3,
63
+ proc: proc(&:to_i)
64
+ option :crit_checks,
65
+ long: '--crit-available-checks COUNT',
66
+ default: 1,
67
+ proc: proc(&:to_i)
68
+
69
+ option :timeout,
70
+ short: '-t SECS',
71
+ default: 10
72
+
73
+ def run
74
+ check_sms!
75
+ check_checks! # LOL @ name clashes
76
+ ok 'Pingdom credits ok' if sms_ok && checks_ok
77
+ end
78
+
79
+ attr_reader :sms_ok
80
+ attr_reader :checks_ok
81
+
82
+ def check_sms!
83
+ message = "Only #{available_sms} Pingdom SMS left (threshold %{threshold})"
84
+ if config[:crit_sms] >= available_sms
85
+ critical(message % { threshold: config[:crit_sms] })
86
+ elsif config[:warn_sms] >= available_sms
87
+ warning(message % { threshold: config[:warn_sms] })
88
+ else
89
+ @sms_ok = true
90
+ end
91
+ end
92
+
93
+ def check_checks!
94
+ message = "Only #{available_checks} Pingdom checks left (threshold %{threshold})"
95
+ if config[:crit_checks] >= available_checks
96
+ critical(message % { threshold: config[:crit_checks] })
97
+ elsif config[:warn_checks] >= available_checks
98
+ warning(message % { threshold: config[:warn_checks] })
99
+ else
100
+ @checks_ok = true
101
+ end
102
+ end
103
+
104
+ def available_sms
105
+ credits[:availablesms]
106
+ end
107
+
108
+ def available_checks
109
+ credits[:availablechecks]
110
+ end
111
+
112
+ def credits
113
+ # Cache the API call
114
+ @credits ||= api_call[:credits]
115
+ end
116
+
117
+ def api_call
118
+ resource = RestClient::Resource.new(
119
+ 'https://api.pingdom.com/api/2.0/credits',
120
+ user: config[:user],
121
+ password: config[:password],
122
+ headers: { 'App-Key' => config[:application_key] },
123
+ timeout: config[:timeout]
124
+ )
125
+ JSON.parse(resource.get, symbolize_names: true)
126
+
127
+ rescue RestClient::RequestTimeout
128
+ warning 'Connection timeout'
129
+ rescue SocketError
130
+ warning 'Network unavailable'
131
+ rescue Errno::ECONNREFUSED
132
+ warning 'Connection refused'
133
+ rescue RestClient::RequestFailed
134
+ warning 'Request failed'
135
+ rescue RestClient::RequestTimeout
136
+ warning 'Connection timed out'
137
+ rescue RestClient::Unauthorized
138
+ warning 'Missing or incorrect API credentials'
139
+ rescue JSON::ParserError
140
+ warning 'API returned invalid JSON'
141
+ end
142
+ end
@@ -0,0 +1,28 @@
1
+ require 'json'
2
+
3
+ # encoding: utf-8
4
+ module SensuPluginsPingdom
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-pingdom'
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
@@ -0,0 +1,14 @@
1
+ require 'sensu-plugins-pingdom/version'
2
+
3
+ # Load the defaults
4
+
5
+ #
6
+ # Default class
7
+ #
8
+ module SensuPluginsPingdom
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
14
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,246 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sensu-plugins-pingdom
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sensu-Plugins and contributors
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMRIwEAYDVQQDDAltYXR0
14
+ am9uZXMxGDAWBgoJkiaJk/IsZAEZFgh5aWVsZGJvdDETMBEGCgmSJomT8ixkARkW
15
+ A2NvbTAeFw0xNTAxMjgyMTAyNTFaFw0xNjAxMjgyMTAyNTFaMEMxEjAQBgNVBAMM
16
+ CW1hdHRqb25lczEYMBYGCgmSJomT8ixkARkWCHlpZWxkYm90MRMwEQYKCZImiZPy
17
+ LGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyTSzVYnO
18
+ CLgyrIyT1mBQakArQyW8xhi6MlDqyzXHJGeERT790U6EgoBVeS4XoK0ptFZNR8Tf
19
+ zko0w+Nv47TarSCgkPOaxY+mxWnAVR10dOmfeLr7huiMyps+YD56/EF2FqQ3jf/+
20
+ qohENfKD91qy1ieEy+Fn7Pf74ltbNKUdkb9a9eFXQ0DQ4ip5vik7DzjQkUTj4lca
21
+ k6ArwnmHX4YDhZoYtrQJ8jVktN0/+NtA40M5qkCYHNe5tUW25b/tKVYuioxG6b2Z
22
+ oIzaZxRLxf6HVAWpCVRT/F5+/yjigkX4u++eYacfLGleXQzoK7BL65vHGMJygWEE
23
+ 0TKGqFOrl/L0AQIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
24
+ HQ4EFgQUEf6a8Td7MrSZc8ImbLFZAENPbz0wIQYDVR0RBBowGIEWbWF0dGpvbmVz
25
+ QHlpZWxkYm90LmNvbTAhBgNVHRIEGjAYgRZtYXR0am9uZXNAeWllbGRib3QuY29t
26
+ MA0GCSqGSIb3DQEBBQUAA4IBAQBbzXAYA3BVGw8DZ0YYoY1VHPNEcH5qPIApmHO8
27
+ rvSmuUT0yMEi7u00H/5uHRFf4LleGT/+sTdyXKsNPGT9kdRuQEgwi+vf7Zfvd8aX
28
+ UF/+4VkEYf/8rV8Ere6u2QaWPgApdMV6JjKr1fAwCTd8AuGXNaWItiPPMseSQzLJ
29
+ JKP4hVvbc1d+oS925B1lcBiqn2aYvElbyNAVmQPywNNqkWmvtlqj9ZVJfV5HQLdu
30
+ 8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
+ HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
+ -----END CERTIFICATE-----
33
+ date: 2015-05-22 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: redphone
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '='
40
+ - !ruby/object:Gem::Version
41
+ version: 0.0.6
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - '='
47
+ - !ruby/object:Gem::Version
48
+ version: 0.0.6
49
+ - !ruby/object:Gem::Dependency
50
+ name: pagerduty
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '='
54
+ - !ruby/object:Gem::Version
55
+ version: 2.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: 2.0.1
63
+ - !ruby/object:Gem::Dependency
64
+ name: sensu-plugin
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '='
68
+ - !ruby/object:Gem::Version
69
+ version: 1.1.0
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '='
75
+ - !ruby/object:Gem::Version
76
+ version: 1.1.0
77
+ - !ruby/object:Gem::Dependency
78
+ name: codeclimate-test-reporter
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '0.4'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '0.4'
91
+ - !ruby/object:Gem::Dependency
92
+ name: rubocop
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.30'
98
+ type: :development
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '0.30'
105
+ - !ruby/object:Gem::Dependency
106
+ name: rspec
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '3.1'
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '3.1'
119
+ - !ruby/object:Gem::Dependency
120
+ name: bundler
121
+ requirement: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: '1.7'
126
+ type: :development
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: '1.7'
133
+ - !ruby/object:Gem::Dependency
134
+ name: rake
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '10.0'
140
+ type: :development
141
+ prerelease: false
142
+ version_requirements: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '10.0'
147
+ - !ruby/object:Gem::Dependency
148
+ name: github-markup
149
+ requirement: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '1.3'
154
+ type: :development
155
+ prerelease: false
156
+ version_requirements: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: '1.3'
161
+ - !ruby/object:Gem::Dependency
162
+ name: redcarpet
163
+ requirement: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: '3.2'
168
+ type: :development
169
+ prerelease: false
170
+ version_requirements: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - "~>"
173
+ - !ruby/object:Gem::Version
174
+ version: '3.2'
175
+ - !ruby/object:Gem::Dependency
176
+ name: yard
177
+ requirement: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: '0.8'
182
+ type: :development
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ requirements:
186
+ - - "~>"
187
+ - !ruby/object:Gem::Version
188
+ version: '0.8'
189
+ - !ruby/object:Gem::Dependency
190
+ name: pry
191
+ requirement: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - "~>"
194
+ - !ruby/object:Gem::Version
195
+ version: '0.10'
196
+ type: :development
197
+ prerelease: false
198
+ version_requirements: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - "~>"
201
+ - !ruby/object:Gem::Version
202
+ version: '0.10'
203
+ description: Sensu plugins for pingdom
204
+ email: "<sensu-users@googlegroups.com>"
205
+ executables: []
206
+ extensions: []
207
+ extra_rdoc_files: []
208
+ files:
209
+ - CHANGELOG.md
210
+ - LICENSE
211
+ - README.md
212
+ - bin/check-pingdom-aggregates.rb
213
+ - bin/check-pingdom-credits.rb
214
+ - lib/sensu-plugins-pingdom.rb
215
+ - lib/sensu-plugins-pingdom/version.rb
216
+ homepage: https://github.com/sensu-plugins/sensu-plugins-pingdom
217
+ licenses:
218
+ - MIT
219
+ metadata:
220
+ maintainer: ''
221
+ development_status: active
222
+ production_status: unstable - testing recommended
223
+ release_draft: 'false'
224
+ release_prerelease: 'false'
225
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
226
+ in /etc/default/sensu
227
+ rdoc_options: []
228
+ require_paths:
229
+ - lib
230
+ required_ruby_version: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: 1.9.3
235
+ required_rubygems_version: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - ">="
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ requirements: []
241
+ rubyforge_project:
242
+ rubygems_version: 2.4.6
243
+ signing_key:
244
+ specification_version: 4
245
+ summary: Sensu plugins for pingdom
246
+ test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1 @@
1
+ 0[fO����a�$���L�#3,��`�1P H�ҠB��{��V�T�ի��m+*&K g��o/���"d!�좁x����9X��ћ`?r`��%Z���fl��{A�pS+s�f`=�[�G"����}-�