1
1
mirror of https://github.com/tstack/lnav.git synced 2024-07-15 00:30:36 +03:00
Log file navigator
Go to file
2024-04-01 10:11:56 -07:00
.circleci [circleci] debug 2024-04-01 10:11:56 -07:00
.github Revert "[build] try to build macos-12-arm64" 2024-04-01 08:42:40 -07: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 [site] bump version number 2024-03-30 09:41:12 -07: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 [prql] add more online help 2024-03-28 22:14:18 -07:00
src [view_curses] check color 2024-03-31 06:40:21 -07:00
test [tests] update hist tests 2024-03-30 07:32:36 -07: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 [prql] initial work for integrating PRQL 2024-03-25 22:34:46 -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 [prql] initial work for integrating PRQL 2024-03-25 22:34:46 -07:00
configure.ac [prql] initial work for integrating PRQL 2024-03-25 22:34:46 -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 [prql] refinements 2024-03-26 21:49:39 -07:00
README [readme] mention running autogen.sh in the regular README 2022-09-19 01:53:47 -07:00
README.md [prql] use cxx for rust ffi stuff 2024-03-27 21:27:03 -07:00
snapcraft.yaml [prql] use cxx for rust ffi stuff 2024-03-27 21:27:03 -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/directories, lnav will:

  • decompress as needed;
  • detect their format;
  • merge the files together by time into a single view;
  • tail the files, follow renames, find new files in directories;
  • build an index of errors and warnings;
  • pretty-print JSON-lines.

Then, in the lnav TUI, you can:

Screenshot

The following screenshot shows a mix of syslog and web access log files. Failed requests are shown in red. Identifiers, like IP address and PIDs are semantically highlighted.

Screenshot

Why not just use tail/grep/less?

The standard Unix utilities are great for processing raw text lines, however, they do not understand log messages. Tail can watch multiple files at a time, but it won't display messages in order by time and you can't scroll backwards. Grep will only find matching lines, but won't return a full multi-line log message. Less can only display a single file at a time. Also, none of these basic tools handle compressed files.

Try online before installing

You can SSH into a demo node to play with lnav before installing.

The "playground" account starts lnav with a couple of log files as an example:

$ ssh playground@demo.lnav.org

The "tutorial 1" account is an interactive tutorial that can teach you the basics of operation:

$ ssh tutorial1@demo.lnav.org

Installation

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

Brew on MacOS

$ brew install lnav

Usage

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

$ lnav /path/to/file1 /path/to/dir ...

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 recognized1. 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).

See the Usage section of the online documentation for more information.

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.
  • cargo/rust - The Rust language is used to build the PRQL compiler.

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.


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