I have a log like this:
2012-02-14 06:30:55,766 INFO - Registering handler for "myFunc": 5e25f109-5f4e-4758-8228-0af8da0004b7
... lots of other lines ...
2012-02-14 06:35:32,523 INFO - authenticated user "John Doe" with IP: 192.168.82.183
... lots of other lines ...
2012-02-14 06:45:36,278 INFO - slow GET request 5e25f109-5f4e-4758-8228-0af8da0004b7 from 192.168.82.183:64807 took 4390 ms
I'd like to get a list of the slow requests in clear text like this:
"John Doe" "myFunc" 4390 ms
what would be the best approach to achieve this result?
... View more