I'm dealing with huge glassfish log files (in windows, eek!) and well ... Wordpad isn't cutting it.
Are there any tools out there that can handle these log files in a more intelligent manner? Functionality that would be welcome:
On Windows I'd still go perl or awk. Download and install cygwin, then use awk or whatever you are familiar with. awk has the time functions needed for filtering, and features such as getline
for log file navigation.
Ex: Exception occurency count - all time
$ awk '/^java.*:\W/ {print $1}' server.log* |sort|uniq -c|sort -nr
60 javax.ejb.EJBException:
45 java.rmi.ServerException:
2 javax.persistence.PersistenceException:
2 javax.ejb.ObjectNotFoundException:
1 java.lang.Error:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With