# trackcode-generator
Generate a random trackcode based on host field, and remove the host field. The trackcode is cached for one year.
# Prerequisites
You must use trackcode-generator after filter, parser, deduplicator middleware.
# How to use
# ezPAARSE admin page
On the /admin/middlewares page, you can choose to move the middleware from “Available Middleware” to “Active Middleware for Processing.”
# ezPAARSE process page
On the /process page, under the “2 Settings” tab, in the ‘Settings’ menu, you can choose to move the middleware from “Available Middleware” to “Active Middleware for Processing.”
# ezp
You can use trackcode-generator for an enrichment process with ezp (opens new window) like this:
# enrich with one file
ezp process <path of your file> \
--host <host of your ezPAARSE instance> \
--settings <settings-id> \
--header "ezPAARSE-Middlewares: trackcode-generator" \
--out ./result.csv
# enrich with multiples files
ezp bulk <path of your directory> \
--host <host of your ezPAARSE instance> \
--settings <settings-id> \
--header "ezPAARSE-Middlewares: trackcode-generator"
# curl
You can use trackcode-generator for an enrichment process with curl like this:
curl -X POST -v http://localhost:59599 \
-H "ezPAARSE-Middlewares: trackcode-generator" \
-H "Log-Format-Ezproxy: <line format>" \
-F "file=@<log file path>"