1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-17 15:57:32 +03:00
Log file navigator
Go to file
2024-02-18 22:37:58 -08:00
.github [muslbuilder] try to fix curl build 2024-02-01 10:21:51 -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 [docs] tweak the site a bit 2024-02-17 16:39:47 -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] fix for autoconf screwing up the c++ flags 2024-02-04 22:36:03 -08:00
release [release] bump version number 2023-09-04 20:39:49 -07:00
src [docs] add tags to file-timezone commands 2024-02-18 09:49:15 -08:00
test [docs] fix links in readme 2024-02-18 22:37:58 -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 [build] fix for autoconf screwing up the c++ flags 2024-02-04 22:36:03 -08: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 [hotkeys] change curly braces to move to the next/prev section 2024-02-17 07:16:14 -08:00
README [readme] mention running autogen.sh in the regular README 2022-09-19 01:53:47 -07:00
README.md [docs] fix links in readme 2024-02-18 22:37:58 -08: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 Logfile Navigator is a log file viewer for the terminal. Given a set of files, lnav will:

  • decompress as needed;
  • detect their format;
  • merge the files together by time into a single view;
  • monitor the files for new data or renames;
  • build an index of errors and warnings.

Then, in the lnav TUI, you can:

Screenshot

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

Screenshot

Installation

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

Usage

Simply point lnav at the files or directories you want to monitor, it will figure out the rest:

$ lnav /path/to/file

The lnav TUI will pop up right away and begin indexing the files. Progress is displayed in the "Files" panel at the bottom. Once the indexing has finished, the LOG view will display the log messages that were recognized[1]. You can then use the usual hotkeys to move around the view (arrow keys or j/k/h/l to move down/up/left/right).

[1] - Files that do not contain log messages can be seen in the TEXT view (reachable by pressing t).

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.