Norma configuration now support the following features:
node.mount to bind the provided local directory to the node's data directory datadir. This means datadir is also persisted after the node has been removed.
Additionally tmp is a hardcoded shorthand to have the output directory, /tmp/norma_data_<label>_<timestamp>.
Usage:
node:
- name: example
mount: /absolute/local/path # example's datadir will be binded to /absolute/local/path/example-0
- name: example-tmp
mount: tmp # tmp is a short hand for output directory /tmp/norma_data_####/example-tmp-0
node.export.path will execute event export function and export events thus far to the provided path.
node:
- name: example
mount: tmp # mount required, since we need to access node's datadir
event:
export: events.gz # exported as /tmp/norma_data_####/example-0_events.gz
Norma configuration now support the following features:
node.mount
to bind the provided local directory to the node's data directorydatadir
. This meansdatadir
is also persisted after the node has been removed.Additionally
tmp
is a hardcoded shorthand to have the output directory,/tmp/norma_data_<label>_<timestamp>
.Usage:
node.export.path
will execute event export function and export events thus far to the provided path.