Windows 日志查看工具

平时在Linux下查看日志,使用tail、grep、find等命令还比较方便,后来需要在Windows中处理一些问题,发现缺少类似的功能,比如tailf实时输出,于是在网上收集了一些相关的小工具,希望能够帮助到大家。

这些工具分为两类,一种是在Windows上模仿Linux的行为,使用类似的命令解决,比如:

  • tail for Windows: http://www.trisunsoft.com/tail-for-windows.htm
  • Tail for Win32: https://sourceforge.net/projects/tailforwin32/
  • MinGW: http://www.mingw.org/
  • Cygwin: https://www.cygwin.com/
  • git自带的tail: https://git-scm.com/

另外一种就是Windows GUI风格的工具,比如:

  • Hoo WinTail: http://www.hootech.com/WinTail/
  • BareTail: http://www.baremetalsoft.com/baretail/index.php
  • Tail4win: http://www.withdata.com/tail4win/index.html
  • LogViewer Pro: http://www.uvviewsoft.com/logviewer/
  • Java Log Viewer: https://sourceforge.net/projects/jlogviewer/
  • OtrosLogViewer: https://github.com/otros-systems/otroslogviewer
  • LogExpert: http://www.log-expert.de/

另外介绍几个Java GC日志查看工具:

  • GCViewer: https://github.com/chewiebug/GCViewer
  • garbagecat: https://github.com/doctau/garbagecat
  • gchisto: https://java.net/projects/gchisto
  • GCLogViewer: https://github.com/potatofantasy/gclogviewer
  • HPjmeter: http://www.hp.com/go/java

你可能感兴趣的:(开发工具)