<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Arial; font-size: 12pt; color: #000000'>I created a script to monitor uptime on a number of machines.&nbsp; It's rough, ugly, inefficient, and I will get laughed at, but it works.&nbsp; Here it is:<br><br>#!/bin/bash<br>ticks=$(snmpwalk -v 1 -c public 10.0.0.1 hrSystemUptime.0 | awk '{ print $5 }' )<br>echo "$ticks"<br><br>Now, this script works and populates data for Windows 7, Ubuntu, FreeBSD, etc.&nbsp; However, MRTG <u>WILL NOT</u> populate the data returned from this script from a CentOS machine.&nbsp; I have gone through and verified everything I can possibly think of.&nbsp; When run, the script itself returns the proper data.&nbsp; The config files match perfectly with the other working machine with the exception of the host data of course.&nbsp; To my knowledge, all it needs is a number to graph.&nbsp; The script returns a number, why won't it graph?!<br><span></span></div></body></html>