vote up 5 vote down star
9

What is the one single best GUI program for tailing log files you've come across?

flag

11 Answers

vote up 5 vote down check

A great windows tool with tailing, highlighting, filtering, columnizing and a rudimentary Eclipse integration is Log Expert. Also has a SDK and is free for both non-commercial and commercial use.

link|flag
Excellent... I'll be trying this out, but for now it seems to do mostly everything I need it to do :) – Roland Tepp May 4 at 12:11
vote up 2 vote down

Tail4Win is good enough for me.

link|flag
vote up 8 vote down

Emacs. I have a custom (simple) mode called `angry-fruit-salad-log-view-mode'. It is a minor mode that tails a file and enables highlight-changes-mode, so that new changes that come into the file while tailing are highlighted, but gradually fade to the normal text color over time. (Both tailing a file and highlight-changes-mode are built-in to Emacs.)

(defvar angry-fruit-salad-log-view-mode-map
  (make-sparse-keymap))

(define-minor-mode angry-fruit-salad-log-view-mode
  "View logs with colors.

Angry colors."
  nil " AngryLog" nil

  (cond (angry-fruit-salad-log-view-mode
         (auto-revert-tail-mode 1)
         (highlight-changes-mode 1)
         (define-key angry-fruit-salad-log-view-mode-map
           (kbd "C-c C-r")
           'highlight-changes-rotate-faces)
         (if (current-local-map)
             (set-keymap-parent angry-fruit-salad-log-view-mode-map
                                (current-local-map)))
         ;; set the keymap
         (use-local-map angry-fruit-salad-log-view-mode-map))

        (t
         (auto-revert-tail-mode -1)
         (highlight-changes-mode -1)
         (use-local-map (keymap-parent angry-fruit-salad-log-view-mode-map)))))
link|flag
+1 for your naming :) – Mark Pim Apr 29 at 15:06
vote up 1 vote down

Marc Lehmann's improved root-tail - http://www.goof.com/pcg/marc/root-tail.html

It lets you tail multiple system log files, and other log files, on your root window, combine them, colour the text. It's simple, powerful and very useful. Runs on Linux, and probably runs on other Unix systems.

link|flag
vote up 6 vote down

On Windows I really like BareTailPro.

link|flag
+1; have used it for a good while now, and it has really made my day a couple of times. – Fredrik Mörk Apr 29 at 14:31
vote up 0 vote down

The SMS Trace log viewer works as well.

link|flag
vote up 0 vote down

Kiwi Enterprises' Kiwi Log Viewer is awesome! (no affiliation with them, just a happy customer)

link|flag
vote up 0 vote down

What about free tail programs, which is the best?

link|flag
vote up 1 vote down

On Windows, I like mTAIL

link|flag
vote up 0 vote down

TailMe is my favorite stand-alone Windows tail GUI.

When using Eclipse, I really like nTail.

link|flag
vote up 2 vote down
$ less +F something.log

I know you said GUI, but less is my favourite tail. Passing +F on the command line, or pressing F when viewing a file, puts it into "follow" mode just like tail -f, but with much more flexibility.

Say you're watching the logs and you see an error scroll past and off the screen. Press Ctrl-C and you drop into normal less, where you can page up and down, regex search through the entire file (find that error you saw, and others like it), pipe bits of it through shell commands, etc. Once you're done inspecting the file just press F again and you're back in "follow" mode.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.