资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

nagios监控温度脚本

                              nagios监控温度之python脚本

创新互联建站长期为千余家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为平江企业提供专业的网站建设、成都网站设计平江网站改版等技术服务。拥有十余年丰富建站经验和众多成功案例,为您定制开发。

   由于机房温度夏天变高了,就写了一个脚本监控温度,利用nagios可以很直观的实时监控,同时本文对于用Python写nagios脚本的新手来说也是个借鉴,不啰嗦了代码如下:

ps:由于涉及到密码问题,使用“*”来代替密码部分:

#!/usr/bin/env python
# This file is part of the Glue Project.
# Copyright (C) by SanPolo Co.Ltd.
# All rights reserved.
#
# See http://www.spolo.org/ for more information.
#
# SanPolo Co.Ltd
# http://www.spolo.org/
# Any copyright issues, please contact: spolo@masols.com
# writed by wangzhenyu
# 2013-07-23
import os
import re
import sys
import paramiko
from optparse import OptionParser
TEMP_OK=0
TEMP_WR=1
TEMP_CR=2
TEMP_UK=3
usage=  """
    Usage: check_temp.py [-h | --help] [-H | --host]
    example: check_temp.py -H 192.168.1.4
    """
def check_temp(hostname):
    a=0
    index=0
    regex=re.compile(r'Core.*\+(\d+).*\+(\d+).*\+(\d+)')
    client=paramiko.SSHClient()
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect('%s' % hostname, 22, username='root', password="*********", timeout=4)
    stdin,stdout,stderr = client.exec_command("sensors")
    temp=stdout.readlines()
    for line in temp:
        match=regex.search(line)
        if match == None:
            pass
        else:
            index+=1
            a+=int(match.group(1))
    result=a/index
    if result <= 50:
        print "the average temprature of core: %d" % result
        sys.exit(TEMP_OK)
    elif result >50 and result <= 60:
        print "the temprature is high"
        sys.exit(TEMP_WR)
    elif result > 60 and result <= 80:
        print "so dangerous check it right now"
        sys.exit(TEMP_CR)
    else:
        print "the temprature is very high shutdown please"
        sys.exit(TEMP_UK)
def getoption():
    parser=OptionParser(add_help_option=False)
    parser.add_option("-h",action="store_const", const=1,dest="use_way",help="%s" % usage)
    parser.add_option("-H",dest="temp_cpu")
    (options,args)=parser.parse_args()
    hostname = options.temp_cpu
    if options.use_way:
        print usage
    if options.temp_cpu:
            
        check_temp(hostname)
getoption()

网页题目:nagios监控温度脚本
当前网址:http://cdkjz.cn/article/igiccg.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220