# qualifier
Checks consultation events' qualification. See the dedicated page for more detail.
This middleware is activated by default.
# How to use
# ezPAARSE admin interface
You can add or remove qualifier by default to all your enrichments, To do this, go to the middleware section of administration.
# ezPAARSE process interface
You can use qualifier for an enrichment process. You just add the middleware.
# ezp
# enrich with one file
ezp process <path of your file> \
--host <host of your ezPAARSE instance> \
--settings <settings-id> \
--header "ezPAARSE-Middlewares: qualifier" \
--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: qualifier"
# curl
You can use qualifier for an enrichment process with curl like this:
curl -X POST -v http://localhost:59599 \
-H "ezPAARSE-Middlewares: qualifier" \
-H "Log-Format-Ezproxy: <line format>" \
-F "file=@<log file path>"