CLI tool to convert event logs from one format to another fast and efficiently.
Supports the following conversions:
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
```
A simplistic comparison of running time for the conversion of a 175 MB XES file to CSV and back to XES.
| Tool | Conversion Type | User Time | System Time | CPU Usage | Total Time | |---------------------|-----------------|-----------|-------------|-----------|------------| | pm4pywrapper | XES to CSV | 15.20s | 4.85s | 111% | 17.943s | | pm4pywrapper | CSV to XES | 28.33s | 5.28s | 113% | 29.682s | | eventlogconverter | XES to CSV | 1.01s | 0.11s | 99% | 1.129s | | eventlogconverter | CSV to XES | 0.77s | 0.19s | 99% | 0.966s |