Send me a PM, I've already got the gpu temps into snmpd on linux and getting that into opennms or nagios would be pretty straight forward.
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#!/bin/bash
export DISPLAY=:0
export LD_LIBRARY_PATH=/opt/ati-stream-sdk-v2.3-lnx64/lib/x86_64/
export ATISTREAMSDKROOT=/opt/ati-stream-sdk-v2.3-lnx64
export GPU_USE_SYNC_OBJECTS=1
exit_status=0
serviceoutput=
serviceperfdata=
longserviceoutput=
templist=
for f in `sudo -u syadasti aticonfig --list-adapters | grep : | tr \* ' ' | sed 's/\..*//'`
do
out=`sudo -u syadasti aticonfig --adapter=$f --odgt`
temp=`echo $out | grep Temp | sed -e 's/^.*- .* - //' | sed -e 's/ C.*//'`
templist="$templist $temp"
longserviceoutput="${longserviceoutput}#${f} $temp C;"
#echo $longserviceoutput
serviceperfdata="${serviceperfdata}#${f}=${temp};"
#echo $serviceperfdata
tempint=`echo $temp | sed 's/\..*//'`
if [ $tempint -gt 94 ]
then
exit_status=1
fi
done
if [ $exit_status -ne 0 ]
then
serviceoutput="GPU TEMP WARNING"
else
serviceoutput="GPU TEMP OK"
fi
serviceoutput="$serviceoutput - Temps: / $templist;"
#echo long: $longserviceoutput
#echo serviceperf: $serviceperfdata
echo $serviceoutput \|
echo -n $longserviceoutput \| | sed 's/^#//' | sed 's/#/\n/g'
echo $serviceperfdata | sed 's/;$//' | sed 's/^#/ /'| sed 's/#/\n/g'
exit $exit_status
#!/usr/bin/ruby
if ARGV.first == "config"
puts "graph_title GPU temperatures"
#puts "graph_args --base 1000 -r --lower-limit 0"
puts "graph_category gpu"
puts "graph_period second"
puts "graph_vlabel temperature"
puts "card0.label card0"
puts "card1.label card1"
puts "card2.label card2"
else
out = `DISPLAY=":3" aticonfig --odgt --adapter=all`
#puts out
out.split("\n\n").each do |card|
adapter = card.match(/Adapter ([0-9.]+)/i)[1]
temp = card.match(/Temperature - ([0-9.]+) C/i)[1]
puts "card#{adapter}.value #{temp}"
end
end
#!/usr/bin/ruby
if ARGV.first == "config"
puts "graph_title GPU fan speeds"
#puts "graph_args --base 1000 -r --lower-limit 0"
puts "graph_category gpu"
puts "graph_period second"
puts "graph_vlabel speed"
puts "fan0.label card0"
puts "fan2.label card2"
else
%w{0 2}.each do |id|
out = ` DISPLAY=":3.#{id}" aticonfig --pplib-cmd 'get fanspeed 0'`
speed = out.match(/Speed: (\d+)\%/)[1]
puts "fan#{id}.value #{speed}"
end
end