1

I am starting to work with Otros Log Viewer to analyze my log4j logs, but couldn't find a way to filter the logs by methods or class names, and couldn't find a way (for example) to count how many errors were made in method "foo".

I would appreciate a nice solution \ tip.

Thanks

Wasafa1
  • 785
  • 2
  • 10
  • 21

1 Answers1

5

To currently class filter do not support filtering by method. You can implement your own filter, here is wiki page.

You can enable Experimental features by adding <loadExperimentalFeatures>true</loadExperimentalFeatures> to config. It will enable some experimental features like Query filter. It works the same as Query search. On wiki you will find how to construct query: https://code.google.com/p/otroslogviewer/wiki/SearchEvents. Query can look like this method==run && class~=my.packet

You can also use search with "Query mode" and use query: method==run && class~=my.packet and click "Mark all found" and on status bar message like 233 message marked with ....

KrzyH
  • 4,256
  • 1
  • 31
  • 43