Commit Graph

2040 Commits (884e2df6adc0a175cf24ccc43f8133ed9e622f1e)

Author SHA1 Message Date
Tim Stack 8df83d562a [config] simplify file format detection by moving it into the log format definition 12 months ago
Tim Stack 2e09202ff5 [config] externalize file format detection 12 months ago
Tim Stack 898f6e0ad1 [tidy] close FDs and add FMT_STRING() 12 months ago
Tim Stack 5b89b69e25 [piper] ignore stdin when it's a closed fifo 12 months ago
Tim Stack 42c9269d8d [piper] check for POLLHUP too 1 year ago
Tim Stack 0c9cf22acc [build] remove unused piper close() method 1 year ago
Tim Stack 5787f47767 [piper] replace piper_proc with a thread
Related to #1029
1 year ago
Tim Stack 2532d3dbf0 [formats] add cloudvm_ram_log 1 year ago
Tim Stack 60b9494427 [listview] fix pgdn behavior near the end of the content 1 year ago
Tim Stack 54cc2d006f [view_helpers] add some defense to the search preview 1 year ago
Tim Stack 29e2db5cc3 [textview] fix backwards search for cursor mode and mention it in FAQ
Related to #385
1 year ago
Tim Stack 841b3ee567 [help] a little extra info on config paths 1 year ago
Tim Stack e0ff4434a9 [logfile] report utf error location
Related to #1156
1 year ago
Tim Stack 5d915796fa [debug] include archive_version_details() 1 year ago
Tim Stack d4832c976d [vmw_py_log] handle broken ms field in timestamp 1 year ago
Tim Stack 5244753758 [pcap_log] use auto-width for fields 1 year ago
Tim Stack 4a24d8797f [sql] logline table was not checking if format matched the template line format
Some more cursor mode tweaks...
1 year ago
Tim Stack 7f18aa9cd9 [blog] add post for cursor mode 1 year ago
Tim Stack 8da3dcc01c [listview] when making big moves, put the focused row in the middle
Related to #1088 and #1149
1 year ago
Tim Stack 7bf42e7d2f [json-logs] automatically remove trailing line feeds
Fixes #969
1 year ago
Tim Stack e0811eb629 [session] fix restoring log top/selection
Related to #1088
1 year ago
Tim Stack 3da4b85365 [cursor] use selection when switching between views and keeping time synced
Related to #1088
1 year ago
Tim Stack 1a1272bbfb [cursor] when the parser overlay is displayed, sync the selection and top
Related to #1088
1 year ago
Tim Stack 29837caf52 [log_format] fix hiding/showing JSON fields not in the line-format
Related to #1081
1 year ago
Tim Stack c49d83395b [formats] add cloudflare format
Related to #1081
1 year ago
Tim Stack 0e4a6635e1 [textfile] log reason for not discovering metadata and cache it 1 year ago
Tim Stack 8118c5dbe4 [sections] fix some issues with doc sections in logs 1 year ago
Tim Stack e77ef5c8cd [cursor] breadcrumb performers should move selection instead of top 1 year ago
Tim Stack c8764da9d2 [bunyan] add test for this format and add "src" field
Related to #1136
1 year ago
Tim Stack 57486af178
Merge pull request #1136 from TobiX/bunyan
Add support for the bunyan JSON log format
1 year ago
Tim Stack 1c8c7089cb [log_format] try to do a better job matching JSON formats to logs
Try all formats and find the one with the highest quality
match.  For JSON logs, this means the format that matched
the most fields in the line-format.

Related to #1136
1 year ago
Tim Stack a1cfe34a7b [lss] fix handling of ansi escapes in json log 1 year ago
Tim Stack 5db31300c9 [logfile] avoid reading full log messages that are bigger than the line_buffer max size 1 year ago
Tim Stack 0083eaf675 [humanize] pad out duration to align fields
Fixes #933
1 year ago
Tim Stack 026031dcd3 [config] remove GLOB_NOCHECK when looking for git dirs
Fixes #1109
1 year ago
Tim Stack 82b10e2b23 [readline] handle width properly
Fixes #1100
1 year ago
Tim Stack 8f8874c718 [cursor] update docs and more tweaks 1 year ago
Tim Stack cfb7ac1fdd [lss] don't add an empty style attr 1 year ago
Tim Stack 2e409a8251 [vmw_log] fix for capturing sub= 1 year ago
Tim Stack 2ff9f63a79 [hotkeys] use selection instead of top in a few more places 1 year ago
Tim Stack 06385bc019 [cursor] ignore key repeat when searching forward 1 year ago
Tim Stack e3bebedbad [cursor] following should only be done when the last line is selected 1 year ago
Tim Stack fe7e89121f [listview] set selection to 0 when pressing 'b'/'pgup' and the top is 0 1 year ago
Tim Stack f44e04d854 [cursor] some more fixes for the new cursor support
related to #1088
1 year ago
Tim Stack 6f0f66a418 [json] fix json log handling with multiple lines in a field 1 year ago
tstack 49dcccbaae Update tailer 1 year ago
tstack ab12671308 Update tailer 1 year ago
tstack 7b2ec36315 Update tailer 1 year ago
Tim Stack 7ccb467695 [build] fix some more warnings 1 year ago
Tim Stack 91730b7c3c [cleanup] fix some warnings 1 year ago
Tim Stack 193fd7d8cc [fmt] bump version to 10.0.0 1 year ago
Tim Stack 51841d40b8 [view] add selection column to lnav_views
related to #1149
1 year ago
Tim Stack 5e8800872b [build] try using prebuilt image 1 year ago
Tim Stack dd21bdfd82 [text_filter] scrub ansi when testing a filter
Related to #1163
1 year ago
Tim Stack f98f1e52c9
Merge pull request #1160 from he32/shift-overflow-fix
ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
1 year ago
Havard Eidnes 0b51752974 ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
Use the constants defined by <stdint.h> to avoid right-shift by 32
on a 32-bit host by comparing SIZE_MAX to UINT32_MAX, since `value`
is a size_t.

Found by building on NetBSD/macppc with -Wshift-count-overflow
(which is default on in the pkgsrc setup, which this is from).

./third-party/ArenaAlloc/arenaallocimpl.h:111:22: warning: right shift count >=
width of type [-Wshift-count-overflow]
  111 |       value |= value >> 32;
      |                ~~~~~~^~~~~
1 year ago
Havard Eidnes f5daea2273 strnatcmp.c: ensure correct value range for isdigit() argument.
The valid values to pass to `isdigit()` is the values represented
by `unsigned char` and the value of EOF (usually -1).  Other values
such as the other negative `signed char` values may invoke undefined
behaviour.

Fix this by casting the argument to `isdigit()` to `unsigned char`.

Found by building on NetBSD/macppc with -Wchar-subscripts turned on.
1 year ago
Tim Stack 9323958296 [args] fix handling of non-numeric text after colon in a path
Fixes #1155
1 year ago
Tim Stack a324bc8c1c [docs] add a note that level regexes are not anchored
Related to #1153
1 year ago
Tim Stack c3abaee445 [log/text-views] reload selectable config
Related to #1088
1 year ago
Tim Stack 822eaf5a1a [json_log] auto detect the required width for a column
Related to #1146
1 year ago
Tim Stack f2a0c8f21c [logfile] include microseconds when converting timestamps
Mentioned in #1145

Also, fix the field hiding issue mentioned in #1146
1 year ago
Tim Stack 44b564681b [format_loader] catch invalid format names
Fixes #1122
1 year ago
Tim Stack 65b0d78143 [log_format/json] appending an empty string can trigger an assert
Fixes #1132
1 year ago
Tim Stack db1fc92fdd [ansi] missed resizing a buffer when scrubbing ansi
Fixes #1135
1 year ago
Tobias Gruetzmacher d675a8d10e
Add support for the bunyan JSON log format
See https://github.com/trentm/node-bunyan
1 year ago
Sam James e25d3e3c69
Fix build with GCC 13 (add missing <cstdint> include)
GCC 13 (as usual for new compiler releases) shuffles around some
internal includes and so <cstdint> is no longer transitively included.

Explicitly include <cstdint> for uint32_t.

Signed-off-by: Sam James <sam@gentoo.org>
1 year ago
Tim Stack 3e7a75c00b [capture] don't save any empty stdin 2 years ago
Tim Stack 5266054af0 [config] fix location of crash logs
During some refactoring, I messed up the crash file location
2 years ago
Tim Stack f34a5cf589 [docs] update docs for half page hotkeys 2 years ago
Tim Stack b92663b38a [hotkeys] add ctrl-d/ctrl-u hotkeys for moving by half a page
Also fixed a bug that caused the bottom status line to
be updated with the wrong line number.

Related to #945
2 years ago
Tim Stack 2c981dbe25 [filter-panel] only add filter-expr possibilities for the log view 2 years ago
Tim Stack df80e75586 [overlay] try to fix issues between overlay and selection (related to #1088) 2 years ago
Tim Stack fe50ba8f9b change en_US.utf-8 to en_US.UTF-8
related to #1089
2 years ago
Tim Stack a56cee67e6 [view-cursor] support for theming of the cursor line (#1088)
Add a role for the cursor line so that it can be themed.
The role is now optionally applied in textviews, which
fixes issues with other textviews having the wrong
selection highlight (e.g. filters, breadcrumb menus)

Still need to fix some issues with overlays...
2 years ago
Tim Stack 2062c7003b [views_vtab] add a movement column to lnav_views and other stuff (related to #1088)
I've plumbed the "movement" control through the lnav_views table
so that it can be controlled through the keymap definition instead
of hard-coded in hotkeys.cc.  (Trying to move most stuff out of
there...)

Removed listview_curses::lv_displayed_rows since it seemed to
cause some glitchy behavior when moving to the last line.

Call invoke_scroll() when changing the selection and change the
bottom status to reflect the selected line instead of just the
top.  Also, changing the selectability should set "needs update".

Change more commands to use the selection instead of the top.
2 years ago
Tim Stack 12d70f9996 [config] add missing enum terminator
the terminator is needed in the enum_value_t array

(I should really make it a real container...)
2 years ago
Tim Stack 3990517fcb
Merge pull request #1090 from FlorianMuenchbach/feature/cursor-mode
Feature/cursor mode
2 years ago
tstack 6bde93e886 Update tailer 2 years ago
Florian Münchbach b4e625030f Use cursor mode for 'LOG' and 'TEXT' view 2 years ago
Florian Münchbach bd81c4382d Add configuration option for cursor movement 2 years ago
Florian Münchbach 2b5c291a86 Revert 'cursor mode as default' 2 years ago
Florian Münchbach 56bb730bb4 Only reposition selection if not in view
This sets the selection to top if 'above' current top and to bottom if
'below' current bottom.
Feels a lot more natural that way.
2 years ago
Florian Münchbach d9dc1e9c7f Set selection to current view's top when toggling cursor mode 2 years ago
Florian Münchbach 572ed130aa Disable highlighting of selected line if not in cursor mode 2 years ago
Florian Münchbach d996335abd Use setter instead of directly modifying selection variable 2 years ago
Florian Münchbach 2c3b76c936 Move the displayed 'fields' details view with the cursor line 2 years ago
Tim Stack 9034bc2c76
Merge pull request #1079 from f9z/f9z-add-hhmmss.f-format
Add %H:%M:%S.%f format
2 years ago
Tim Stack 9e780e667b
Merge pull request #1072 from micttyl/patch-2
Make build work on FreeBSD
2 years ago
Tim Stack 554918b96c [goto] fix error reporting issue
Fixes #1078
2 years ago
f9z 2abcb358bc
Update time_formats.am 2 years ago
f9z 573fee227a
Update CMakeLists.txt 2 years ago
Florian Münchbach e426a63731 Allow only visible log rows being selected
This solves the issue of the cursor going out of the visible screen
area. Wrapped rows were previously counted as single row but displayed
as multiple which led to the problem.
2 years ago
Florian Münchbach a75d5c7cf3 Add hotkey binding for toggling the cursor mode 2 years ago
Florian Münchbach a8a668b40a Make the highlighting of the selected line more visible 2 years ago
Florian Münchbach 7f8b031b83 Use selected line instead of top 2 years ago
Florian Münchbach e5f7e5c8c5 Make lines selectable by default. 2 years ago
Florian Münchbach 1f9c08856f Highlight the selected line in text view. 2 years ago
Tim Stack cb55f588ec [themes] add missing scrollbar style
Fixes #1074
2 years ago
micttyl 1dfce25c56
Make build work on FreeBSD
Otherwise the build fails at the type checking
2 years ago
Tim Stack 8391de3ad6 [data_scanner] fix DT_H1 detection
Fix a broken refactor
2 years ago
Tim Stack 057be8c66d [lint] fix some coverity/clang-tidy issues 2 years ago
Tim Stack faeaf477ab [yajlpp] flesh things out a bit more 2 years ago
Tim Stack 468358a358 [port] one more endianness change 2 years ago
Tim Stack 3b1233be8f [port] hopefully the last endian issue 2 years ago
Tim Stack 9ff1daf032 [port] more endianness stuff 2 years ago
Tim Stack 5a70e62003
Merge pull request #1068 from sureshsundriyal/endianness
[Endianness] Make SpookyHash endianness-agnostic.
2 years ago
Tim Stack 9eb734ef7e [log_format] support for a separate sub-second field 2 years ago
Suresh Sundriyal 071ec72586 [Endianness] More code to make Spookyhash endianness-agnostic. 2 years ago
Suresh Sundriyal e2cddf28b2 [Endianness] Make SpookyHash endianness-agnostic.
Try and make SpookyHash endianness-agnostic using macros copied from:
https://github.com/k0dai/spookyhash
2 years ago
Tim Stack e135cf3334 [result] try to fix type conversion on s390x 2 years ago
Tim Stack e1e6ca30eb
Merge pull request #1067 from FaffeF/swedish-keyboard
Swedish keymap
2 years ago
Fredrik Forsell 59f3af535d Delete missing keymap from keymaps.am 2 years ago
Fredrik Forsell e310a18d7c Move mac specific binding to main sv keymap 2 years ago
Tim Stack f7b067db42 [ryml] remove unnecessary include that is triggering a compile error on some archs 2 years ago
Fredrik Forsell 8f8be6fd20 Clean up defaults, add mac layout
Remove items that are the same as the default keymap

Adds a Swedish Mac layout because shift-4 is not the same as on a
Windows keyboard
2 years ago
Fredrik Forséll 91a03b7b86
Update keymaps.am to include Swedish layout 2 years ago
Fredrik Forséll 6aba246bf3
Create keymap for Swedish keyboard layout
Avoids problems with shift-numbers etc
2 years ago
Tim Stack b86d272c29 [view_curses] remove fallback arg in to_attrs() 2 years ago
Tim Stack bddc6011ff [ansi] fix perf bug in eraser
Related to #1057
2 years ago
Tim Stack 07c57dae08 [json-log] change how lines that do not start with a curly are reported 2 years ago
Tim Stack 094b45f7ca [nits] minor fixes 2 years ago
Tim Stack d11b90bc6f [build] try to fix win build 2 years ago
Tim Stack 871ad1ad12 [dist] missed cleaning some files 2 years ago
Tim Stack 0fd9845580 [tests] test_tailer tweaks 2 years ago
Tim Stack df0d3aed0c [tidy] use auto_sqlite3 type alias 2 years ago
Tim Stack 7f513b2d1f [tidy] fixing some uninit issues 2 years ago
Tim Stack 93a53c4224 [fini] fix a destruction ordering issue 2 years ago
Tim Stack d940d9d5eb [logfile] plumb gzip header through file meta 2 years ago
Tim Stack 3f3e6dcbdc [highlight] turn off nesting for var highlight 2 years ago
Tim Stack a437d9fcc9 [pcre2pp] allocate match_data on the stack 2 years ago
Tobias Gruetzmacher 0958a9b189
Handle empty referer in access log (fixes #1059)
It seems most web servers log an empty referer as `"-"`, but GitLab's
nginx actually logs an empty field instead (`""`). Allow this in the
standard CLF format parser.
2 years ago
Tim Stack b7de0766c8 [highlighters] add some keywords 2 years ago
Tim Stack f1deeb5b74 [highlight] turn off nesting for some builtin highlighters 2 years ago
Tim Stack e0ecbdff10 [logfile] improve handling of ansi escapes
I think this covers the rest of the functionality
that needs to deal with ansi escapes.

Related to #1057
2 years ago
Tim Stack 9185518bda [top_status_source] try to fix prepared_stmt destruct order 2 years ago
Tim Stack 5060b38f99 [db] avoid reusing the same chart colors
This just covers the basic case and doesn't address reuse
with JSON values.

Related to #1047
2 years ago
Tim Stack 81fc0dc47e [tidy] remove duplicate struct names
Fixes #1004
2 years ago
Tim Stack b2abf94c2e [data_scanner] fix performance regression
Related to #1057
2 years ago
Tim Stack d79c1f9235 [regex101] accept pcre2 imports 2 years ago
Tim Stack 502c3b5f20 [sql] tweaks to parse_url() 2 years ago
Tim Stack 1effd99e5c [sql] add parse_url()/unparse_url() functions
Fixes #44
2 years ago
Tim Stack b536043050 [sql/json] json_group_array() returns {} instead of [] 2 years ago
Tim Stack 116b40f28c [bottom_status] fix out-of-bounds when with word-wrap
Related to #1058
2 years ago
Tim Stack bfa8ae2c42 [test] try to fix anon test 2 years ago
Tim Stack 01fe042a84 [build] try to fix link issue 2 years ago
Tim Stack 506d569b2f [build] missing include 2 years ago
Tim Stack bf3fe7fc2c [text] add some missing bound check on the filtered line index for the TEXT view
Fixes #1056
2 years ago
Tim Stack eb0bd4ac9a [anon] add an anonymizer to help with support requests
Fixes #1055
2 years ago
Tim Stack fadcea4403 [final] fix sqlite cleanup bug 2 years ago