-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from athal7/add-result-count-check
Add check for alerting on query result count
- Loading branch information
Showing
3 changed files
with
110 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#!/usr/bin/env ruby | ||
# | ||
# MySQL Query Result Count Check | ||
# | ||
# Checks the length of a result set from a MySQL query. | ||
# | ||
# Copyright 2017 Andrew Thal <[email protected]> | ||
# | ||
# Released under the same terms as Sensu (the MIT license); see LICENSE | ||
# for details. | ||
|
||
require 'sensu-plugin/check/cli' | ||
require 'mysql' | ||
require 'inifile' | ||
|
||
class MysqlQueryCountCheck < Sensu::Plugin::Check::CLI | ||
option :host, | ||
short: '-h HOST', | ||
long: '--host HOST', | ||
description: 'MySQL Host to connect to', | ||
required: true | ||
|
||
option :port, | ||
short: '-P PORT', | ||
long: '--port PORT', | ||
description: 'MySQL Port to connect to', | ||
proc: proc(&:to_i), | ||
default: 3306 | ||
|
||
option :username, | ||
short: '-u USERNAME', | ||
long: '--user USERNAME', | ||
description: 'MySQL Username' | ||
|
||
option :password, | ||
short: '-p PASSWORD', | ||
long: '--pass PASSWORD', | ||
description: 'MySQL password', | ||
default: '' | ||
|
||
option :ini, | ||
short: '-i', | ||
long: '--ini VALUE', | ||
description: 'My.cnf ini file' | ||
|
||
option :socket, | ||
short: '-S SOCKET', | ||
long: '--socket SOCKET', | ||
description: 'MySQL Unix socket to connect to' | ||
|
||
option :warn, | ||
short: '-w COUNT', | ||
long: '--warning COUNT', | ||
description: 'COUNT warning threshold for number of items returned by the query', | ||
proc: proc(&:to_i), | ||
required: true | ||
|
||
option :crit, | ||
short: '-c COUNT', | ||
long: '--critical COUNT', | ||
description: 'COUNT critical threshold for number of items returned by the query', | ||
proc: proc(&:to_i), | ||
required: true | ||
|
||
option :query, | ||
short: '-q QUERY', | ||
long: '--query QUERY', | ||
description: 'Query to execute', | ||
required: true | ||
|
||
def run | ||
if config[:ini] | ||
ini = IniFile.load(config[:ini]) | ||
section = ini['client'] | ||
db_user = section['user'] | ||
db_pass = section['password'] | ||
else | ||
db_user = config[:user] | ||
db_pass = config[:password] | ||
end | ||
db = Mysql.real_connect(config[:hostname], db_user, db_pass, config[:database], config[:port].to_i, config[:socket]) | ||
length = db.query(config[:query]).count | ||
|
||
if length >= config[:crit] | ||
critical "Result count is above the CRITICAL limit: #{length} length / #{config[:crit]} limit" | ||
elsif length >= config[:warn] | ||
warning "Result count is above the WARNING limit: #{length} length / #{config[:warn]} limit" | ||
else | ||
ok 'Result count length is below thresholds' | ||
end | ||
|
||
rescue Mysql::Error => e | ||
errstr = "Error code: #{e.errno} Error message: #{e.error}" | ||
critical "#{errstr} SQLSTATE: #{e.sqlstate}" if e.respond_to?('sqlstate') | ||
|
||
rescue => e | ||
critical e | ||
|
||
ensure | ||
db.close if db | ||
end | ||
end |