We are processing log files that track how orders flow through the fulfillment workflow. One of the elements we capture is the status code, which is a 2-3 character acronym which translates to a meaningful description - example: OR = Order Received, VS = Validation Successful, OF = Order Failed, etc.
I need to find a way to translate these codes (which may not mean anything to our users) into the descriptions which they represent. I plan on recording this info in ElasticSearch as output and Kibana to search/present results.
Is there concept of a lookup table concept in LS, or ES that I could apply to achieve this nicely?!