mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
now the writer supports tables and vectors.
still not tested, but using Log::default_writer=Log::WRITER_SQLITE seems to generate all the right log-databases, etc.
This commit is contained in:
parent
0a439b6b61
commit
c664c40ac2
5 changed files with 145 additions and 19 deletions
|
@ -2,3 +2,4 @@
|
|||
@load ./postprocessors
|
||||
@load ./writers/ascii
|
||||
@load ./writers/dataseries
|
||||
@load ./writers/sqlite
|
||||
|
|
10
scripts/base/frameworks/logging/writers/sqlite.bro
Normal file
10
scripts/base/frameworks/logging/writers/sqlite.bro
Normal file
|
@ -0,0 +1,10 @@
|
|||
##! Interface for the SQLite log writer. Redefinable options are available
|
||||
##! to tweak the output format of the SQLite reader.
|
||||
|
||||
module LogSQLite;
|
||||
|
||||
export {
|
||||
## Separator between set elements.
|
||||
const set_separator = "," &redef;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue