Within my event data I have a file name for a data set that we move around between services.
Input files are sent in a zip file named "< env >.< app >.< client >< site >.< date >.zip". Where:
< env > is the environment as "test", "qa", or "prod"
< app > is the appcode in \w\w\w\d\d\d format
< client > is the 3-digit client number
< site > is the 2-digit site code
< date > is the 3-digit julian date plus "01" for AM, or "02" for PM
Example:
test.abc123.51720.02701.zip
I use the entirety of the file name as my 'source file' (SFIL) to track it through the three systems that touch/move it.
What I would like to do is ALSO track by <env> <app> <client> or <site> which are parts of the previously define source file (SFIL).
Suggestions?