sensu-plugins-jolokia-metrics 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 948f9971f9210fabdc2fdac6788890686b080e26
4
+ data.tar.gz: 1373283f01a6a9e106c034ec0b27d4aa228b4115
5
+ SHA512:
6
+ metadata.gz: 411816d1eee0d0251c6e309ed6f5fc6cb58acde20f1df5990acc500f317dd566908ca7f5df83cca6b0fcd8518019dad2d2f39247a51c9fda8cc15e24bc8972b0
7
+ data.tar.gz: 5439b3562acd03d42d9dac19923f501ff2f1bedbeea8cc9a4c965e7c594327e3d09b9e1d15c6ebb04118228fc007cb617ea308f0424f29d0aa7eeebbde8b4342
@@ -0,0 +1,11 @@
1
+ # Change Log
2
+ This project adheres to [Semantic Versioning](http://semver.org/).
3
+
4
+ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
5
+
6
+ ## [Unreleased]
7
+
8
+ ## [0.0.1] - 2020-03-31
9
+
10
+ ### Added
11
+ - Initial release
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.
@@ -0,0 +1,146 @@
1
+ [![Sensu Bonsai Asset](https://img.shields.io/badge/Bonsai-Download%20Me-brightgreen.svg?colorB=89C967&logo=sensu)](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-jolokia-metrics)
2
+ [![Build Status](https://travis-ci.org/fgouteroux/sensu-plugins-jolokia-metrics.svg?branch=master)](https://travis-ci.org/fgouteroux/sensu-plugins-jolokia-metrics)
3
+
4
+ ## Sensu Jolokia Metrics Plugin
5
+
6
+ - [Overview](#overview)
7
+ - [Usage examples](#usage-examples)
8
+ - [Configuration](#configuration)
9
+ - [Sensu Go](#sensu-go)
10
+ - [Asset definition](#asset-definition)
11
+ - [Check definition](#check-definition)
12
+ - [Sensu Core](#sensu-core)
13
+ - [Check definition](#check-definition)
14
+ - [Functionality](#functionality)
15
+ - [Installation](#installation)
16
+
17
+ ### Overview
18
+
19
+ This plugin provides native HTTP instrumentation for jolokia metrics collection.
20
+
21
+ The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io)
22
+
23
+ #### Files
24
+ * bin/jolokia-metrics.rb
25
+
26
+ ## Usage examples
27
+
28
+ **jolokia-metrics.rb**
29
+ ```
30
+ Usage: jolokia-metrics.rb (options)
31
+ -u, --url URL Full URL to the jolokia endpoint
32
+ -f, --file FILE File path with metrics name to retrieve
33
+ -s, --scheme SCHEME Metric naming scheme, text to prepend to metric
34
+ -d, --debug Include debug output, should not use in production.
35
+ -k, --insecure Disable SSL verification
36
+ ```
37
+
38
+ ### Configuration
39
+ #### Sensu Go
40
+ ##### Asset registration
41
+
42
+ Assets are the best way to make use of this plugin. If you're not using an asset, please consider doing so! If you're using sensuctl 5.13 or later, you can use the following command to add the asset:
43
+
44
+ `sensuctl asset add fgouteroux/sensu-plugins-jolokia-metrics`
45
+
46
+ If you're using an earlier version of sensuctl, you can download the asset definition from [this project's Bonsai Asset Index page](https://bonsai.sensu.io/assets/fgouteroux/sensu-plugins-jolokia-metrics).
47
+
48
+ ##### Asset definition
49
+
50
+ ```yaml
51
+ ---
52
+ type: Asset
53
+ api_version: core/v2
54
+ metadata:
55
+ name: sensu-plugins-jolokia-metrics
56
+ spec:
57
+ url: https://assets.bonsai.sensu.io/30d8361243af8c7806e2d6db4a6dc576dab02966/sensu-plugins-jolokia-metrics_0.0.2_centos_linux_amd64.tar.gz
58
+ sha512: eb39c9c92984975c9339dcaddefba9fa6d1bc52b6ae73693ca4d4e6068a0b320e3d6eeb69afdd8c1210222953effd520ffc24687eba7d433c92c44f797c99c5c
59
+ ```
60
+
61
+ ##### Check definition
62
+
63
+ ```yaml
64
+ ---
65
+ type: CheckConfig
66
+ spec:
67
+ command: "jolokia-metrics.rb --url http://localhost:8778/jolokia/read --file /tmp/metrics.beans.yaml"
68
+ handlers: []
69
+ high_flap_threshold: 0
70
+ interval: 10
71
+ low_flap_threshold: 0
72
+ publish: true
73
+ runtime_assets:
74
+ - sensu-plugins-jolokia-metrics
75
+ - sensu-ruby-runtime
76
+ subscriptions:
77
+ - linux
78
+ output_metric_format: graphite_plaintext
79
+ output_metric_handlers:
80
+ - graphite
81
+ ```
82
+ #### Sensu Core
83
+ ##### Check definition
84
+ ```json
85
+ {
86
+ "checks": {
87
+ "check-jolokia-metrics": {
88
+ "command": "jolokia-metrics.rb --url http://localhost:8778/jolokia/read --file /tmp/metrics.beans.yaml",
89
+ "subscribers": [
90
+ "servers"
91
+ ],
92
+ "interval": 60
93
+ }
94
+ }
95
+ }
96
+ ```
97
+
98
+ ### Functionality
99
+
100
+ **jolokia-metrics.rb**
101
+
102
+ Collect jolokia metrics defined in an yaml file with one single post request.
103
+
104
+
105
+ **/tmp/metrics.beans.yaml**
106
+ ```yaml
107
+ data:
108
+ - {"type": "read", "mbean": "java.lang:type=Memory"}
109
+ - {"type": "read", "mbean": "java.lang:type=Threading"}
110
+ - {"type": "read", "mbean": "java.lang:type=GarbageCollector,name=*"}
111
+ - {"type": "read", "mbean": "kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec"}
112
+ - {"type": "read", "mbean": "kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec"}
113
+ - {"type": "read", "mbean": "kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec"}
114
+ ```
115
+
116
+ It's possible to define custom patterns to escape metric characters.
117
+ Is some case java mbean can be named like this: 'java.lang:type=Memory'
118
+
119
+
120
+ To escape, add the key 'patterns' in config file:
121
+
122
+ ```yaml
123
+ patterns:
124
+ - ['*', '_'] # default value
125
+ - ['.', '_'] # default value
126
+ - [',', '.'] # default value
127
+ - [' ', '_'] # default value
128
+ - ['(', ''] # default value
129
+ - [')', ''] # default value
130
+ - [':', '.'] # default value
131
+ - ['name=', '']
132
+ - ['type=', '']
133
+ - ['request=', '']
134
+ ```
135
+
136
+ If this key 'patterns' is not defined default value are applied.
137
+
138
+
139
+ ## Installation
140
+
141
+ ### Sensu Go
142
+
143
+ See the instructions above for [asset registration](#asset-registration)
144
+
145
+ ### Sensu Core
146
+ Install and setup plugins on [Sensu Core](https://docs.sensu.io/sensu-core/latest/installation/installing-plugins/)
@@ -0,0 +1,145 @@
1
+ #! /usr/bin/env ruby
2
+ # frozen_string_literal: false
3
+
4
+ # jolokia-metrics.rb
5
+ #
6
+ # DESCRIPTION:
7
+ # Read metrics from jolokia HTTP endpoint.
8
+ #
9
+ # OUTPUT:
10
+ # Graphite formatted data
11
+ #
12
+ # PLATFORMS:
13
+ # Linux
14
+ #
15
+ # DEPENDENCIES:
16
+ # gem: sensu-plugin
17
+ # gem: rest-client
18
+ #
19
+ # USAGE:
20
+ # EX: ./jolokia-metrics.rb -u http://127.0.0.1:8080/jolokia/read -f jmx_beans.yaml
21
+ #
22
+ # LICENSE:
23
+ # Arnaud Delalande <arnaud.delalande@adevo.fr>
24
+ # Francois Gouteroux <francois.gouteroux@gmail.com>
25
+ # Released under the same terms as Sensu (the MIT license); see LICENSE
26
+ # for details.
27
+ #
28
+
29
+ require 'sensu-plugin/metric/cli'
30
+ require 'rest-client'
31
+ require 'socket'
32
+ require 'yaml'
33
+ require 'json'
34
+ #
35
+ # Jolokia2Graphite - see description above
36
+ #
37
+ class Jolokia2Graphite < Sensu::Plugin::Metric::CLI::Graphite
38
+ option :url,
39
+ description: 'Full URL to the endpoint',
40
+ short: '-u URL',
41
+ long: '--url URL',
42
+ default: 'http://localhost:8778/jolokia/read'
43
+
44
+ option :scheme,
45
+ description: 'Metric naming scheme',
46
+ short: '-s SCHEME',
47
+ long: '--scheme SCHEME',
48
+ default: Socket.gethostname.to_s.gsub!('.', '_')
49
+
50
+ option :file,
51
+ description: 'File path with metrics definitions to retrieve',
52
+ short: '-f FILE',
53
+ long: '--file FILE'
54
+
55
+ option :insecure,
56
+ description: 'By default, every SSL connection made is verified to be secure. This option allows you to disable the verification',
57
+ short: '-k',
58
+ long: '--insecure',
59
+ boolean: true,
60
+ default: false
61
+
62
+ option :debug,
63
+ short: '-d',
64
+ long: '--debug',
65
+ default: false
66
+
67
+ def deep_value(metric, input, timestamp, patterns)
68
+ case input
69
+ when Hash
70
+ input.each do |key, value|
71
+ deep_value("#{metric}.#{escape_metric(key, patterns)}", value, timestamp, patterns)
72
+ end
73
+ when Numeric
74
+ output metric, input, timestamp
75
+ end
76
+ end
77
+
78
+ def escape_metric(name, patterns)
79
+ res = name.dup
80
+
81
+ if patterns.empty?
82
+ patterns = [
83
+ ['*', '_'],
84
+ ['.', '_'],
85
+ [',', '.'],
86
+ [' ', '_'],
87
+ ['(', ''],
88
+ [')', ''],
89
+ [':', '.'],
90
+ ['=', '.']
91
+ ]
92
+ end
93
+ patterns.each { |replace| res.gsub!(replace[0], replace[1]) }
94
+ res
95
+ end
96
+
97
+ def run
98
+ puts "args config: #{config}" if config[:debug]
99
+
100
+ begin
101
+ cnf = YAML.load_file(config[:file])
102
+ patterns = cnf['patterns'] || []
103
+ rescue StandardError => e
104
+ puts "Error: #{e.backtrace}"
105
+ critical "Error: #{e}"
106
+ end
107
+
108
+ begin
109
+ data = RestClient::Request.execute(
110
+ url: config[:url],
111
+ method: :post,
112
+ payload: cnf['data'].to_json,
113
+ headers: { content_type: 'application/json' },
114
+ verify_ssl: !config[:insecure]
115
+ )
116
+ puts "Http response: #{data}" if config[:debug]
117
+
118
+ ::JSON.parse(data).each do |resp|
119
+ if !resp['status'] || (resp['status'] != 200)
120
+ err = resp.to_yaml[0..300]
121
+ if config[:debug]
122
+ err = resp.to_yaml
123
+ end
124
+ warn "Error status: #{resp['status']} - Stacktrace: #{err}"
125
+ next
126
+ end
127
+ mbean = resp['request']['mbean']
128
+ attribute = resp['request']['attribute']
129
+ path = resp['request']['path']
130
+ if mbean && !mbean.include?('*')
131
+ path_ = [mbean, attribute, path].reject { |c| !c || c.is_a?(Array) }.map { |c| escape_metric(c, patterns) }.join('.')
132
+ metric = [config[:scheme].to_s, path_].select { |c| c }.compact.join('.')
133
+ else
134
+ metric = config[:scheme].to_s
135
+ end
136
+ deep_value(metric.to_s, resp['value'], resp['timestamp'], patterns)
137
+ end
138
+ rescue Errno::ECONNREFUSED
139
+ critical "#{config[:url]} is not responding"
140
+ rescue RestClient::RequestTimeout
141
+ critical "#{config[:url]} Connection timed out"
142
+ end
143
+ ok
144
+ end
145
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sensu-plugins-jolokia-metrics/version'
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SensuPluginsJolokiaMetrics
4
+ module Version
5
+ MAJOR = 0
6
+ MINOR = 0
7
+ PATCH = 1
8
+
9
+ VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,282 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sensu-plugins-jolokia-metrics
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
+ date: 2020-04-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rest-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sensu-plugin
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '4.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: github-markup
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: json
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: '2.3'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: '2.3'
83
+ - !ruby/object:Gem::Dependency
84
+ name: kitchen-docker
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: '2.6'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: '2.6'
97
+ - !ruby/object:Gem::Dependency
98
+ name: kitchen-localhost
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ version: '0.3'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: '0.3'
111
+ - !ruby/object:Gem::Dependency
112
+ name: kitchen-vagrant
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '1.3'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ version: '1.3'
125
+ - !ruby/object:Gem::Dependency
126
+ name: pry
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: '0.10'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: '0.10'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rake
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: '13.0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ version: '13.0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: rdoc
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - '>='
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: redcarpet
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: '3.2'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ~>
179
+ - !ruby/object:Gem::Version
180
+ version: '3.2'
181
+ - !ruby/object:Gem::Dependency
182
+ name: rspec
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ~>
186
+ - !ruby/object:Gem::Version
187
+ version: '3.1'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ~>
193
+ - !ruby/object:Gem::Version
194
+ version: '3.1'
195
+ - !ruby/object:Gem::Dependency
196
+ name: rubocop
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ~>
200
+ - !ruby/object:Gem::Version
201
+ version: 0.79.0
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ~>
207
+ - !ruby/object:Gem::Version
208
+ version: 0.79.0
209
+ - !ruby/object:Gem::Dependency
210
+ name: test-kitchen
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ~>
214
+ - !ruby/object:Gem::Version
215
+ version: 1.25.0
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ~>
221
+ - !ruby/object:Gem::Version
222
+ version: 1.25.0
223
+ - !ruby/object:Gem::Dependency
224
+ name: yard
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ~>
228
+ - !ruby/object:Gem::Version
229
+ version: 0.9.11
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ~>
235
+ - !ruby/object:Gem::Version
236
+ version: 0.9.11
237
+ description: |-
238
+ This plugin provides native HTTP instrumentation
239
+ for jolokia metrics collection.
240
+ email: <sensu-users@googlegroups.com>
241
+ executables:
242
+ - jolokia-metrics.rb
243
+ extensions: []
244
+ extra_rdoc_files: []
245
+ files:
246
+ - bin/jolokia-metrics.rb
247
+ - lib/sensu-plugins-jolokia-metrics.rb
248
+ - lib/sensu-plugins-jolokia-metrics/version.rb
249
+ - LICENSE
250
+ - README.md
251
+ - CHANGELOG.md
252
+ homepage: https://github.com/fgouteroux/sensu-plugins-jolokia-metrics
253
+ licenses:
254
+ - MIT
255
+ metadata:
256
+ maintainer: sensu-plugin
257
+ development_status: active
258
+ production_status: unstable - testing recommended
259
+ release_draft: 'false'
260
+ release_prerelease: 'false'
261
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
262
+ in /etc/default/sensu
263
+ rdoc_options: []
264
+ require_paths:
265
+ - lib
266
+ required_ruby_version: !ruby/object:Gem::Requirement
267
+ requirements:
268
+ - - '>='
269
+ - !ruby/object:Gem::Version
270
+ version: 2.3.0
271
+ required_rubygems_version: !ruby/object:Gem::Requirement
272
+ requirements:
273
+ - - '>='
274
+ - !ruby/object:Gem::Version
275
+ version: '0'
276
+ requirements: []
277
+ rubyforge_project:
278
+ rubygems_version: 2.0.14.1
279
+ signing_key:
280
+ specification_version: 4
281
+ summary: Sensu plugins for various http monitors and metrics
282
+ test_files: []