check_mk检测插件 - raid监控
mk_raidstatus
python版本
#!/usr/bin/env python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
import subprocess, re
def cfggen(): # 192.168.48.116
command = ['/opt/raid/cfggen 0 DISPLAY |egrep \'Controller type|Volume ID|Status of volume|RAID level|Size|Physical hard disks|Target ID|State|Model Number\'']
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, error = proc.communicate()
print '<<<raidstatus>>>'
print 'cfggen'
print out
def megacli64(): # 10.0.120.196, 10.20.10.237, 10.160.1.211
command = ['/opt/raid/MegaCli64 -ShowSummary -a0 -NoLog |egrep \'ProductName|Status|Connector|Product Id|State|Virtual drive|Size|State|RAID Level\'']
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, error = proc.communicate()
print '<<<raidstatus>>>'
print 'megacli64'
print out
def sas2ircu(): # 10.0.120.207, 10.160.1.36
command = ['/opt/raid/sas2ircu 0 DISPLAY |egrep \'Controller type|Volume ID|Status of volume|RAID level|Size|Slot #|State|Model Number\'']
proc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, error = proc.communicate()
print '<<<raidstatus>>>'
print 'sas2ircu'
print out
def check_model():
command = ['lspci |grep -Po \'SAS\s*\d+\' |sed -e \'s/ //g\'']
proc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, error = proc.communicate()
line = ' '.join(out.split())
m = re.match(r'(.*)(SAS\s*\d+)(.*)', line)
model = m.group(2).strip()
if model in ['SAS1068']:
cfggen()
elif model in ['SAS1078', 'SAS2108', 'SAS2208', 'SAS9240']:
megacli64()
elif model in ['SAS2008', 'SAS2308']:
sas2ircu()
if __name__ == '__main__':
check_model()
bash版本
#!/bin/bash
bin_path='/opt/raid'
model=$(lspci |grep -Po 'SAS\s*\d+'|sed -e 's/ //g')
case $model in
'SAS1068' )
echo '<<<raidstatus>>>'
echo 'cfggen'
$bin_path/cfggen 0 DISPLAY |egrep 'Controller type|Volume ID|Status of volume|RAID level|Size|Physical hard disks|Target ID|State|Model Number'
;;
'SAS1078'|'SAS2108'|'SAS2208'|'SAS9240' )
echo '<<<raidstatus>>>'
echo 'megacli64'
$bin_path/MegaCli64 -ShowSummary -a0 -NoLog |egrep 'ProductName|Status|Connector|Product Id|State|Virtual drive|Size|State|RAID Level'
;;
'SAS2008'|'SAS2308' )
echo '<<<raidstatus>>>'
echo 'sas2ircu'
$bin_path/sas2ircu 0 DISPLAY |egrep 'Controller type|Volume ID|Status of volume|RAID level|Size|Slot #|State|Model Number'
;;
esac
exit 0
raidstatus
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# output
'''
<<<raidstatus>>>
cfggen
Controller type : SAS1068
Volume ID : 0
Status of volume : Okay (OKY)
RAID level : 1
Size (in MB) : 285568
Physical hard disks (Target ID) : 9 1
Target ID : 1
State : Online (ONL)
Size (in MB)/(in sectors) : 286102/585937500
Model Number : ST3300657SS
Target ID : 8
State : Standby (SBY)
Model Number : BACKPLANE
Target ID : 9
State : Online (ONL)
Size (in MB)/(in sectors) : 286102/585937500
Model Number : ST3300657SS
'''
'''
<<<raidstatus>>>
megacli64
ProductName : PERC H710 Mini(Bus 0, Dev 0)
Status : Optimal
Status : Healthy
Product Id : BP12G+EXP
Status : OK
Connector : 00<Internal><Encl Pos 1 >: Slot 0
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 1
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 2
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 3
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 4
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 5
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 6
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 7
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 8
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 9
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 10
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 11
Product Id : ST2000VN000-1H31
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 12
Product Id : ST300MM0006
State : Online
Power State : Active
Connector : 00<Internal><Encl Pos 1 >: Slot 13
Product Id : ST300MM0006
State : Online
Power State : Active
Connector : 00<Internal>: Slot 0
Product Id : SAS2 EXP BP
State : Unconfigured Good
Power State : Active
Virtual drive : Target Id 0 ,VD name Virtual Disk 0
Size : 278.875 GB
State : Optimal
RAID Level : 1
Virtual drive : Target Id 1 ,VD name Virtual Disk 1
Size : 10.913 TB
State : Optimal
RAID Level : 10
'''
'''
<<<raid>>>
<<<raidstatus>>>
sas2ircu
Controller type : SAS2008
Volume ID : 323
Status of volume : Okay (OKY)
RAID level : RAID1
Size (in MB) : 1906394
Slot # : 5
State : Optimal (OPT)
Size (in MB)/(in sectors) : 1907729/3907029167
Model Number : ST32000645NS
Slot # : 6
State : Optimal (OPT)
Size (in MB)/(in sectors) : 1907729/3907029167
Model Number : ST32000645NS
'''
# the inventory function
def inventory_raidstatus(info):
#print info
inventory = []
inventory.append((None,None))
return inventory
def parse_cfggen(info):
'''
controller: SAS1068E
vdisks:
[
{'status': 'Okay', 'disk': '9 1', 'size': '285568MB', 'id': '0', 'level': '1'}
]
pdisks
[
{'status': 'Online', 'model': 'ST3300657SS', 'id': '1'},
{'status': 'Standby', 'model': 'BACKPLANE', 'id': '8'},
{'status': 'Online', 'model': 'ST3300657SS', 'id': '9'}
]
'''
vdisks = []
pdisks = []
vd = {}
pd = {}
for line in info:
if line[0] == 'Controller':
controller = line[3]
continue
if line[0] == 'Volume':
vd['id'] = line[3]
continue
if line[0] == 'Status':
vd['status'] = line[4]
continue
if line[0] == 'RAID':
vd['level'] = line[3]
continue
if line[0] == 'Size':
vd['size'] = line[4] + 'MB'
continue
if line[0] == 'Physical':
vd['disk'] = ' '.join(line[6:])
vdisks.append(vd)
vd = {}
continue
if line[0] == 'Target':
pd['id'] = line[3]
continue
if line[0] == 'State':
pd['status'] = line[2]
if line[0] == 'Model':
pd['model'] = line[3]
pdisks.append(pd)
pd = {}
continue
return controller, vdisks, pdisks
def parse_megacli64(info):
'''
controller: 'PERC H710'
vdisks:
[
{'status': 'Optimal', 'level': '1', 'id': '0', 'size': '278.875GB'},
{'status': 'Optimal', 'level': '10', 'id': '1', 'size': '10.913TB'}
]
pdisks
[
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '0'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '1'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '2'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '3'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '4'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '5'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '6'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '7'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '8'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '9'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '10'},
{'status': 'Online', 'model': 'ST2000VN000-1H31', 'id': '11'},
{'status': 'Online', 'model': 'ST300MM0006', 'id': '12'},
{'status': 'Online', 'model': 'ST300MM0006', 'id': '13'}
]
'''
vdisks = []
pdisks = []
vd = {}
pd = {}
for line in info:
if line[0] == 'ProductName':
controller = ' '.join(line[2:])
continue
if line[0] == 'Connector' and len(line) == 8:
pd['id'] = line[7]
continue
if line[0] == 'Product' and len(line) ==4:
pd['model'] = line[3]
continue
if line[0] == 'State' and len(line) == 3 and line[2] not in ['Optimal', 'Degraded']:
pd['status'] = line[2]
pdisks.append(pd)
pd = {}
continue
if line[0] == 'Virtual':
vd['id'] = line[5]
continue
if line[0] == 'Size':
vd['size'] = ''.join(line[2:4])
continue
if line[0] == 'State':
vd['status'] = line[2]
continue
if line[0] == 'RAID':
vd['level'] = line[3]
vdisks.append(vd)
vd = {}
continue
return controller, vdisks, pdisks
def parse_sas2ircu(info):
'''
controller: SAS2008
vdisks:
[
{'status': 'Okay', 'size': '1906394MB', 'id': '323', 'level': 'RAID1'}
]
pdisks
[
{'status': 'Optimal', 'model': 'ST32000645NS', 'id': '5'},
{'status': 'Optimal', 'model': 'ST32000645NS', 'id': '6'}
]
'''
vdisks = []
pdisks = []
vd = {}
pd = {}
for line in info:
if line[0] == 'Controller':
controller = line[3]
continue
if line[0] == 'Volume':
vd['id'] = line[3]
continue
if line[0] == 'Status':
vd['status'] = line[4]
continue
if line[0] == 'RAID':
vd['level'] = line[3]
continue
if line[0] == 'Size' and len(line) == 5:
vd['size'] = line[4] + 'MB'
vdisks.append(vd)
vd = {}
continue
if line[0] == 'Slot':
pd['id'] = line[3]
continue
if line[0] == 'State':
pd['status'] = line[2]
if line[0] == 'Model':
pd['model'] = line[3]
pdisks.append(pd)
pd = {}
continue
return controller, vdisks, pdisks
# the check function
def check_raidstatus(item, params, info):
# cfggen handle
if info[0][0] == 'cfggen':
controller, vdisks, pdisks = parse_cfggen(info)
if controller is None and len(vdisks) == 0 and len(pdisks) == 0:
status = 3
else:
status = 0
pids = []
vdinfo = []
pdinfo = []
for vdisk in vdisks:
pids += vdisk['disk'].split(' ')
if vdisk['status'] != 'Okay':
status = 2
vdinfo.append('vd' + vdisk['id'] + '(raid-' + vdisk['level'] + ', ' + vdisk['size'] + '): ' + vdisk['status'])
for pdisk in pdisks:
if pdisk['status'] not in ['Online', 'Standby'] and pdisk['id'] in pids:
pdinfo.append('pd' + pdisk['id'] + '(' + pdisk['model'] +'): ' + pdisk['status'])
# megacli64 handle
elif info[0][0] == 'megacli64':
controller, vdisks, pdisks = parse_megacli64(info)
if controller is None and len(vdisks) == 0 and len(pdisks) == 0:
status = 3
else:
status = 0
vdinfo = []
pdinfo = []
for vdisk in vdisks:
if vdisk['status'] != 'Optimal':
status = 2
vdinfo.append('VD' + vdisk['id'] + '(raid-' + vdisk['level'] + ', ' + vdisk['size'] + '): ' + vdisk['status'])
for pdisk in pdisks:
if pdisk['status'] != 'Online':
pdinfo.append('PD' + pdisk['id'] + '(' + pdisk['model'] +'): ' + pdisk['status'])
# sas2ircu handle
elif info[0][0] == 'sas2ircu':
controller, vdisks, pdisks = parse_sas2ircu(info)
if controller is None and len(vdisks) == 0 and len(pdisks) == 0:
status = 3
else:
status = 0
pids = []
vdinfo = []
pdinfo = []
for vdisk in vdisks:
if vdisk['status'] != 'Okay':
status = 2
vdinfo.append('vd' + vdisk['id'] + '(' + vdisk['level'] + ', ' + vdisk['size'] + '): ' + vdisk['status'])
for pdisk in pdisks:
if pdisk['status'] not in ['Optimal'] and pdisk['id'] in pids:
pdinfo.append('pd' + pdisk['id'] + '(' + pdisk['model'] +'): ' + pdisk['status'])
# check status & output
if status == 0:
if info[0][0] in ['cfggen']:
return (status, 'Controller Type: %s, Virtual Disks: %d, Physical Disks: %d' % (controller, len(vdisks), len(pids)))
else:
return (status, 'Controller Type: %s, Virtual Disks: %d, Physical Disks: %d' % (controller, len(vdisks), len(pdisks)))
elif status == 2:
return (status, 'Controller Type: %s, %s, %s' % (controller, ', '.join(vdinfo), ', '.join(pdinfo)))
else:
return (3, 'invalid check output')
# declare the check to Check_MK
check_info["raidstatus"] = {
'check_function': check_raidstatus,
'inventory_function': inventory_raidstatus,
'service_description': 'raidstatus',
'has_perfdata': False,
}
check_mk检测插件 - raid监控的更多相关文章
- check_mk检测插件编写
参考 Writing Checks (Introduction) Writing agent based checks The New Check API http://www2.steinkogle ...
- zabbix通过第三方插件percona监控mysql数据库
zabbix通过第三方插件percona监控mysql数据库 ...
- Sublime Text编辑工具带有 PEP 8 格式检测插件
Sublime Text编辑工具带有 PEP 8 格式检测插件
- 浏览器特性检测插件Feature.js
<script src="js/feature.js"></script> if (feature.webGL) { console.log("你 ...
- Java代码规范与质量检测插件SonarLint
1. SonarLint SonarLint是一个代码质量检测插件,可以帮助我们检测出代码中的坏味道 下载与安装 在需要检测的单个文件或者单个项目上右键 --> Analyze --> ...
- zabbix3.0.4使用percona-monitoring-plugins插件来监控mysql5.6的详细实现过程
zabbix3.0.4使用percona-monitoring-plugins插件来监控mysql5.6的详细实现过程 因为Zabbix自带的MySQL监控没有提供可以直接使用的Key,所以一般不采用 ...
- 《阿里巴巴 Java 开发规约》自动化检测插件安装及体验
2017 开春之际,有助于提高行业编码规范化水平的<阿里巴巴 Java 开发手册>首次面世.汇聚阿里集团近万名技术精英的经验知识,这套高含金量的手册一经公开,便引起业界普遍关注和学习. 历 ...
- check_mk通用应用检测插件
客户端mk_tvmapp import json filename = '/tmp/tvmapp.json' print '<<<tvmapp>>>' for a ...
- 基于PLC-C#串口通讯,温度检测和转速监控的c#/.Net实现。
我司为五金加工企业,其中有一条喷涂车间和流水线,客户要求能实时监控炉温温度.流水线速,并设置上下限值,达到上下限时报警. 开始考虑过USB的温度采集器,但是却没有找到带USB的光电开关,并且线路长度受 ...
随机推荐
- Qt 学习之路 2(13):对话框简介
Qt 学习之路 2(13):对话框简介 豆子 2012年9月14日 Qt 学习之路 2 53条评论 对话框是 GUI 程序中不可或缺的组成部分.很多不能或者不适合放入主窗口的功能组件都必须放在 ...
- 函数之-------------------------HR管理操作
import os import time def emplog(content): #记录操作的一个函数,在删除,添加,修改都会用到这一操作, f=open("emp.log", ...
- Lucene.Net和盘古分词应用
Lucene.Net.dll:用做全文索引 PanGu.dll(盘古分词):作为中文分词的条件 大致原理: 1.Lucene先根据PanGu将需要搜索的内容分隔.分词,然后根据分词的结果,做一个索引页 ...
- dynamic:动态类型简单用法,写法
class 动态创建数据 { //动态类型:本质感觉跟object的用法差不多,只是在执行的时候才知道数据类型 public dynamic Dynamic() { //定义一个动态类型,作为返回值 ...
- hive支持事务及单行操作 update delete
测试环境 Hive 1.2.1000.2.6.0.3-8 set hive.support.concurrency=true; set hive.exec.dynamic.partition.mod ...
- python模块之urllib
python文档官网地址:https://docs.python.org/3.6/library/urllib.html?highlight=urllib urllib 是一个收集以下模块以处理URL ...
- Redis未授权访问攻击过程与防范
一.Redis未授权访问攻击过程 攻击主机:kali 目标主机:centos6.8(10.104.11.178) Redis版本:2.8 攻击条件:默认配置,未进行认证 攻击步骤详解: 1.Kali攻 ...
- ZoomEye(钟馗之眼)搜索技巧记录:
做个记录方便查看 钟馗之眼: 指定搜索的组件: app:组件名称 ver:组件版本 例:搜索 apache组件版本2.4:app:apache var:2.4指定搜素的端口: ...
- django django中的HTML控件及参数传递方法 以及 HTML form 里的数据是怎么被包成http request 的?如何在浏览器里查看到这些数据?
https://www.jb51.net/article/136738.htm django中的HTML控件及参数传递方法 下面小编就为大家分享一篇django中的HTML控件及参数传递方法,具有很好 ...
- pip安装flask问题解决
环境:python 2.7 pip install virtualenv pip install flask 提示成功但无效 查看http://docs.jinkan.org/docs/flask/i ...