mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
28 lines
634 B
Text
28 lines
634 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;
|
|
|
|
# True to include a header line with column names.
|
|
const include_header = T &redef;
|
|
|
|
# The prefix for the header line if included.
|
|
const header_prefix = "# " &redef;
|
|
|
|
# The separator between fields.
|
|
const separator = "\t" &redef;
|
|
|
|
# The separator between set elements.
|
|
const set_separator = "," &redef;
|
|
|
|
# The string to use for empty fields.
|
|
const empty_field = "" &redef;
|
|
|
|
# The string to use for an unset optional field.
|
|
const unset_field = "-" &redef;
|
|
}
|
|
|
|
|