I have below splunk which gives result of top 10 only for a particular day and I know the reason why too. How can I tweak it to get top 10 for each date i.e. If I run the splunk on 14-Oct, the output must include 10-Oct, 11-Oct, 12.-Oct and 13-Oct each with top 10 table names with highest insert sum index=myindex RecordType=abc DML_Action=INSERT earliest=-4d
| bin _time span=1d
| stats sum(numRows) as count by _time,table_Name
| sort limit=10 +_time -count Thanks in advance
... View more