Created a simple shell script to monitor to response time for a website. Looks like this.
httpref --hog --server $site > $file
cat $file | grep $foo | cut -d " " -f9
Created an item to run this script and had to change the type of information value from numeric to character in order to get the item to stay active. The only way I can get this information to display is in a plain text screen, and I would like to be able to graph it. Am I doing something wrong that would cause this not to be graph-able? The ultimate goal here is to create an alert that when response time gets above 5 seconds or so it sends an alert to a jabber client. Any suggestions on how to achieve this?
httpref --hog --server $site > $file
cat $file | grep $foo | cut -d " " -f9
Created an item to run this script and had to change the type of information value from numeric to character in order to get the item to stay active. The only way I can get this information to display is in a plain text screen, and I would like to be able to graph it. Am I doing something wrong that would cause this not to be graph-able? The ultimate goal here is to create an alert that when response time gets above 5 seconds or so it sends an alert to a jabber client. Any suggestions on how to achieve this?

Comment