I am creating a custom agent script that parses mpm data from the IBM HTTP WebServer logs. mpm is a module that gives you performance statistics related to thread usage (see
http://publib.boulder.ibm.com/httpserv/ihsdiag/2.0/mod_mpmstats.html for more details). The purpose is to create a time-plot chart that will plot every "bucket" (i.e. rdy, bsy, rd, wr, ka, log, dns, and cls).
Here is a sample entry:
[Thu Aug 19 14:01:52 2004] [notice] mpmstats: rdy 712 bsy 312 rd 121 wr 173 ka 0 log 0 dns 0 cls 18
[Thu Aug 19 14:01:54 2004] [notice] mpmstats: rdy 718 bsy 306 rd 120 wr 169 ka 0 log 0 dns 0 cls 17
[Thu Aug 19 14:01:56 2004] [notice] mpmstats: rdy 729 bsy 295 rd 123 wr 135 ka 0 log 0 dns 0 cls 37
[Thu Aug 19 14:01:58 2004] [notice] mpmstats: rdy 759 bsy 265 rd 130 wr 67 ka 0 log 0 dns 0 cls 68
Notice the timestamp format. My question therefore is: What do I need to do with the timestamps as shown above in the script? I want these timestamps reflected in the time-plot charts as x-axis points. It must be more than just:
echo logTimeStamp.String=<...>
And what extra steps do I need to take in configuring the view to display the chart as I have described?