Browse Source

first commit

Реализованы основные классы и методы.
master
parent
commit
ad382ef856
4 changed files with 51 additions and 0 deletions
  1. +6
    -0
      .idea/vcs.xml
  2. +4
    -0
      config.json
  3. +1
    -0
      main.py
  4. +40
    -0
      modPyZabbixSwn.py

+ 6
- 0
.idea/vcs.xml View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

+ 4
- 0
config.json View File

@ -0,0 +1,4 @@
{
"hostname": "hostname1",
"zabbix_server": "10.3.2.5"
}

+ 1
- 0
main.py View File

@ -0,0 +1 @@
#!/usr/bin/env python3

+ 40
- 0
modPyZabbixSwn.py View File

@ -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()

Loading…
Cancel
Save

Powered by TurnKey Linux.