From 48e401e050f237e65a1dbb0931831cbaeb01bd36 Mon Sep 17 00:00:00 2001 From: Mikhail Grebenkin Date: Sat, 11 Aug 2018 23:05:14 +0300 Subject: [PATCH] Initial commit --- megacli_parser/megacli_parse.py | 169 +++++ megacli_parser/mix_megacli_parser.xml | 623 ++++++++++++++++++ sensors_parser/sensors_parse.py | 62 ++ .../zbx_export_mixTemplate_sensors.xml | 127 ++++ 4 files changed, 981 insertions(+) create mode 100644 megacli_parser/megacli_parse.py create mode 100644 megacli_parser/mix_megacli_parser.xml create mode 100644 sensors_parser/sensors_parse.py create mode 100644 sensors_parser/zbx_export_mixTemplate_sensors.xml diff --git a/megacli_parser/megacli_parse.py b/megacli_parser/megacli_parse.py new file mode 100644 index 0000000..37bce19 --- /dev/null +++ b/megacli_parser/megacli_parse.py @@ -0,0 +1,169 @@ +#! /usr/bin/env python +import subprocess +import sys +import os +import time + +ld_file = "/tmp/megacli-logical.out" +pd_file = "/tmp/megacli-physical.out" +ld_cmd = "cat /opt/py/megacli-logical.out" +pd_cmd = "cat /opt/py/megacli-physical.out" + +pd_dict = dict(slot='Slot Number', port_stat='Port status', size='Raw Size', data='Inquiry Data', + temp='Drive Temperature ', smart_err='Drive has flagged a S.M.A.R.T alert', + manufacter='Inquiry Data', model='Inquiry Data', serial='Inquiry Data') + +ld_dict = dict(num='Virtual Drive:', raid_lvl='RAID Level ', size='Size', state='State', pd_count='Number Of Drives') + + +def f_ld_discover(cli_out): + drives = [] + linesplit = '' + for line in cli_out: + if 'Virtual Drive:' in line: + linesplit = line.split(' ') + drives.append(str(linesplit[2])) + return drives + + +def f_pd_discover(cli_out): + drives = [] + linesplit = '' + for line in cli_out: + if 'Slot Number:' in line: + linesplit = line.split(' ') + drives.append(str(linesplit[2])) + return drives + + +def f_json_print(inp, name): + first = True + print("{") + print("\t\"data\":[") + for key in inp: + if not first: + sys.stdout.write(",") + else: + first = False + sys.stdout.write("\n\t\t{\"{#" + name + "}\":\"" + key + "\"}") + print("\n\t]") + print("}") + + +def f_read_file(path): + cli_out = [] + try: + f = open(path, 'r') + except Exception: + print(Exception) + return [] + else: + for line in f.readlines(): + cli_out.append(line.strip()) + f.close() + return cli_out + + +def f_read_cli(cmd, outfile): + outdata, stderr = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).communicate() + try: + f = open(outfile, 'w') + except Exception: + return 1 + else: + f.write(outdata) + f.close() + return 0 + + +def f_get_pd_val(slot, val, source): + data = f_read_file(source) + k = 0 + out = "" + for line in data: + if pd_dict['slot'] in line: + # print(line.strip().split(':')[1].strip()) + if line.strip().split(':')[1].strip() == slot: + k = 1 + if k == 0: + continue + if k == 1: + if pd_dict[val] in line: + out = line.strip().split(':')[1].strip().split() + if out != "": + break + if len(out) == 1 and out[0].isdigit(): + return out[0] + elif val == 'smart_err': + if out[0] == 'No': + return '0' + else: + return '1' + elif val == "manufacter": + return out[0].strip() + elif val == "model": + return out[1].strip() + elif val == "serial": + return out[2].strip() + elif val == 'size': + return out[0] + elif val == 'port_stat': + if out[0] == 'Active': + return '1' + else: + return '0' + elif val == 'temp': + return out[0][:-1] + + +def f_get_ld_val(num, val, source): + data = f_read_file(source) + k = 0 + out = "" + for line in data: + if ld_dict['num'] in line: + if line.split(':')[1].strip().split()[0].strip() == num: + k = 1 + if k == 0: + continue + if k == 1: + if ld_dict[val] in line: + out = line.split(':')[1].strip() + if out != "": + break + if val == 'raid_lvl': + return out + elif val == 'size': + return out.split()[0] + elif val == 'state': + if out.strip() == 'Optimal': + return '0' + else: + return '1' + elif val == 'pd_count': + return out.strip() + return out + + +if __name__ == '__main__': + if len(sys.argv) == 1 or len(sys.argv) == 3 or len(sys.argv) > 4: + print("Wrong args. Cache will be updated if necessary") + stat_pd = os.stat(pd_file) + stat_ld = os.stat(ld_file) + if (float(time.time()) - float(stat_pd.st_ctime)) > 50: + f_read_cli(pd_cmd, pd_file) + if (float(time.time()) - float(stat_ld.st_ctime)) > 50: + f_read_cli(ld_cmd, ld_file) + + if len(sys.argv) == 2: + if sys.argv[1] == "ld": + f_json_print(f_ld_discover(f_read_file(ld_file)), "LD") + if sys.argv[1] == "pd": + f_json_print(f_pd_discover(f_read_file(pd_file)), "PD") + elif len(sys.argv) == 4: + if sys.argv[1] == 'pd': + if sys.argv[3] in pd_dict.keys(): + print(f_get_pd_val(sys.argv[2], sys.argv[3], pd_file)) + if sys.argv[1] == 'ld': + if sys.argv[3] in ld_dict.keys(): + print(f_get_ld_val(sys.argv[2], sys.argv[3], ld_file)) diff --git a/megacli_parser/mix_megacli_parser.xml b/megacli_parser/mix_megacli_parser.xml new file mode 100644 index 0000000..7b85d7a --- /dev/null +++ b/megacli_parser/mix_megacli_parser.xml @@ -0,0 +1,623 @@ + + + 2.0 + 2015-11-18T08:30:50Z + + + mix_template + + + + + + diff --git a/sensors_parser/sensors_parse.py b/sensors_parser/sensors_parse.py new file mode 100644 index 0000000..a57f0eb --- /dev/null +++ b/sensors_parser/sensors_parse.py @@ -0,0 +1,62 @@ +#! /usr/bin/env python +import subprocess +import sys + + +def f_parse(sens_out): + CPUN = 0 + firstCPU = True + coreN = 0 + dimm = "0" + ret = {} + line_sp = "" + for line in sens_out: + if "DIMM" in line: + line_sp = line.split() + dimm = "DIMM" + line_sp[1] + "-" + line_sp[3][0] + ret[dimm] = line_sp[4][1:-3] + elif "coretemp" in line: + if firstCPU: + firstCPU = False + else: + CPUN = CPUN + 1 + elif "Core" in line: + line_sp = line.split() + coreN = "core" + str(CPUN) + "-" + line_sp[1][0] + ret[coreN] = line_sp[2][1:-3] + return(ret) + + +def f_sensors(): + res = subprocess.Popen(['sudo sensors'], stdout=subprocess.PIPE, shell=True) + sensors_out = res.stdout.readlines() + return(sensors_out) + + +def f_main(): + sensors_out = f_sensors() + sensors_parsed = f_parse(sensors_out) + return(sensors_parsed) + + +def f_json_print(inp): + first = True + print("{") + print("\t\"data\":[") + for key in inp: + if not first: + sys.stdout.write(",") + else: + first = False + sys.stdout.write("\n\t\t{\"{#SENSOR}\":\"" + key + "\"}") + print("\n\t]") + print("}") + + +if __name__ == '__main__': + out = {} + out = f_main() + if len(sys.argv) == 2 and sys.argv[1]: + print((out.get(sys.argv[1], "error"))) + else: + f_json_print(out) diff --git a/sensors_parser/zbx_export_mixTemplate_sensors.xml b/sensors_parser/zbx_export_mixTemplate_sensors.xml new file mode 100644 index 0000000..51db76f --- /dev/null +++ b/sensors_parser/zbx_export_mixTemplate_sensors.xml @@ -0,0 +1,127 @@ + + + 2.0 + 2015-03-13T07:29:32Z + + + Linux servers + + + + + +