1
1
mirror of https://github.com/tstack/lnav.git synced 2024-10-26 13:16:11 +03:00
Log file navigator
Go to file
Suresh Sundriyal 13f5ad0dce Change the code to use Spookyhash.
* This change removes the external dependency on OpenSSL, which should
  allow the code to compile on Mac OS X without specifying the
  MAC_OS_X_VERSION_MIN_REQUIRED non-sense.
* Spookyhash should be faster than SHA-1's Merkle-Damgård construction.
* Spookyhash is only 128-bits as opposed to SHA-1's 160-bits so memory
  consumption should be less. I doubt it will lead to too many
  collisions.
* The docs are updated to reflect the fact that OpenSSL is not a
  dependency.
2014-02-03 22:36:33 -08:00
docs Change the code to use Spookyhash. 2014-02-03 22:36:33 -08:00
release [release] shell script to demonstrate following logs 2013-06-18 21:15:50 -07:00
src Change the code to use Spookyhash. 2014-02-03 22:36:33 -08:00
test Change the code to use Spookyhash. 2014-02-03 22:36:33 -08:00
.gitignore [docs] more docs 2013-07-27 11:04:43 -07:00
.travis.yml [build] fix a typo 2013-04-19 07:06:02 -07:00
aclocal.m4 [log format] add scaling factors 2013-07-23 05:55:08 -07:00
AUTHORS [cleanup] little bits of cleanup here and there 2013-05-02 08:29:36 -07:00
autogen.sh first commit 2009-09-13 18:07:32 -07:00
ax_sqlite3.m4 [build] fix os x build issues 2013-10-23 07:01:32 -07:00
ax_with_curses.m4 [win build] fix curses autoconf stuff 2012-04-17 08:16:41 -07:00
compile [version] bump the version to 0.6.0 2013-07-28 11:43:33 -07:00
config.guess [misc] fix the access log format for user names; update config.guess/config.sub 2013-11-24 14:21:20 -08:00
config.sub [misc] fix the access log format for user names; update config.guess/config.sub 2013-11-24 14:21:20 -08:00
configure [cygwin] fix compile issue for test 2014-01-12 19:58:18 -08:00
configure.ac [cygwin] fix compile issue for test 2014-01-12 19:58:18 -08:00
depcomp first commit 2009-09-13 18:07:32 -07:00
INSTALL first commit 2009-09-13 18:07:32 -07:00
install-sh first commit 2009-09-13 18:07:32 -07:00
LICENSE add license 2010-01-16 20:54:22 -08:00
lnav.1 [logline] fix the read of the template line in get_columns and add man page 2013-08-20 18:41:15 -07:00
lnav.cfg [cleanup] uncrustify 2013-06-15 18:07:50 -07:00
lnav.m4 [build] fix os x build issues 2013-10-23 07:01:32 -07:00
Makefile.am [cleanup] little bits of cleanup here and there 2013-05-02 08:29:36 -07:00
Makefile.in [log format] add scaling factors 2013-07-23 05:55:08 -07:00
missing [build] fix 2013-04-18 23:02:11 -07:00
mkinstalldirs first commit 2009-09-13 18:07:32 -07:00
NEWS [release] some last minute clean up 2013-11-09 17:34:06 -08:00
README Change the code to use Spookyhash. 2014-02-03 22:36:33 -08:00
README.md [README] Add a pointer to lnav.org at the top 2013-08-30 08:55:49 -07:00
test-driver [build] add test-driver file 2013-04-24 06:46:45 -07:00
TESTS_ENVIRONMENT.in [cygwin] more windows nits and cleanup 2014-01-13 22:29:14 -08:00

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

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