mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +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; }
15 lines
318 B
Text
15 lines
318 B
Text
|
|
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;
|
|
}
|
|
|