I have some data from a log file. I would like to graph how many times an error happened during a time period.
For exmample:
09:00:01, error_1, blah blah blah 09:00:10, error_1, blah blah blah 09:00:23, error_1, blah blah blah 09:01:10, error_2, blah blah blah 09:07:01, error_1, blah blah blah 09:07:43, error_1, blah blah blah 09:11:03, error_1, blah blah blah 09:18:10, error_1, blah blah blah 09:40:57, error_2, blah blah blah 09:41:23, error_1, blah blah blah ... 23:32:20 error_1
So with the above, I would like to plot the values so that I can show a week with individual points being in hour intervals and showing the sum of "error_1" for that hour... Hope that makes sense.
If anyone could help me out it would be greatly appreciated! If there is a way to do this entirely with gnuplot that would be even better.
Thanks!