The best Logviewer http://lnav.org/
Go to file
Timothy Stack f286950854 [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
docs [sql] add an lnav_views table 2015-07-22 07:09:51 -07:00
example-scripts [scripts] add an example script dir 2014-04-05 22:36:48 -07:00
m4 [config] some libcurl changes for static linking 2015-07-25 07:01:29 -07:00
release [release] some updates to the release makefile 2015-07-25 06:45:38 -07:00
src [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
test [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
.gitignore [cleanup] Remove generated files and add to .gitignore. 2015-04-05 02:43:54 -07:00
.travis.yml try to use travis containers 2015-07-12 13:46:59 -07:00
AUTHORS [misc] Update the AUTHORS and NEWS file. 2015-05-11 23:31:59 -07:00
CMakeLists.txt [coverity] some cleanup and add the chunky_index 2014-09-28 22:36:07 -07:00
INSTALL first commit 2009-09-13 18:07:32 -07:00
LICENSE add license 2010-01-16 20:54:22 -08:00
Makefile.am [release] add a log generator for demo purposes 2014-03-21 21:18:54 -07:00
NEWS [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
README [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
README.md [README.md] Fix the instruction about autogen.sh. 2015-04-05 02:59:04 -07:00
TESTS_ENVIRONMENT.in [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
autogen.sh [autogen] More fixes. 2015-04-06 00:07:07 -07:00
configure.ac [curl] add a curl looper to handle url requests 2015-08-02 06:43:57 -07:00
lnav.1 [format] try to validate formats against a given file 2015-07-11 16:32:48 -07:00
lnav.cfg [cleanup] uncrustify 2013-06-15 18:07:50 -07:00

README.md

Build Status

This is the source repository for lnav, visit http://lnav.org for a high level overview.

LNAV -- The Logfile Navigator

The log file navigator, lnav, is an enhanced log file viewer that takes advantage of any semantic information that can be gleaned from the files being viewed, such as timestamps and log levels. Using this extra semantic information, lnav can do things like interleaving messages from different files, generate histograms of messages over time, and providing hotkeys for navigating through the file. It is hoped that these features will allow the user to quickly and efficiently zero in on problems.

Prerequisites

Lnav requires the following software packages:

  • libpcre - The Perl Compatible Regular Expression (PCRE) library.
  • sqlite - The SQLite database engine.
  • ncurses - The ncurses text UI library.
  • readline - The readline line editing library.
  • zlib - The zlib compression library.
  • bz2 - The bzip2 compression library.

Installation

Lnav follows the usual GNU style for configuring and installing software:

$ ./configure
$ make
$ sudo make install

Run ./autogen.sh before running any of the above commands when compiling from a cloned repository.

Using

The only file installed is the executable, "lnav". You can execute it with no arguments to view the default set of files:

$ lnav

You can view all the syslog messages by running:

$ lnav /var/log/messages*

Screenshot

The following screenshot shows a syslog file. Log lines are displayed with highlights. Errors are red and warnings are yellow.

Screenshot

See Also

The lnav website can be found at:

http://lnav.org