nagios_check_resque 1.0.0

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: ea510ab463796225c4c28151edfcf363ffa1cf3b
4
+ data.tar.gz: fcabefd39deea0fc6ab465b257497fc86f45b2f9
5
+ SHA512:
6
+ metadata.gz: 929d21db1b9987ee1b34df5f9d08bb64be6881ca47adc5cb467caf80bbe745372b03ab7b12236cdf52acb08bfd8adffa8c6ea13b0b1d02ba705cd43172f6990e
7
+ data.tar.gz: d5423867a518a023e70835bc4999737bf1d5c2e941d75458b1aaec371f9101b6a850846f8cca0bade454d09de15262afa03aed0a7704ad903b42c5c2cc0c80e0
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # CHANGELOG
2
+
3
+ ### Changes on `master`
4
+
5
+ [Compare changes](https://github.com/codevise/nagios_check_resque/compare/v1.0.0...master)
6
+
7
+ None so far.
8
+
9
+ ### Version 1.0.0
10
+
11
+ 2017-02-21
12
+
13
+ Initial release.
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at tfischbach@codevise.de. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in nagios_check_resque.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Codevise Solutions Ltd
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,110 @@
1
+ # Nagios Check Resque
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/nagios_check_resque.svg)](http://badge.fury.io/rb/nagios_check_resque)
4
+
5
+ Nagios plugins to check Resque queue sized and number of failed jobs.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'nagios_check_resque', require: false
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ ## Usage
20
+
21
+ The provides two executables. To check queue sizes, run:
22
+
23
+ $ bundle exec nagios_check_resque_queue_sizes --queues default,mailer -w 5 -c 8 -t 10
24
+
25
+ The result is OK if all given queues contain at most 5 jobs. If one
26
+ of the queues contains more than 5 but not more than 8 jobs, the
27
+ result is WARNING. If one of the queues contains more than 8 jobs,
28
+ the result is CRITICAL. If the command takes more than 10 seconds to
29
+ finish, the result is UNKNOWN.
30
+
31
+ The number of jobs in each queue is printed as key value pairs in the
32
+ performance data.
33
+
34
+ To check the number of failed jobs, run:
35
+
36
+ $ bundle exec nagios_check_resque_failed_jobs -w 5 -c 8 -t 10
37
+
38
+ The result is OK if there are at most 5 failed jobs. If there are
39
+ more than 5 failed jobs but not more than 8, the result is WARNING.
40
+ If there are more than 8 failed jobs, the result is CRITICAL. If the
41
+ command takes more than 10 seconds to finish, the result is UNKNOWN.
42
+
43
+ ## Example Nagios Configuration
44
+
45
+ You can define a custom Nagios command to invoke the executables via
46
+ SSH. Line breaks have been inserted to improve readability, but have
47
+ to be removed in the actual Nagios config.
48
+
49
+ ```
50
+ define command {
51
+ command_name check_by_ssh_resque_queue_sizes
52
+ command_line $USER1$/check_by_ssh -l nagios -H $HOSTADDRESS$
53
+ -C "BUNDLE_GEMFILE=/path/to/Gemfile
54
+ /usr/local/bin/bundle exec nagios_check_resque_queue_sizes
55
+ --queues $ARG2$
56
+ -w $ARG1$ -c $ARG2$ -t 10"
57
+ }
58
+
59
+ define command {
60
+ command_name check_by_ssh_resque_failed_jobs
61
+ command_line $USER1$/check_by_ssh -l nagios -H $HOSTADDRESS$
62
+ -C "BUNDLE_GEMFILE=/path/to/Gemfile
63
+ /usr/local/bin/bundle exec nagios_check_resque_failed_jobs
64
+ -w $ARG1$ -c $ARG2$ -t 10"
65
+ }
66
+ ```
67
+
68
+ They can then be used in host definitions:
69
+
70
+ ```
71
+ define service {
72
+ use generic-service
73
+ host_name some-host
74
+ service_description RESQUE_QUEUE_SIZES
75
+ check_command check_by_ssh_resque_queue_sizes!default!10!20
76
+ }
77
+
78
+ define service {
79
+ use generic-service
80
+ host_name some-host
81
+ service_description RESQUE_FAILED_JOBS
82
+ check_command check_by_ssh_resque_failed_jobs!0!10
83
+ }
84
+ ```
85
+
86
+ ## Development
87
+
88
+ After checking out the repo, run `bin/setup` to install
89
+ dependencies. You can also run `bin/console` for an interactive prompt
90
+ that will allow you to experiment.
91
+
92
+ To install this gem onto your local machine, run `bundle exec rake
93
+ install`. To release a new version, update the version number in
94
+ `version.rb`, and then run `bundle exec rake release`, which will
95
+ create a git tag for the version, push git commits and tags, and push
96
+ the `.gem` file to [rubygems.org](https://rubygems.org).
97
+
98
+ ## Contributing
99
+
100
+ Bug reports and pull requests are welcome on GitHub at
101
+ https://github.com/codevise/nagios_check_resque. This project is
102
+ intended to be a safe, welcoming space for collaboration, and
103
+ contributors are expected to adhere to the
104
+ [Contributor Covenant](http://contributor-covenant.org) code of
105
+ conduct.
106
+
107
+ ## License
108
+
109
+ The gem is available as open source under the terms of the
110
+ [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler/gem_tasks'
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "nagios_check_resque"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'nagios_check_resque/failed_jobs_check'
4
+
5
+ NagiosCheckResque::FailedJobsCheck.new.run
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'nagios_check_resque/queue_size_check'
4
+
5
+ NagiosCheckResque::QueueSizeCheck.new.run
@@ -0,0 +1,5 @@
1
+ require 'nagios_check_resque/version'
2
+
3
+ module NagiosCheckResque
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,29 @@
1
+ require 'nagios_check'
2
+
3
+ require 'resque'
4
+ require 'resque/failure/redis'
5
+
6
+ module NagiosCheckResque
7
+ # Warn if there are failed jobs
8
+ class FailedJobsCheck
9
+ include NagiosCheck
10
+
11
+ on '--redis-host HOST', default: 'redis://localhost:6379'
12
+
13
+ enable_warning
14
+ enable_critical
15
+ enable_timeout
16
+
17
+ def check
18
+ setup_resque
19
+ store_value(:failed, Resque::Failure::Redis.count)
20
+ end
21
+
22
+ private
23
+
24
+ def setup_resque
25
+ Resque.redis = Redis.new(host: options.redis_host)
26
+ Resque
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,42 @@
1
+ require 'nagios_check'
2
+ require 'resque'
3
+
4
+ module NagiosCheckResque
5
+ # Prevent jobs from queuing up
6
+ class QueueSizeCheck
7
+ include NagiosCheck
8
+
9
+ on '--queues QUEUES', :mandatory
10
+ on '--redis-host HOST', default: 'redis://localhost:6379'
11
+
12
+ enable_warning
13
+ enable_critical
14
+ enable_timeout
15
+
16
+ def check
17
+ setup_resque
18
+
19
+ store_value(:max, queue_sizes.values.max)
20
+
21
+ queue_sizes.each do |name, size|
22
+ store_value(name, size)
23
+ end
24
+ end
25
+
26
+ private
27
+
28
+ def queue_sizes
29
+ @queue_sizes ||= queues.each_with_object({}) do |name, sizes|
30
+ sizes[name] = Resque.size(name)
31
+ end
32
+ end
33
+
34
+ def queues
35
+ options.queues.split(',')
36
+ end
37
+
38
+ def setup_resque
39
+ Resque.redis = Redis.new(host: options.redis_host)
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,3 @@
1
+ module NagiosCheckResque
2
+ VERSION = '1.0.0'.freeze
3
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'nagios_check_resque/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'nagios_check_resque'
8
+ spec.version = NagiosCheckResque::VERSION
9
+ spec.authors = ['Codevise Solutions Ltd']
10
+ spec.email = ['info@codevise.de']
11
+
12
+ spec.summary = 'Nagios plugin to check Resque queue sizes.'
13
+ spec.homepage = 'http://github.com/codevise/nagios_check_resque'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = 'exe'
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.add_dependency 'nagios_check', '~> 0.4.0'
24
+ spec.add_dependency 'resque', '~> 1.25'
25
+
26
+ spec.add_development_dependency 'bundler', '~> 1.14'
27
+ spec.add_development_dependency 'rake', '~> 10.0'
28
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nagios_check_resque
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Codevise Solutions Ltd
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-02-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nagios_check
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.4.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.4.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: resque
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.25'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.25'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.14'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.14'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ description:
70
+ email:
71
+ - info@codevise.de
72
+ executables:
73
+ - nagios_check_resque_failed_jobs
74
+ - nagios_check_resque_queue_sizes
75
+ extensions: []
76
+ extra_rdoc_files: []
77
+ files:
78
+ - ".gitignore"
79
+ - CHANGELOG.md
80
+ - CODE_OF_CONDUCT.md
81
+ - Gemfile
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - exe/nagios_check_resque_failed_jobs
88
+ - exe/nagios_check_resque_queue_sizes
89
+ - lib/nagios_check_resque.rb
90
+ - lib/nagios_check_resque/failed_jobs_check.rb
91
+ - lib/nagios_check_resque/queue_size_check.rb
92
+ - lib/nagios_check_resque/version.rb
93
+ - nagios_check_resque.gemspec
94
+ homepage: http://github.com/codevise/nagios_check_resque
95
+ licenses:
96
+ - MIT
97
+ metadata: {}
98
+ post_install_message:
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ requirements: []
113
+ rubyforge_project:
114
+ rubygems_version: 2.6.8
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: Nagios plugin to check Resque queue sizes.
118
+ test_files: []