Hi, I have a splunk query as below: index=platform env=sandbox http_method="GET" This gave me 1 result back. Now, when I am applying transaction command to it index=platform env=sandbox http_method="GET" | transaction startswith="GET" It is returning 0 results. 🤔 However, if I do like this: index=platform env=sandbox http_method="GET" | transaction startswith="GET" keepevicted=true It returns my 1 result back. Value of `closed_txn` is 1. Also, if I do like below, still it returns my 1 result back. What is going on ? index=platform env=sandbox http_method="GET" | transaction CorrelationId startswith="GET" "GET" is present in my event `_raw` otherwise first search command would not have returned me 1 result.
... View more