You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1001 B

  1. #!/usr/bin/env python3
  2. from pyzabbix import ZabbixMetric, ZabbixSender # py-zabbix module
  3. import requests
  4. import json
  5. import os
  6. import sys
  7. class ZabbixSenderSwn:
  8. def __init__(self, server, host, data):
  9. self.server = server
  10. self.host = host
  11. self.data = data
  12. self.packet = []
  13. def make_packet(self):
  14. if len(self.packet) != 0:
  15. return self.packet
  16. for line in self.data:
  17. self.packet.append(ZabbixMetric(self.host, line[0], line[1]))
  18. def send_packet(self):
  19. if len(self.packet) == 0:
  20. self.make_packet()
  21. return ZabbixSender(self.server).send(self.packet)
  22. def read_conf():
  23. path = os.path.dirname(os.path.realpath(__file__))
  24. conf_file = os.path.join(path, 'config.json')
  25. with open(conf_file) as f:
  26. conf = json.load(f)
  27. return conf
  28. def just_send(data):
  29. conf = read_conf()
  30. s = ZabbixSenderSwn(conf["zabbix_server"], conf["host"], data = [])
  31. s.send_packet()

Powered by TurnKey Linux.