Splunk Search

What command should I use to get the average of my entries by hour?

nelli_
Engager

Hi

I am new to Splunk so this little operation that would be simple in SQL seems to be real puzzling to me.

I get count per distinct entries by ... | stats count as counter by subtype, type, devname, date, date_hour

For example;

allowed     traffic     FortiWifiA  2016-09-12  10  1
allowed     traffic     FortiWifiA  2016-09-12  11  4
allowed     traffic     FortiWifiA  2016-09-12  12  3
allowed     traffic     FortiWifiB  2016-09-12  13  100

If I do ... | stats count as counter by subtype, type, devname, date, date_hour | stats avg(counter) by devname, type, subtype the result is;

FortiWifiA  traffic     allowed     1.333
FortiWifiB  traffic     allowed     100.000

But what I wanted is;

FortiWifiA  traffic     allowed     2.000
FortiWifiB  traffic     allowed     25.000

So sum of counter group by devname, type, subtype divided by total number of results. How do I do that?

BR,
Nelli

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

... | stats count as counter by subtype, type, devname, date, date_hour | eventstats dc(date_hour) as hours | eval counter=counter/hours | stats sum(counter) by devname, type, subtype

View solution in original post

somesoni2
Revered Legend

Try like this

... | stats count as counter by subtype, type, devname, date, date_hour | eventstats dc(date_hour) as hours | eval counter=counter/hours | stats sum(counter) by devname, type, subtype

nelli_
Engager

Thanks. This got me started on the fine tuning 🙂

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, ...