Hey, I have implemented a GeneratingCommand splunk application that fetches data from an API and yields the results chunk after chunk. I am encountering an issue, where the event count on the top left seems funky - it shows `50000 of 0 events matched` and after the next chunk is fetched `100000 of 0 events matched` and so on. I would like to know if and how it's possible to update the `0` counter from within my application, I know the total amount of scanned events from the very first reply I get from the API, but even if it's not possible to set to any desired number I would at least expect it to be possible to "match" the left side of that is increased on every yield... Thanks in advance, Alon
... View more