From ad382ef85627c019ce0c682152c4e226ce86b0f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B5=D0=B1=D0=B5=D0=BD=D0=BA=D0=B8=D0=BD=20?= =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Wed, 1 Aug 2018 18:32:05 +0300 Subject: [PATCH] =?UTF-8?q?first=20commit=20=D0=A0=D0=B5=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D0=B0=D0=BD=D1=8B=20=D0=BE=D1=81=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2=D0=BD=D1=8B=D0=B5=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=D1=8B?= =?UTF-8?q?=20=D0=B8=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=D1=8B.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/vcs.xml | 6 ++++++ config.json | 4 ++++ main.py | 1 + modPyZabbixSwn.py | 40 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 .idea/vcs.xml create mode 100644 config.json create mode 100644 main.py create mode 100644 modPyZabbixSwn.py diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..af5df6b --- /dev/null +++ b/config.json @@ -0,0 +1,4 @@ +{ + "hostname": "hostname1", + "zabbix_server": "10.3.2.5" +} diff --git a/main.py b/main.py new file mode 100644 index 0000000..5f7ce86 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +#!/usr/bin/env python3 \ No newline at end of file diff --git a/modPyZabbixSwn.py b/modPyZabbixSwn.py new file mode 100644 index 0000000..3aadede --- /dev/null +++ b/modPyZabbixSwn.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 + + +from pyzabbix import ZabbixMetric, ZabbixSender # py-zabbix module +import requests +import json +import os +import sys + + +class ZabbixSenderSwn: + def __init__(self, server, host, data): + self.server = server + self.host = host + self.data = data + self.packet = [] + + def make_packet(self): + if len(self.packet) != 0: + return self.packet + for line in self.data: + self.packet.append(ZabbixMetric(self.host, line[0], line[1])) + + def send_packet(self): + if len(self.packet) == 0: + self.make_packet() + return ZabbixSender(self.server).send(self.packet) + + +def read_conf(): + path = os.path.dirname(os.path.realpath(__file__)) + conf_file = os.path.join(path, 'config.json') + with open(conf_file) as f: + conf = json.load(f) + return conf + +def just_send(data): + conf = read_conf() + s = ZabbixSenderSwn(conf["zabbix_server"], conf["host"], data = []) + s.send_packet()