Event Log Converter

crates.io

CLI tool to convert event logs from one format to another fast and efficiently.

Supports the following conversions:

Usage

bash $ event-log-converter -i filename.xes xes-to-csv

More on usage:

``` Usage: eventlogconverter [OPTIONS] --input-log

Commands: xes-to-csv
csv-to-xes
help Print this message or the help of the given subcommand(s)

Options: -i, --input-log The input event log path -o, --output-dir The output directory for the converted log [default: .] -n, --no-start-events Filter out Start and End events if present in the log -c, --case Case ID column name [default: case] -a, --activity Activity column name [default: activity] -r, --resource Resource column name [default: resource] -s, --start-time Start timestamp column name [default: starttime] -e, --end-time End timestamp column name [default: endtime] -v, --variant Variant column name [default: variant] -h, --help Print help information -V, --version Print version information

```