#! /usr/bin/env ruby # # check-dns # # DESCRIPTION: # This plugin checks DNS resolution using ruby `resolv`. # Note: if testing reverse DNS with -t PTR option, # results will not end with trailing '.' (dot) # # OUTPUT: # plain text # # PLATFORMS: # Linux, BSD # # DEPENDENCIES: # gem: sensu-plugin # # USAGE: # example commands # # NOTES: # Does it behave differently on specific platforms, specific use cases, etc # # LICENSE: # Copyright 2014 Sonian, Inc. and contributors. # Released under the same terms as Sensu (the MIT license); see LICENSE # for details. # require 'sensu-plugin/check/cli' require 'resolv' # # DNS # class DNS < Sensu::Plugin::Check::CLI option :domain, description: 'Domain to resolve (or ip if type PTR)', short: '-d DOMAIN', long: '--domain DOMAIN' option :type, description: 'Record type to resolve (A, AAAA, TXT, etc) use PTR for reverse lookup', short: '-t RECORD', long: '--type RECORD', default: 'A' option :server, description: 'Server to use for resolution', short: '-s SERVER', long: '--server SERVER' option :result, description: 'A positive result entry', short: '-r RESULT', long: '--result RESULT' option :warn_only, description: 'Warn instead of critical on failure', short: '-w', long: '--warn-only', boolean: true option :debug, description: 'Print debug information', long: '--debug', boolean: true def resolve_domain resolv = config[:server].nil? ? Resolv::DNS.new : Resolv::DNS.new(nameserver: [config[:server]]) if config[:type] == 'PTR' entries = resolv.getnames(config[:domain]).map(&:to_s) else entries = resolv.getaddresses(config[:domain]).map(&:to_s) end puts "Entries: #{entries}" if config[:debug] entries end def run unknown 'No domain specified' if config[:domain].nil? entries = resolve_domain if entries.length.zero? output = "Could not resolve #{config[:domain]}" config[:warn_only] ? warning(output) : critical(output) elsif config[:result] if entries.include?(config[:result]) ok "Resolved #{config[:domain]} including #{config[:result]}" else critical "Resolved #{config[:domain]} did not include #{config[:result]}" end else ok "Resolved #{config[:domain]} #{config[:type]} records" end end end