Serialize Module#
This module filters columns from a ControlMessage
object, emitting a MessageMeta
.
Configurable Parameters#
Parameter |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
list[string] |
List of columns to include |
|
|
|
list[string] |
List of regex patterns to exclude columns |
|
|
|
boolean |
If true, the columns are fixed and not determined at runtime |
|
|
|
string |
Regex to include columns |
|
|
|
boolean |
If true, use C++ to serialize |
|
|
Example JSON Configuration#
{
"include": "^column",
"exclude": ["column_to_exclude"],
"fixed_columns": true,
"columns": ["column1", "column2", "column3"],
"use_cpp": true
}