I need to create a time series chart based on last_run and Total CPU Yields output from Sybase sysmon output file. I am currently indexing sysmon files the they look something like this:
last_run current_run seconds
------------------------------- ------------------------------- -----------
Jan 12 2017 1:43PM Jan 12 2017 1:46PM 139
Total CPU Yields 2021.8 13.6 606554
I need to come up with a search pattern to extract last_run and Total CPU Yields to chart. In this case, last_run is Jan 12 2017 1:43PM and Total CPU Yields is 13.6
how I can do this?
... View more