sensu-plugins-nginx 0.0.1.alpha.2

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: 97a27581bc50fe90f6e399854c5cbebb23f60c6b
4
+ data.tar.gz: e5483e528cc683874c6a7d32038d63899be86aea
5
+ SHA512:
6
+ metadata.gz: e2c0437f2adc86ea16145bf153725e280405cfb1188f7d4c1965a5cdc770e19c492d3d959391cb14768d88d1dd3d457c3b4a58639ab57b39af1f46204b3679fb
7
+ data.tar.gz: 4555f543c2140035ea02ce8ae45942c11075510ad82fb1bb4662c9a967fe8341a88090ba8606879db09909557df03dd94cc77daec1ab3fdc9b1b47b36252ff4a
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
1
+ #### 0.1.0-alpha.1
2
+
3
+ * baseline release identical to **sensu-community-plugins** repo
4
+ * basic yard coverage
5
+ * pinned dependencies
6
+ * built against 1.9.3, 2.0, 2.1
7
+ * cryptographically signed
8
+
9
+ #### 0.0.1-alpha.2
10
+
11
+ * bump Vagrant to Chef 6.6
12
+ * update LICENSE and gemspec authors
13
+ * update README
14
+ * add required Ruby version *>= 1.9.3*
15
+ * add test/spec_help.rb
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 devops@yieldbot.com
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,34 @@
1
+ ## Sensu-Plugins-nginx
2
+
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-nginx.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-nginx)
4
+ [![Gem Version](https://badge.fury.io/rb/sensu-plugins-nginx.svg)](http://badge.fury.io/rb/sensu-plugins-nginx)
5
+ [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx)
6
+ [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx)
7
+
8
+ ## Functionality
9
+
10
+ **nginx-metrics**
11
+
12
+ Fetch the nginx status page and convert the response into graphite metrics
13
+
14
+ ## Files
15
+ * bin/nginx-metrics.rb
16
+ Get the nginx metrics from the status page url for use with Graphite
17
+
18
+ ## Installation
19
+
20
+
21
+ Add the public key (if you haven’t already) as a trusted certificate
22
+
23
+ ```
24
+ gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
25
+ gem install <gem> -P MediumSecurity
26
+ ```
27
+
28
+ You can also download the key from /certs/ within each repository.
29
+
30
+ `gem install sensu-plugins-nginx`
31
+
32
+ Add *sensu-plugins-nginx* to your Gemfile, manifest, cookbook, etc
33
+
34
+ ## Notes
@@ -0,0 +1,115 @@
1
+ #! /usr/bin/env ruby
2
+ #
3
+ # nginx-metrics
4
+ #
5
+ # DESCRIPTION:
6
+ # Pull nginx metrics for backends through stub status module
7
+ #
8
+ # OUTPUT:
9
+ # metric data
10
+ #
11
+ # PLATFORMS:
12
+ # Linux
13
+ #
14
+ # DEPENDENCIES:
15
+ # gem: sensu-plugin
16
+ #
17
+ # USAGE:
18
+ # #YELLOW
19
+ #
20
+ # NOTES:
21
+ #
22
+ # LICENSE:
23
+ # Copyright 2012 Pete Shima <me@peteshima.com>
24
+ # Released under the same terms as Sensu (the MIT license); see LICENSE
25
+ # for details.
26
+ #
27
+
28
+ require 'sensu-plugin/metric/cli'
29
+ require 'net/https'
30
+ require 'uri'
31
+ require 'socket'
32
+
33
+ #
34
+ # Nginx Metrics
35
+ #
36
+ class NginxMetrics < Sensu::Plugin::Metric::CLI::Graphite
37
+ option :url,
38
+ short: '-u URL',
39
+ long: '--url URL',
40
+ description: 'Full URL to nginx status page, example: https://yoursite.com/nginx_status This ignores ALL other options EXCEPT --scheme'
41
+
42
+ option :hostname,
43
+ short: '-h HOSTNAME',
44
+ long: '--host HOSTNAME',
45
+ description: 'Nginx hostname'
46
+
47
+ option :port,
48
+ short: '-P PORT',
49
+ long: '--port PORT',
50
+ description: 'Nginx port',
51
+ default: '80'
52
+
53
+ option :path,
54
+ short: '-q STATUSPATH',
55
+ long: '--statspath STATUSPATH',
56
+ description: 'Path to your stub status module',
57
+ default: 'nginx_status'
58
+
59
+ option :scheme,
60
+ description: 'Metric naming scheme, text to prepend to metric',
61
+ short: '-s SCHEME',
62
+ long: '--scheme SCHEME',
63
+ default: "#{Socket.gethostname}.nginx"
64
+
65
+ # Main function
66
+ #
67
+ def run
68
+ found = false
69
+ attempts = 0
70
+ until found || attempts >= 10
71
+ attempts += 1
72
+ if config[:url]
73
+ uri = URI.parse(config[:url])
74
+ http = Net::HTTP.new(uri.host, uri.port)
75
+ if uri.scheme == 'https'
76
+ http.use_ssl = true
77
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
78
+ end
79
+ request = Net::HTTP::Get.new(uri.request_uri)
80
+ response = http.request(request)
81
+ if response.code == '200'
82
+ found = true
83
+ elsif !response.header['location'].nil?
84
+ config[:url] = response.header['location']
85
+ end
86
+ else
87
+ response = Net::HTTP.start(config[:hostname], config[:port]) do |connection|
88
+ request = Net::HTTP::Get.new("/#{config[:path]}")
89
+ connection.request(request)
90
+ end
91
+ end
92
+ end
93
+
94
+ # #YELLOW
95
+ response.body.split(/\r?\n/).each do |line| # rubocop:disable Style/Next
96
+ if line.match(/^Active connections:\s+(\d+)/)
97
+ connections = line.match(/^Active connections:\s+(\d+)/).to_a
98
+ output "#{config[:scheme]}.active_connections", connections[1]
99
+ end
100
+ if line.match(/^\s+(\d+)\s+(\d+)\s+(\d+)/)
101
+ requests = line.match(/^\s+(\d+)\s+(\d+)\s+(\d+)/).to_a
102
+ output "#{config[:scheme]}.accepted", requests[1]
103
+ output "#{config[:scheme]}.handled", requests[2]
104
+ output "#{config[:scheme]}.handles", requests[3]
105
+ end
106
+ if line.match(/^Reading:\s+(\d+).*Writing:\s+(\d+).*Waiting:\s+(\d+)/)
107
+ queue = line.match(/^Reading:\s+(\d+).*Writing:\s+(\d+).*Waiting:\s+(\d+)/).to_a
108
+ output "#{config[:scheme]}.reading", queue[1]
109
+ output "#{config[:scheme]}.writing", queue[2]
110
+ output "#{config[:scheme]}.waiting", queue[3]
111
+ end
112
+ end
113
+ ok
114
+ end
115
+ end
@@ -0,0 +1,7 @@
1
+ #
2
+ # Set gem version
3
+ #
4
+ module SensuPluginsNginx
5
+ # Gem version
6
+ VERSION = '0.0.1.alpha.2'
7
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,198 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sensu-plugins-nginx
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.alpha.2
5
+ platform: ruby
6
+ authors:
7
+ - Yieldbot, Inc. 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-02-01 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: sensu-plugin
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '='
40
+ - !ruby/object:Gem::Version
41
+ version: 1.1.0
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - '='
47
+ - !ruby/object:Gem::Version
48
+ version: 1.1.0
49
+ - !ruby/object:Gem::Dependency
50
+ name: codeclimate-test-reporter
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: rubocop
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 0.17.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 0.17.0
77
+ - !ruby/object:Gem::Dependency
78
+ name: rspec
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: '3.1'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: '3.1'
91
+ - !ruby/object:Gem::Dependency
92
+ name: bundler
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: '1.7'
98
+ type: :development
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ version: '1.7'
105
+ - !ruby/object:Gem::Dependency
106
+ name: rake
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: '10.0'
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: '10.0'
119
+ - !ruby/object:Gem::Dependency
120
+ name: github-markup
121
+ requirement: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ type: :development
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ - !ruby/object:Gem::Dependency
134
+ name: redcarpet
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ type: :development
141
+ prerelease: false
142
+ version_requirements: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - '>='
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ - !ruby/object:Gem::Dependency
148
+ name: yard
149
+ requirement: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - '>='
152
+ - !ruby/object:Gem::Version
153
+ version: '0'
154
+ type: :development
155
+ prerelease: false
156
+ version_requirements: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - '>='
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ description: Sensu nginx checks
162
+ email: <sensu-users@googlegroups.com>
163
+ executables:
164
+ - nginx-metrics.rb
165
+ extensions: []
166
+ extra_rdoc_files: []
167
+ files:
168
+ - bin/nginx-metrics.rb
169
+ - lib/sensu-plugins-nginx.rb
170
+ - LICENSE
171
+ - README.md
172
+ - CHANGELOG.md
173
+ homepage: https://github.com/sensu-plugins/sensu-plugins-nginx
174
+ licenses:
175
+ - MIT
176
+ metadata: {}
177
+ post_install_message:
178
+ rdoc_options: []
179
+ require_paths:
180
+ - lib
181
+ required_ruby_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - '>='
184
+ - !ruby/object:Gem::Version
185
+ version: 1.9.3
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - '>'
189
+ - !ruby/object:Gem::Version
190
+ version: 1.3.1
191
+ requirements: []
192
+ rubyforge_project:
193
+ rubygems_version: 2.0.14
194
+ signing_key:
195
+ specification_version: 4
196
+ summary: Sensu nginx checks
197
+ test_files: []
198
+ has_rdoc:
metadata.gz.sig ADDED
@@ -0,0 +1 @@
1
+ �m�V��;`��;�t�-�V@t�k,/��eIv4D(s�������xlA�� ޯ���J�x����7:O�5�]7K�;��G�w�*=���rXu�q=n�X���V��#��:�o�A���������C�l����l�e�rYc�l�o|븂�آ"\�#�7��n�DQ�W{o�լ��_�����_�/�ȸ-��q9�6�<�8�X�"-�w�P��?H�|��C������G %��D���,^�Nb�lK,�o