forked from sensu/sensu-community-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-redis-list-length.rb
executable file
·88 lines (75 loc) · 2.42 KB
/
check-redis-list-length.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env ruby
#
# Checks number of items in a Redis list key
# ===
#
# Depends on redis gem
# gem install redis
#
# Copyright (c) 2013, Piavlo <[email protected]>
#
# Released under the same terms as Sensu (the MIT license); see LICENSE
# for details.
require 'rubygems' if RUBY_VERSION < '1.9.0'
require 'sensu-plugin/check/cli'
require 'redis'
class RedisListLengthCheck < Sensu::Plugin::Check::CLI
option :host,
:short => "-h HOST",
:long => "--host HOST",
:description => "Redis Host to connect to",
:required => false,
:default => '127.0.0.1'
option :port,
:short => "-p PORT",
:long => "--port PORT",
:description => "Redis Port to connect to",
:proc => proc {|p| p.to_i },
:required => false,
:default => 6379
option :database,
:short => "-n DATABASE",
:long => "--dbnumber DATABASE",
:description => "Redis database number to connect to",
:proc => proc {|p| p.to_i },
:required => false,
:default => 0
option :password,
:short => "-P PASSWORD",
:long => "--password PASSWORD",
:description => "Redis Password to connect with"
option :warn,
:short => "-w COUNT",
:long => "--warning COUNT",
:description => "COUNT warning threshold for number of items in Redis list key",
:proc => proc {|p| p.to_i },
:required => true
option :crit,
:short => "-c COUNT",
:long => "--critical COUNT",
:description => "COUNT critical threshold for number of items in Redis list key",
:proc => proc {|p| p.to_i },
:required => true
option :key,
:short => "-k KEY",
:long => "--key KEY",
:description => "Redis list KEY to check",
:required => true
def run
begin
options = {:host => config[:host], :port => config[:port], :db => config[:database]}
options[:password] = config[:password] if config[:password]
redis = Redis.new(options)
length = redis.llen(config[:key])
if (length >= config[:crit])
critical "Redis list #{config[:key]} length is above the CRITICAL limit: #{length} length / #{config[:crit]} limit"
elsif (length >= config[:warn])
warning "Redis list #{config[:key]} length is above the WARNING limit: #{length} length / #{config[:warn]} limit"
else
ok "Redis list #{config[:key]} length is below thresholds"
end
rescue
unknown "Could not connect to Redis server on #{config[:host]}:#{config[:port]}"
end
end
end