Hi everyone,
I have a very basic search outputting two types of entries into a field called "event". I need to get a count of each type per hour. I've been able to get the view I want using the pivot but don't really want to burden the system maintaining the data model if I don't need to. So here's my question:
How can I create a table (assuming using stats) to show two rows (one for each type) and columns for each hour's total (descending)?
Desired format:
Current output when I try to use stats:
| eval time=strftime(_time,"%Y-%m-%d %H:%M")
| xyseries event time count
we are the leading waste collector for <a href="https://www.shaktiplasticinds.com/extended-producer-responsibility-epr"Extended producer responsibility </a> waste management
we are the leading waste collector for <a href="https://www.shaktiplasticinds.com/extended-producer-responsibility-epr"Extended producer responsibility </a> waste management
| eval time=strftime(_time,"%Y-%m-%d %H:%M")
| xyseries event time count
Worked perfectly. TY!