Timothy Stack
d799cc227e
some tweaks to these changes
2016-12-17 21:13:38 -08:00
Timothy Stack
f567aafe3b
[c++11] migration #1
...
Just a start
2016-12-10 07:21:24 -08:00
Timothy Stack
5e2d8842f2
forgot the actual file, sigh
2016-12-06 08:20:16 -08:00
Timothy Stack
93848faae7
add new file to dist
2016-12-06 07:14:54 -08:00
Timothy Stack
44d93dddc3
[pretty-print] allow formats to do transforms before pretty-printing
...
Also started upgrading to C++11.
Fixes #353
2016-12-05 16:34:30 -08:00
Timothy Stack
642a94e7b7
[open] check for FIFOs
...
Fixes #380
2016-11-23 06:41:22 -08:00
Timothy Stack
fb4e66e0b5
[build] package logfile_epoch.1
2016-11-22 10:02:38 -08:00
Timothy Stack
1b8b773184
[tests] print logfile::error exception
2016-11-22 09:56:08 -08:00
Timothy Stack
6618fe1947
[build] test
2016-11-22 09:48:05 -08:00
Timothy Stack
26cd9f5930
[ptime] make sure the full time stamp is matched
...
Fixes #389
Fixes #390
2016-11-22 08:38:45 -08:00
Timothy Stack
592ee60693
[log] fix rewriting machine-oriented timestamps
...
Fixes #371
2016-11-21 11:34:12 -08:00
Timothy Stack
4712bb6f76
update test for json logs with objects/arrays
2016-11-11 20:45:56 -08:00
Timothy Stack
a59e0b290e
[format] allow json log fields to be hidden
...
Fixes #303
2016-10-29 06:52:12 -07:00
Timothy Stack
b392886f0c
[highlight] choose highlight color based on the regex
...
Defect Number:
Reviewed By:
Testing Done:
2016-10-25 06:42:05 -07:00
Timothy Stack
9f79dcc31a
[format] point out the location of a pcre-compile error
...
Defect Number:
Reviewed By:
Testing Done:
2016-10-21 08:57:51 -07:00
Timothy Stack
41a2eed239
[pretty-print] fix printing of quoted strings that have escaped characters
...
Fixes #354
2016-10-14 11:18:00 -07:00
Timothy Stack
2e68f48a18
[hist] check for zoom with no logs
...
Fixes #346
2016-08-25 21:20:48 -07:00
Timothy Stack
b216993760
[tests] missed a format file in the makefile
2016-08-23 06:50:01 -07:00
Timothy Stack
5539e21c05
[log-format] fix line-format where a variable can span lines
...
Fixes #337
2016-08-23 06:34:18 -07:00
Timothy Stack
c05dfafae8
[log-format] abbreviate long fields when formatting JSON logs
...
Fixes #340
2016-08-22 06:45:27 -07:00
Timothy Stack
9ee18c26d3
[log-format] add min-width and align options to line-format
...
Also some fixes for validating the format definitions.
Fixes #338
2016-08-21 21:34:52 -07:00
Timothy Stack
41854cf637
[json-log] custom date formats
...
Fixes #341
2016-08-18 22:15:35 -07:00
Timothy Stack
8dbf018814
[loader] the loader was not converting the level name to the enum value correctly
...
Closes #329
2016-06-30 21:59:51 -07:00
Eli Young
5602af33f8
[fmt] Fix glog_log format
...
The log format used by glog uses spaces to left-pad the thread to 7
digits, per the code:
https://github.com/golang/glog/blob/65d6746/glog.go#L577
This fixes the regular expression to correctly match the extra
whitespace.
2016-06-30 18:36:45 -07:00
Tim Stack
91633d089f
Merge pull request #320 from sureshsundriyal/db-attach
...
[secure-mode] Disallow ATTACH statements completely.
2016-05-04 21:18:33 -07:00
Suresh Sundriyal
6663740c5e
[secure-mode] Disallow ATTACH statements completely.
...
The code to handle in-memory db exceptions is hideous and unreliable,
given the fact that SQLite does not expose much in terms of getting the
current value and the methods to check the compile time options can
themselves be disabled by a compile=time option in SQLite.
There really isn't much use for in-memory databases and if someone
really needs it, they can always choose to run in normal mode, so just
remove the extra code.
2016-05-04 20:21:01 -07:00
Tim Stack
1850c4f678
Merge pull request #318 from sureshsundriyal/db-attach
...
[secure-mode] Prevent users from attaching db files.
2016-05-03 10:37:03 -07:00
Timothy Stack
5ea5504aec
[time] fix time rollover for days
...
Fixes #304
2016-05-03 06:43:00 -07:00
Timothy Stack
a4deaa1e8b
[spectro] log_time must be in ascending order
2016-05-02 22:59:04 -07:00
Suresh Sundriyal
1e6878164f
[secure-mode] Refactoring and check for sqlite version.
...
'mode=memory' query parameter is only supported from sqlite3 version
3.8.0 onwards. Make sure to check for the version before continuing with
the 'ATTACH' statement.
Turning off some of the tests, since they fail on the Travis CI setup
which uses sqlite version 3.6.0.
2016-05-02 21:43:11 -07:00
Suresh Sundriyal
e6c87678e9
[secure-mode] Prevent users from attaching db files.
...
Prevent the users from attaching an external db file which they may not
have ownership of.
The current authorizer method is hooked in only when the LNAVSECURE
variable is set. This is done deliberately, since the method will be
called on every sqlite query and I did not want to incur a performance
hit.
If the scope of this authorizer increases, we should consider passing in
the lnav_data as pUserData and do the checks inside the authorizer
itself.
2016-05-02 20:58:20 -07:00
Timothy Stack
82f970c09e
[config] add a config option to control A_DIM for text
...
Fixes #298
2016-05-01 20:35:37 -07:00
Timothy Stack
3167302722
[data-parser] fix some issues with parsing hierarchical data and improve the debugger
2016-04-28 23:34:13 -07:00
Suresh Sundriyal
88833c8035
[commands] Read and honor the 'LNAVSECURE' environment variable.
...
Read the value of the 'LNAVSECURE' environment variable upfront and
store it in the lnav_data structure. When this variable is set prior to
the binary execution, the following commands are disabled:
* 'open'
* 'pipe-to'
* 'pipe-line-to'
* 'write-*-to'
This is a proposed fix for tstack/lnav#305 .
2016-04-23 10:34:17 -07:00
Timothy Stack
54b9c5ebf5
[parser] handle empty groups
2016-04-12 06:18:26 -07:00
Timothy Stack
2b76181fd6
[parser] try to handle apostrophes better
2016-04-11 08:39:16 -07:00
Timothy Stack
a8cd28097b
[spectro] add some better error messages for the spectrogram command and fix some vtable glitches
2016-04-08 06:21:58 -07:00
Timothy Stack
23020e8a89
[test] missed setting TZ
2016-04-02 21:18:28 -07:00
Timothy Stack
4f05af6408
[time] add support for TAI64N timestamps
...
Fixes #300
2016-04-02 20:58:20 -07:00
Timothy Stack
a384e240f9
missed updating the makefile
2016-03-27 15:28:47 -07:00
Timothy Stack
afc8cc44b6
[json-format] support integer values for log levels in json formats
2016-03-27 15:14:52 -07:00
Timothy Stack
7a6429519f
[summary-line] change error count to error rate and do some cleanup on message levels
2016-03-24 23:58:25 -07:00
Timothy Stack
13c90726a2
[tests] some more testing and stats for logfiles
2016-03-23 22:14:59 -07:00
Timothy Stack
e8f400abfa
[logfile] truncation detection was not taking into account compressed files
2016-03-21 21:10:52 -07:00
Timothy Stack
fdc2748e3e
[spectro] add a spectrogram view that works with known message fields
2016-03-20 15:15:50 -07:00
Timothy Stack
8de5d3b749
[logfile] add more options when opening files
2016-03-12 14:12:23 -08:00
Timothy Stack
4b318e45e0
[parser] some more parser tweaking and fix a jget() issue
2016-03-10 22:11:53 -08:00
Timothy Stack
2d04d047e4
[sql] change extract() to regexp_match() and make extract() an interface to the data_parser
2016-03-10 06:03:32 -08:00
Timothy Stack
d4a69cbf22
no joy
...
Revert "[sql] change extract() to regexp_match() and make extract() an interface to the data_parser"
This reverts commit 85eee6514b
.
2016-03-09 23:30:34 -08:00
Timothy Stack
85eee6514b
[sql] change extract() to regexp_match() and make extract() an interface to the data_parser
2016-03-09 23:14:54 -08:00