zeek/policy/logging-ascii.bro
Robin Sommer b69ecff3ee More options for the ASCII writer.
# The prefix for the header line if included.
	const header_prefix = "# " &redef;

	# The string to use for empty string fields.
	const empty_field = "" &redef;

	# The string to use for an unset optional field.
	const unset_field = "-" &redef;
2011-03-09 16:52:46 -08:00

25 lines
566 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 string to use for empty string fields.
const empty_field = "" &redef;
# The string to use for an unset optional field.
const unset_field = "-" &redef;
}