It would be helpful if you showed up the original data you are summarizing over.
It seems to me that your quotes are wrong in your reporting query, but maybe that's from some copy/paste to here.
Also, either (the former is probably preferable):
Your summarizing search should use sistats instead of stats ; or
Your reporting search should use sum(count) instead of count
Nevertheless, you should be getting a correct field extraction. Sometimes, the field extraction rules for summary data have been overridden, possibly because the sourcetype has been changed from stash , or some host-based or source-based rule takes precedence and prevents it from running right.
I will also note that your schedule will generate summaries over time ranges from
01:02:00 - 01:06:59
01:07:00 - 01:11:59
01:12:00 - 01:16:59
01:17:00 - 01:21:59
...
etc.
which while correct, are not particularly great if you wanted to aggregate or timechart up to 15min or 1h intervals typically on a quarter-hour or hour. Better to line them up on 5 minute markers by changing the cron to 3,8,13,18,23,28,33,38,43,48,53,58 * * * *
... View more