We have a log correlation program which process a stream of logs coming in. There are about 10 different type of log messages which can come from various servers. These individual logs describe various facets of a single transaction that happened on the server. Each log entry has a unique transaction identification number which ties together all logs belonging to the transaction. Depending on the transaction the number of logs needed to fully describe a transaction may vary between 4 and 6. The log entries can come in any order. Log correlation of one transaction is deemed complete when all logs describing that particular transaction has been received.
There is also a requirement that multiple transactions needs to be coalesced into single logical transaction. This is triggered when a specific log entry with 2 transaction identification is received.
We have the program ready and running fine, but we need to document this in a standard format so that all complex conditions are made explicit and a new member to the team can understand the logic of correlation without reading through the code.
State diagrams do not cut as the logs can come in any order (and some logs are even optional) and that will cause the number of states to explode. I know that Complex Event processing (CEP) is a well established discipline and will have a solution to the problem I describe. There may be even more elegant solution which I am not even aware of.
What language/tool would SO community suggest for such a documentation need.
Thank You.