Changes between Version 473 and Version 474 of WikiStart
- Timestamp:
- 03/23/22 13:37:23 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v473 v474 740 740 The LogConverter tool adds outcome utilities to APP.json and APPLearn.json log files. These log files are just serialized NegoState objects. The converter picks up the results from these and adds utilities to them. Then it can write the results to stdout or a file, in either JSON or CSV format. 741 741 742 As usual, download the latest logconverter jar-with-dependencies [http://artifactory.ewi.tudelft.nl/artifactory/webapp/#/artifacts/browse/tree/General/libs-release-local/geniusweb/logconverter from the artifactory] 743 742 744 You call the logconverter like this (download the logconverter from the artifactory, or download the sources): 743 745 {{{ 744 java -jar target/logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/APP1646925947841local.json -f CSV -o test.csv746 java -jar logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/APP1646925947841local.json -f CSV -o test.csv 745 747 }}} 746 748 747 749 You can also convert an entire directory, like this (make sure you create the output dir and that all files in the source dir are NegoState objects) 748 750 {{{ 749 java -jar target/logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/ -f CSV -o test751 java -jar logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/ -f CSV -o test 750 752 }}} 751 753