WriteToFile Module#
This module writes messages to a file.
Configurable Parameters#
Parameter |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
string |
Path to the output file |
|
|
|
string |
Type of file to write |
|
|
|
boolean |
If true, flush the file after each write |
|
|
|
boolean |
If true, include the index column |
|
|
|
boolean |
If true, overwrite the file if it exists |
|
|
Example JSON Configuration#
{
"filename": "output.csv",
"overwrite": true,
"flush": false,
"file_type": "CSV",
"include_index_col": false
}