witre nagios plugin with python

来源:互联网 发布:mtv电子相册制作软件 编辑:程序博客网 时间:2024/05/18 02:04

Our Solarwinds Network Performance Monitor has a problem rendering custom reports on occasion. For something like that, there isn't an existing plugin for Nagios. Writing these plugins is easy. All there is to it is exit statuses. After reading this, you should have an idea of how to write a Nagios plugin for a variety of web applications.

 1 2 3 4 5 6 7 8 91011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
#!/usr/bin/env pythonfrom mechanize import Browserfrom optparse import OptionParser# Exit statuses recognized by NagiosUNKNOWN = -1OK = 0WARNING = 1CRITICAL = 2def open_url(br, url):    """Use a given mechanize.Browser to open url.    If an exception is raised, then exit with CRITICAL status for Nagios.    """    try:        response = br.open(url)    except Exception, e:        # Catching all exceptions is usually a bad idea.  We want to catch        # them all to report to Nagios here.        print 'CRITICAL - Could not reach page at %s: %s' % (url, e)        raise SystemExit, CRITICAL    return response# I'm going to be using optparse.OptionParser from now on.  It makes# command-line args a breeze.parser = OptionParser()parser.add_option('-H', '--hostname', dest='hostname')parser.add_option('-u', '--username', dest='username')parser.add_option('-p', '--password', dest='password')parser.add_option('-r', '--report_url', dest='url',    help="""Path to report relative to root, like    /NetPerfMon/Report.asp?Report=Hostname+__+IPs""")parser.add_option('-v', '--verbose', dest='verbose', action='store_true',    default=False)parser.add_option('-q', '--quiet', dest='verbose', action='store_false')options, args = parser.parse_args()# Check for required optionsfor option in ('hostname', 'username', 'password', 'url'):    if not getattr(options, option):        print 'CRITICAL - %s not specified' % option.capitalize()        raise SystemExit, CRITICAL# Go to the report and get a login pagebr = Browser()report_url = 'https://%s%s' % (options.hostname, options.url)open_url(br, report_url)br.select_form('aspnetForm')# Solarwinds has interesting field names# Maybe something with asp.netbr['ctl00$ContentPlaceHolder1$Username'] = options.usernamebr['ctl00$ContentPlaceHolder1$Password'] = options.password# Attempt to login.  If we can't, tell Nagios.try:    report = br.submit()except Exception, e:    print 'CRITICAL - Error logging in: e' % e    raise SystemExit, CRITICALreport_html = report.read()# class=Property occurs in every cell in a Solarwinds report.  If it's not# there, something is wrong.if 'class=Property' not in report_html:    print 'CRITICAL - Report at %s is down' % report_url    raise SystemExit, CRITICAL# If we got this far, let's tell Nagios the report is okay.print 'OK - Report at %s is up' % report_urlraise SystemExit, OK

To use our plugin, we need to do a bit of Nagios configuration. First, we need to define a command.

define command{    command_name    check_npm_reports    command_line    /usr/local/bin/reportmonitor.py -H $HOSTADDRESS$ $ARG1$}

After that, we define a service.

define service{    use         generic-service    host_name           solarwinds-server    service_description Solarwinds reports    check_command       check_npm_reports!-u nagios -p some_password -r '/NetPerfMon/Report.asp?Report=Hostname+__+IPs'}
原创粉丝点击