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

link|improve this question

feedback

closed as not constructive by Robert Harvey Sep 7 '11 at 22:36

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

12 Answers

up vote 10 down vote accepted

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|improve this answer
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 '09 at 12:11
feedback

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|improve this answer
5  
+1 for your naming :) – Mark Pim Apr 29 '09 at 15:06
1  
+1. I've been wanting to do this in emacs for more than a decade. – Christian Madsen Aug 4 '11 at 8:14
feedback
$ 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|improve this answer
2  
This is brilliant - thanks for this great tip! – HakonB May 14 '11 at 20:43
feedback

On Windows I really like BareTailPro.

link|improve this answer
+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 '09 at 14:31
I also use BareTail (the free edition), which is good enough for my need. (1 up vote for u, flowers ;-)) – Nordin Dec 4 '09 at 1:27
feedback

Tail4Win is good enough for me.

link|improve this answer
feedback

On Mac os X, Survlog

I should mention I work for grasscove and created this product :) alt text

link|improve this answer
On Mac OS X, Console.app is pretty good at this already. – Slomojo Jun 2 '11 at 0:21
Slomojo, Console.app doesnt support SSH'ing to another server. – Kyle Browning Jun 3 '11 at 23:05
@Kyle, your site seems to be down? .. btw, sshfs will do that part of the problem just fine. – Slomojo Jun 3 '11 at 23:26
Who wants to do that? ahh, dns hadnt been updated when I switched servers last week, grasscove.com works as well – Kyle Browning Jun 4 '11 at 20:43
@Kyle, who want's to do what? Personally I subscribe to the "simple combined tools" approach of Unix, if I want remote file access, I want it for everything. So if you wish to ask that question, how about 'why do I want SSH access locked away in just one tool?' - When it comes down to it, it's a matter of usage preference, and of course, we all believe our preference is best... ;) - TBH, When it comes down to what I actually use... I rarely tail on a GUI anyway, I'm much more comfortable in the Terminal, where someone's feature set for a GUI isn't locking me in. – Slomojo Jun 5 '11 at 2:38
show 1 more comment
feedback

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|improve this answer
feedback

On Windows, I like mTAIL

link|improve this answer
feedback

TailMe is my favorite stand-alone Windows tail GUI.

When using Eclipse, I really like nTail.

link|improve this answer
feedback

The SMS Trace log viewer works as well.

link|improve this answer
feedback

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

link|improve this answer
feedback

For Windows the Baretail solution is the solution that I use more often: http://www.baremetalsoft.com/baretail/index.php

link|improve this answer
feedback

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