@PickleRick wrote: Hmm. That should have given you top values for every bin. At least that's how I understood your specs. Drop the last stats and see what you get. You should get a table of counted x_forwarded_for values sorted by count, groupped by time (divided into 5-minute bins) x_forwarded_for _time count x.x.x.1 2022-02-10 13:20:00 191 x.x.x.2 2022-02-10 13:20:00 77 x.x.x.3 2022-02-10 13:20:00 66 every ip in the table is in the same 13:20:00 _time bin when I remove the last stat. One thing that might be interesting to note, when I do execute the query with stats first(*) by _time, halfway through the execution, it seems like there's a chart with a row for every bin with an x_forwarded_for value and count associated with that _time bin. By the end of the execution, that list is compressed to a single row.
... View more