mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
make the documentation of the SQLite reader/writer a bit nicer.
This commit is contained in:
parent
0fdbdff3c4
commit
a09d8e94e0
2 changed files with 17 additions and 3 deletions
|
@ -1,6 +1,12 @@
|
||||||
##! Interface for the SQLite input reader.
|
##! Interface for the SQLite input reader. Redefinable options are available
|
||||||
|
##! to tweak the input format of the SQLite reader.
|
||||||
##!
|
##!
|
||||||
##! The defaults are set to match Bro's ASCII output.
|
##! See :doc:`/frameworks/logging-input-sqlite` for an introduction on how to
|
||||||
|
##! use the SQLite reader.
|
||||||
|
##!
|
||||||
|
##! When using the SQLite reader, you have to specify the SQL query that returns
|
||||||
|
##! the desired data by setting ``query`` in the ``config`` table. See the
|
||||||
|
##! introduction mentioned above for an example.
|
||||||
|
|
||||||
module InputSQLite;
|
module InputSQLite;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
##! Interface for the SQLite log writer. Redefinable options are available
|
##! Interface for the SQLite log writer. Redefinable options are available
|
||||||
##! to tweak the output format of the SQLite reader.
|
##! to tweak the output format of the SQLite reader.
|
||||||
|
##!
|
||||||
|
##! See :doc:`/frameworks/logging-input-sqlite` for an introduction on how to
|
||||||
|
##! use the SQLite log writer.
|
||||||
|
##!
|
||||||
|
##! The SQL writer currently supports one writer-specific filter option via
|
||||||
|
##! ``config``: setting ``tablename`` sets the name of the table that is used
|
||||||
|
##! or created in the SQLite database. An example for this is given in the
|
||||||
|
##! introduction mentioned above.
|
||||||
|
|
||||||
module LogSQLite;
|
module LogSQLite;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue