1
1
mirror of https://github.com/tstack/lnav.git synced 2024-08-16 16:30:25 +03:00
Log file navigator
Go to file
2024-01-27 09:45:32 -08:00
.github [msys-build] add crypt32 lib... 2023-12-11 13:37:23 -08:00
cmake [pcre2] migrate from pcre to pcre2 2022-09-10 09:28:07 -07:00
demo [build] add --platform to Dockerfiles 2023-07-03 13:54:50 -07:00
docs [blog] fix typo 2024-01-10 09:08:44 -08:00
example-scripts [example files]: fix shellcheck identified issues 2021-08-25 10:45:51 +00:00
ext add pcapplusplus submodule 2017-04-15 07:05:44 -07:00
m4 [build] Update the ax_pthread m4 script. 2023-07-12 13:43:48 -07:00
release [release] bump version number 2023-09-04 20:39:49 -07:00
src [data_scanner] reduce scanner size 2024-01-27 09:45:32 -08:00
test [data_scanner] reduce scanner size 2024-01-27 09:45:32 -08:00
tools [build] Use fPIE on bin2c 2023-07-11 10:06:41 -07:00
.cirrus.yml [cirrus] add binary artifact 2023-06-21 11:30:43 -07:00
.clang-format [clang-format] init 2022-03-16 15:38:08 -07:00
.clang-tidy [docs] mention timezone stuff 2023-09-13 14:58:59 -07:00
.codespellrc [build] run cmake-init and switch from hunter to conan for packages 2022-03-13 22:44:12 -07:00
.coveralls.yml [ci] add .coveralls.yml 2021-01-31 15:28:06 -08:00
.gitignore [config] simplify file format detection by moving it into the log format definition 2023-07-10 10:35:18 -07:00
.gitmodules use https for submodule 2017-04-15 07:08:33 -07:00
.readthedocs.yaml [readthedocs] fix python version 2023-08-18 07:58:54 -07:00
appveyor.yml [appveyor] remove x86 build 2023-06-21 10:44:52 -07:00
ARCHITECTURE.md [docs] update links from lnav.readthedocs.io to docs.lnav.org 2022-04-12 16:33:09 -07:00
AUTHORS [blog] add post for cursor mode 2023-06-23 16:16:58 -07:00
autogen.sh [autogen] More fixes. 2015-04-06 00:07:07 -07:00
cleanup_expected.sh [regex101] add an integration with regex101 2022-04-30 13:06:01 -07:00
CMakeLists.txt [release] bump version number 2023-09-04 20:39:49 -07:00
CMakePresets.json [build] run cmake-init and switch from hunter to conan for packages 2022-03-13 22:44:12 -07:00
CMakeUserPresets.json.example [cmake] add user preset example 2022-03-16 15:42:09 -07:00
conanfile.py [release] bump version number 2023-09-04 20:39:49 -07:00
configure.ac [libs] import the c++ date library 2023-09-05 21:54:49 -07:00
FUNDING.yml Create FUNDING.yml 2020-06-12 14:15:23 -07:00
INSTALL first commit 2009-09-13 18:07:32 -07:00
LICENSE add license 2010-01-16 20:54:22 -08:00
lnav.1 [piper] replace piper_proc with a thread 2023-07-06 20:05:30 -07:00
lnav.cfg [cleanup] uncrustify 2013-06-15 18:07:50 -07:00
Makefile.am [build] test depends on some docs 2023-08-26 06:37:45 -07:00
NEWS.md [all_logs] add log_msg_value column 2024-01-25 20:53:01 -08:00
README [readme] mention running autogen.sh in the regular README 2022-09-19 01:53:47 -07:00
README.md [ansi_scrubber] handle unknown sequences 2023-08-24 21:10:54 -07:00
snapcraft.yaml [snap] add plug for reading /etc/lnav 2023-06-21 13:10:01 -07:00
TESTS_ENVIRONMENT.in [tests] scrub out $UID in test output 2023-07-19 05:41:13 -07:00
update_expected_output.sh [date_time_scanner] do not try to read millis if it is already set 2023-08-10 16:08:56 -07:00

Build Docs Coverage Status lnav

Discord Logo

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

LNAV -- The Logfile Navigator

The Log File Navigator, lnav for short, is an advanced log file viewer for the small-scale. It is a terminal application that can understand your log files and make it easy for you to find problems with little to no setup.

Screenshot

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

Screenshot

Features

  • Log messages from different files are collated together into a single view
  • Automatic detection of log format
  • Automatic decompression of GZip and BZip2 files
  • Filter log messages based on regular expressions
  • Use SQL to analyze your logs
  • And more...

Installation

Download a statically-linked binary for Linux/MacOS from the release page

Usage

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*

Usage with systemd-journald

On systems running systemd-journald, you can use lnav as the pager:

$ journalctl | lnav

or in follow mode:

$ journalctl -f | lnav

Since journalctl's default output format omits the year, if you are viewing logs which span multiple years you will need to change the output format to include the year, otherwise lnav gets confused:

$ journalctl -o short-iso | lnav

It is also possible to use journalctl's json output format and lnav will make use of additional fields such as PRIORITY and _SYSTEMD_UNIT:

$ journalctl -o json | lnav

In case some MESSAGE fields contain special characters such as ANSI color codes which are considered as unprintable by journalctl, specifying journalctl's -a option might be preferable in order to output those messages still in a non-binary representation:

$ journalctl -a -o json | lnav

If using systemd v236 or newer, the output fields can be limited to the ones actually recognized by lnav for increased efficiency:

$ journalctl -o json --output-fields=MESSAGE,PRIORITY,_PID,SYSLOG_IDENTIFIER,_SYSTEMD_UNIT | lnav

If your system has been running for a long time, for increased efficiency you may want to limit the number of log lines fed into lnav, e.g. via journalctl's -n or --since=... options.

In case of a persistent journal, you may want to limit the number of log lines fed into lnav via journalctl's -b option.

Support

Please file issues on this repository or use the discussions section. The following alternatives are also available:

Contributing

Building From Source

Prerequisites

The following software packages are required to build lnav:

  • gcc/clang - A C++14-compatible compiler.
  • libpcre2 - The Perl Compatible Regular Expression v2 (PCRE2) library.
  • sqlite - The SQLite database engine. Version 3.9.0 or higher is required.
  • ncurses - The ncurses text UI library.
  • readline - The readline line editing library.
  • zlib - The zlib compression library.
  • bz2 - The bzip2 compression library.
  • libcurl - The cURL library for downloading files from URLs. Version 7.23.0 or higher is required.
  • libarchive - The libarchive library for opening archive files, like zip/tgz.
  • wireshark - The 'tshark' program is used to interpret pcap files.

Build

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

Run ./autogen.sh if compiling from a cloned repository.

$ ./configure
$ make
$ sudo make install

See Also

Angle-grinder is a tool to slice and dice log files on the command-line. If you're familiar with the SumoLogic query language, you might find this tool more comfortable to work with.