Hey Splunk gang, I have a dashboard that I am creating and it will ingest a file every 5 minutes. I need to create a search that will accumulate the value of an extracted field. ie.) Extracted field = ACA, and it comes in the first time at 10, and then the second time(5 minutes later) at 15 and the dashboard displays 25. Ideally in a single value panel. Here is the search that produces the original value, but it does not accumulate a total: | rename "Amt Credits Acc" as "ACA" | fieldformat ACA = ("$".ACA) | table "ACA"
... View more