- Using a bash terminal either:
go run press.go --dir={PATH_TO_DIRECTORY_WITH_LOG_FILES}
or./bin/press --dir={PATH_TO_DIRECTORY_WITH_LOG_FILES}
- You will find newly created
{FILENAME}.log.csv
files based on the original log files
- Add a --output flag that will indicate the directory where the newly created files will be stored.
- The
event/request/parameters/param
elements are concatenated as a single value for the columnrequest.parameters
with the formatparamName1:paramValue1;paramName2:paramValue2;...
- The
event/tags-added/tag
elements are concatenaed as a single value for the columntags.added
with the formattagName1^tagType1;tagName2^tagType2;...
- The
event/tags-removed/tag
elements are concatenaed as a single value for the columntags.removed
with the formattagName1^tagType1;tagName2^tagType2;...
- Value items that contain commas are handled properly.
- Use the 'any' column to identify any data element that we are not properly unmarshalling.