mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 04:58:21 +00:00

module LogAscii; export { # Output everything to stdout rather than into files. This is primarily # for testing purposes. const output_to_stdout = F &redef; # The separator between fields. const separator = "\t" &redef; # True to include a header line with column names. const include_header = T &redef; }
17 lines
690 B
Text
17 lines
690 B
Text
List of the things not implemented yet:
|
|
|
|
- Not sure if the logging does the right thing with &optional and
|
|
&default values. Needs testing.
|
|
- Check the new event-value code.
|
|
- The Ascii writer doesn't escape the delimiter if it appears
|
|
within a field's value. Seems we need to do that.
|
|
|
|
Notes about remote logging:
|
|
|
|
- The receiver must create the stream locally via
|
|
Log::create_stream() in order to receive data for it. If not
|
|
created, anything sent will be ignored.
|
|
|
|
- However, the receiver does not need to create filter locally.
|
|
Filter processing is done and the sender side, and as long as
|
|
stream exists at the receiver, it will record whatever it gets.
|