eventtype="product-view"|stats count list(productname) as Products by username firmname
The above is the search string that I'm using and I receive the following results:
Instead of listing an overall count of products, I would like to have a count for each individual product. Not sure how to edit the current string or add a nested stats string to accomplish the said task.
Try this
eventtype="product-view"|stats count by username firmname,productname | stats list(*) as * by username firmname
Try this
eventtype="product-view"|stats count by username firmname,productname | stats list(*) as * by username firmname
That did the trick! Thank you very much!
Try this..
eventtype="product-view"|stats count by productname
That doesn't specifically display the username and firmname though. Please see below: