Splunk Search

Average pageviews per hour

rcovert
Path Finder

I am trying to do something very simple but cannot figure it out. I am new to splunk and using the web intelligence app.

I am trying to look at the average # of pageviews for each hour of the day over a wide time period to find out the least busiest time of day so I can schedule maintenance.

Can anyone help me?

Tags (3)
0 Karma

meishar
New Member

Hi,

Try this:
sourcetype="that has data for pageviews" |chart avg(pageviews) over date_hour

Hope I helped:)


If you ever want to see breakdown by day run:

sourcetype="that has data for pageviews" | convert timeformat="%m/%d/%y" ctime(_time) as "day_time" | chart avg(pageviews) over date_hour by day_time

0 Karma

rcovert
Path Finder

That worked great for the total pageviews! Thanks! Here is the search:

host=* [ stats count | addinfo | eval range=info_max_time - info_min_time | eval search=if(range<=(86400+3600),"index=wi_summary_hourly","index=wi_summary_daily") ] source="User session visitor source*" | chart eval(sum(myeventcount)) AS pageviews over date_hour

However, I was looking for the average and when I replace sum(myeventcount) with avg(myeventcount), it doesn't give a correct average. Any thoughts?

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...