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.

122 lines
4.4 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. #! /usr/bin/python3
  2. # coding=utf-8
  3. import requests
  4. import json
  5. import sys
  6. from pyzabbix import ZabbixMetric, ZabbixSender
  7. import os
  8. import re
  9. class AwZabbix:
  10. def __init__(self, server, url, host):
  11. self.url = url
  12. self.server = server
  13. self.host = host
  14. self.data = ''
  15. self.mult_dict = {'G': 1000000000, 'M': 1000000, 'T': 1000000000000, 'K': 1000, 'N': 0, }
  16. self.packet = []
  17. self.lld_data = []
  18. def get_data(self):
  19. if len(self.data) == 0:
  20. self.data = requests.get(self.url).json()
  21. def hashrate_str_to_int(self, hashrate_raw):
  22. if "H" in hashrate_raw:
  23. m = hashrate_raw[-4:-3]
  24. if m[0] == ' ':
  25. hashrate_mult = 1
  26. else:
  27. hashrate_mult = self.mult_dict[hashrate_raw[-4:-3]]
  28. hashrate_raw = "".join(hashrate_raw.split())
  29. a = float(hashrate_raw[:-5].replace(',', '.')) * hashrate_mult
  30. else:
  31. a = 0
  32. return int(a)
  33. def make_packet(self):
  34. self.get_data()
  35. if len(self.packet) != 0:
  36. return self.packet
  37. total_hashrate_raw = self.data['totalHashrate5s']
  38. if total_hashrate_raw:
  39. total_hashrate = self.hashrate_str_to_int(total_hashrate_raw)
  40. self.packet.append(ZabbixMetric(self.host, 'total[hashrate]', total_hashrate))
  41. for group in self.data['groupList']:
  42. for miner in group['minerList']:
  43. hashrate_raw = miner['speedInfo']['hashrate']
  44. if hashrate_raw:
  45. hashrate = self.hashrate_str_to_int(hashrate_raw)
  46. else:
  47. hashrate = 0
  48. hashrate_avg_raw = miner['speedInfo']['avgHashrate']
  49. if hashrate_avg_raw:
  50. hashrate_avg = self.hashrate_str_to_int(hashrate_avg_raw)
  51. else:
  52. hashrate_avg = 0
  53. minername = str(miner['name'])
  54. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('hashrate', minername), hashrate))
  55. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('hashrate_avg', minername), hashrate_avg))
  56. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('hashrate_avg_min', minername), int(hashrate_avg * 0.8)))
  57. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('ip', minername), miner['hostname']))
  58. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('group', minername), miner['groupId']))
  59. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('name', minername), miner['name']))
  60. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('temp', minername),
  61. miner['temperature'][:-3]))
  62. self.packet.append(ZabbixMetric(self.host, "{}[{}]".format('status', minername),
  63. miner['statusInfo']['statusDisplay']))
  64. return self.packet
  65. def send_packet(self):
  66. if len(self.packet) == 0:
  67. self.make_packet()
  68. return ZabbixSender(self.server).send(self.packet)
  69. def lld(self):
  70. self.get_data()
  71. if len(self.lld_data) != 0:
  72. return self.lld_data
  73. self.lld_data = {}
  74. jdat = []
  75. for group in self.data['groupList']:
  76. for miner in group['minerList']:
  77. jdat.append({"{#MINERID}": str(miner['id']),
  78. "{#IP}": str(miner['hostname']),
  79. "{#MINERNAME}": str(miner['name'])})
  80. self.lld_data = {'data': jdat}
  81. return self.lld_data
  82. def read_conf():
  83. path = os.path.dirname(os.path.realpath(__file__))
  84. conf_file = os.path.join(path, 'config.json')
  85. with open(conf_file) as f:
  86. conf = json.load(f)
  87. return conf
  88. def main():
  89. conf = read_conf()
  90. zabbix_server = conf["zabbix_server"]
  91. aw_url = conf["aw_url"]
  92. hostname = conf["hostname"]
  93. z = AwZabbix(zabbix_server, aw_url, hostname)
  94. if len(sys.argv) == 1:
  95. print(json.dumps(z.lld(), indent=4, sort_keys=True))
  96. elif len(sys.argv) == 2 and sys.argv[1] == 'send':
  97. z.send_packet()
  98. print(1)
  99. elif len(sys.argv) == 2 and sys.argv[1] == 'send_debug':
  100. print(z.send_packet())
  101. for i in z.packet:
  102. print(i)
  103. else:
  104. print('Wrong args.')
  105. if __name__ == '__main__':
  106. main()

Powered by TurnKey Linux.