Splunk Search

Display Page Views and Visits in same table

hagjos43
Contributor

Good morning fellow splunkers,
I'm trying to display the top 20 page views( aka hits) and visits(unique sessions) within the same table / chart. Below is my query and it's not working:

sourcetype=iis |dedup utma as Visits | stats count(Visits) as Visits, count(Page) as Views by Page | sort - count | head 20

utma is a google analytics tag that defines a user session, hence the dedup. Any suggestions would be greatly appreciated!

Thanks!

0 Karma

somesoni2
Revered Legend

Try this

sourcetype=iis | eventstats dc(utma) as Visits | stats count as Views, first(Visits ) as Visits by Page | sort - Views  | head 20
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...