I will release v0018 soon. Currently you must reimage to upgrade; I will add an updater in a later version.
Hi fullzero, add please to v0018 a monitoring agent for zabbix.
Here
https://pastebin.com/raw/pXDwWiS3 is the configuration file zabbix_agentd.conf
I created the necessary metrics for 10 GPUs.
The agent will send the metrics to the server with the IP Address 192.168.10.100
I'll try to add a customization guide.
Briefly: I take the Temrature and the hash from the Claymore
The power consumption of the GPU from the utility nvidia-smi
The result of the metrics is this:
curl -s
http://localhost:3333 | sed '/GPU/!d; /Mh/!d;' | awk '{print $13}' | awk 'NR == 1'
curl -s
http://localhost:3333 | sed '/Total/!d; /Speed/!d;' | awk '{print $6}' | awk 'NR == 3'
curl -s http://localhost:3333 | awk '/t=/ {print $12}' | tr -d t=C | awk 'NR == 1'
nvidia-smi | grep % | awk '{print $5}' | tr -d W | awk 'NR==4'
My dashboard:
https://photouploads.com/image/Bv1PS: You need to install the latest package zabbix_agentd 3.2.6
wget
http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.debsudo dpkg -i zabbix-release_3.2-1+xenial_all.deb
sudo apt-get update
sudo apt-get install zabbix-agent
Thank you, and sorry for my english.
Was already 50% complete with v0018 upload when I saw this. Can you give me the link to the zabbix source code?
This looks interesting.