Final changes to log framework ext code.

The "metadata" functionality has been renamed to "ext" to
represent that the logs are being extended.  The function that
returns the record which is used to extend the log now receives
a log filter as it's single argument.

The field name "unrolling" is now renamed to "scope" so the variables
names now look like this: "Log::default_scope_sep"
This commit is contained in:
Seth Hall 2016-08-10 12:43:32 -04:00
parent a60ce35103
commit 5f6565d62c
4 changed files with 92 additions and 64 deletions

View file

@ -3,4 +3,4 @@
@load base/protocols/conn
redef Log::default_unrolling_sep = "_";
redef Log::default_scope_sep = "_";

View file

@ -6,7 +6,7 @@
@load base/protocols/conn
redef Log::default_unrolling_sep = "*";
redef Log::default_scope_sep = "*";
redef Log::default_field_name_map = {
["id*orig_h"] = "src",
["id*orig_p"] = "src_port",