Hi @EvansB, let me understand: do you want to use _time for grouping events or as a field to display? in the first case you could use the hint of @tshah-splunk , but is useful to add a bin command before the stats to group results, otherwise you'll have too many results: | bin _time span=1d
| stats values(*) as * by _time if instead you need to display _time as a field, you can put it in the stats options, using some function: values(to have all the distinct values of _time, earliest to have the first value, latest to have the latest value. In both situations, you have also, at the end, to convert _time from epochtime to human readable format using strftime. Ciao. Giuseppe
... View more