Commit Graph

844 Commits (010131aaba331c5274226f97d5cefa5f265a3843)
 

Author SHA1 Message Date
Timothy Stack 010131aaba [docs] update the docs for recent changes 9 years ago
Timothy Stack 27bb9bb2ee [fmt] highlight identifiers in module formats 9 years ago
Timothy Stack 5e77e9f256 [readline] try a different behavior when tab-completing quoted stuff in the SQL context 9 years ago
Timothy Stack 3f4e11a693 [fmt] first pass at supporting sub-formats (called module formats) 9 years ago
Timothy Stack 4573964fd2 always build papertrail_proc 9 years ago
Timothy Stack 0bd9b29bea adjustments to the generic_log so the body is picked up correctly 9 years ago
Timothy Stack d4e7f83a77 try to use travis containers 9 years ago
Timothy Stack a8bf7e39b0 log the version of libcurl 9 years ago
Timothy Stack 5ef60412db [pt] pass search query to papertrail 9 years ago
Timothy Stack 7ef92dab79 [format] try to validate formats against a given file 9 years ago
Timothy Stack f392822aa8 [parse] show the path of the pattern used to parse the top line 9 years ago
Timothy Stack e2c08d1da7 these files got dropped from the last checkin 9 years ago
Timothy Stack f1dd99328d [lnav.cc] move more stuff out of lnav.cc 9 years ago
Timothy Stack 7679599afc fix a refactor error 9 years ago
Timothy Stack 6b971ccd66 move stuff out of lnav.cc
Defect Number:
    Reviewed By:
   Testing Done:
9 years ago
Timothy Stack 879bbd581e [pt] rough draft of tail for papertrail 9 years ago
Timothy Stack 4ceddbe82e [ptimec] fix handling of month in interpreted formats
Also missed the null terminator on the list of custom
timestamp formats.
9 years ago
Tim Stack 14755f6f75 Merge pull request #242 from sureshsundriyal/coverity
[coverity] Avoid a buffer-overrun.
9 years ago
Suresh Sundriyal b4f2c1683a [coverity] Avoid a buffer-overrun.
'escape_index' is ensured to be less than 'sizeof(escape_buffer)-1'.
This guarantees enough space for one more character in the
escape_buffer. However, if we meet this condition, we go ahead and shove
a character and a null-terminator in to the string, potentially leading
to a buffer overrun.
9 years ago
Timothy Stack 87ec101f9c [fmts] log format contributions 9 years ago
Timothy Stack 92dd59285b some fixes to the re2c change 9 years ago
Timothy Stack 054e8d489b [data-scanner] convert to using re2c 9 years ago
Timothy Stack bb5f3cc9c4 [all_logs] tweak log_msg_format generation 9 years ago
Timothy Stack 504b5747fe [sql] add an all_logs table that exposes the message format with values, like numbers, replaced with hashes 9 years ago
Suresh Sundriyal f71b7feff3 Merge pull request #238 from sureshsundriyal/syslog
[syslog_log] Case-insensitive search for level strings
9 years ago
Suresh Sundriyal f476f904db [syslog_log] Case-insensitive search for level strings
While looking through syslog messages on OS X, came across plenty of
error/warning messages where the level was in all-caps and as a result
were not recognized. There was also a lot of false positives due to the
word error turning up as part of a longer string.

This change:
- Changes the log level regex to do a case-insensitive search.
- Ognores the string 'error', if it is part of a longer string.
9 years ago
Timothy Stack 100e4233d5 [ptime] fix parsing for double digit year 9 years ago
Suresh Sundriyal b822a997f5 Merge pull request #237 from sureshsundriyal/minor_fix
[log_format] Don't capture the sub-groups.
9 years ago
Suresh Sundriyal e9c48fbf39 [log_format] Don't capture the sub-groups.
I don't think there is any reason to capture the (OR) sub-group in
ERR(OR) separately.
9 years ago
Timothy Stack cec3d0cb72 [generic_log] add time format that includes zone 9 years ago
Timothy Stack 04f8ceadab [file-marker] some more cleanup 9 years ago
Timothy Stack b8b16bd8e5 [view] differentiate messages from different log files 9 years ago
Timothy Stack e07f3f5b24 [docs] update docs for horizontal move change 9 years ago
Suresh Sundriyal 6e8f75aae4 [misc] Update the AUTHORS and NEWS file. 9 years ago
Tim Stack ba1191d730 Merge pull request #234 from PaulWay/PaulWay_shift_horizontal_movement
Adding smaller movements to left and right via shift-arrows or H and L.
9 years ago
Tim Stack d780a03619 Merge pull request #235 from sureshsundriyal/lo-fi
[lo-fi shortcut] Change shortcut to 'Ctrl-l'.
9 years ago
Suresh Sundriyal d6b32d60be [lo-fi shortcut] Change shortcut to 'Ctrl-l'.
* Change the 'lo-fi' shortcut to 'Ctrl-l'
* Remove the shortcut for 'redraw'
9 years ago
Paul Wayper de38b11e67 Fixed missing semicolon from last break statement in previous commit. 9 years ago
Suresh Sundriyal 97d3c53565 [autodeploy_log] rename the Auto Deploy log format 9 years ago
Suresh Sundriyal 280d0cb718 [top_status_view] Increase the format name column width 9 years ago
Paul Wayper e5acc0e6ba Adding smaller movements to left and right via shift-arrows or H and L. 9 years ago
Timothy Stack 94459f2cb1 [generic_log] fix log levels for generic_log 9 years ago
Suresh Sundriyal 44ce89f296 Merge pull request #231 from sureshsundriyal/wip2
[format] Add a format for Auto Deploy.
9 years ago
Suresh Sundriyal eee628a272 [format] Add a format for Auto Deploy. 9 years ago
Suresh Sundriyal be5f26f232 Merge pull request #230 from sureshsundriyal/wip
Require sqlite3-v3.6.0
9 years ago
Suresh Sundriyal b5f1e9cec2 Require sqlite3-v3.6.0
v3.6.0 was the last released version of sqlite3 that I could
successfully compile with without any source changes. I could
compile with v3.4.2 but that required some code changes which
were not really worth the trouble of supporting v3.4.2, which was
released on 2007-08-13.
9 years ago
Suresh Sundriyal 3bd29c31ab Merge pull request #229 from sureshsundriyal/wip
[build] Require sqlite3 to be at least version 3.3.9.
9 years ago
Timothy Stack b01b962ea7 [build] forgot to add some new data files 9 years ago
Timothy Stack 021b7cb3aa [test] add a test for nested json log formats 9 years ago
Suresh Sundriyal e8ff7d8e8e [build] Require sqlite3 to be at least version 3.3.9.
'sqlite3_prepare_v2' was first introduced in version 3.3.9, which is
about 8 years old by now.
9 years ago