-
Notifications
You must be signed in to change notification settings - Fork 0
Home
|[http://chistogram.googlecode.com/files/sequence5.png] | This utility written in C, permit to display a distribution graph on terminal, the input MUST be provided as integer once for line. the utility permit to do a cat from log and generate a terminal timing rapresentation as example. It's a real quick and dirty solution you will probably look for R for some more advanced statistical solution. Build it with gcc main.c no library dependency is required so you can easily recompile it on cygwin.
But for a quick term solution is not so bad : |
while true; echo " TITLE GRAPH " do tail -n 100 PMS.log|grep Logic|grep -v WSDL|awk 'BEGIN { FS = ";" } ; { print $6 }'|a,out sleep 10 done
First column rapresent the hit rate for the first interval, ie 0-1000, on the left is display a recup for each interval.
a.out [column_rage] [x_size] [y_size]
~/workspace/c/distribution/chistogram$ cat in.txt | a.out 1000 45 |tail -n 51