I have this search that displays my conversion rate:
tag=external_traffic eventtype=pageactions session_id=\*
| transaction session_id startswith=(referrer=/store/category/page) maxpause=30m mvlist=f
| eval didco = if(match(url, "/checkout/order"), 1, 0 )
| stats sum(didco) as cr , count as sessions by experienceId
| eval conv_rate = cr/sessions
| table experienceId conv_rate
This gives me the conversion rate for the search period, but how can I do this as a daily number?
Notice the "experienceId" there are 2 experiences on the site, and I want to see the conversion rate for both them on a daily chart.
↧