Knowledge Management

Summary Indexing a stats query

Oren
Explorer

I have a simple query:

eventtype=request | stats sum(http_bytes) as transfer by http_domain | head 50 | sort -transfer

I'd like to summarize this, and pull out transfer apps over time. When I tried with:

eventtype=request | sistats sum(http_bytes) as transfer by http_domain | sort -transfer | head 100

This query gives me questionable results:

 index="summary" search_name="Z - Top App Transfer - 15 minutes" | stats sum(http_bytes) as bytes by http_domain | sort -bytes | eval bytes = tostring(bytes, "commas") | head 50

The reason I'm summing http_bytes in the query is the sistats didn't seem to store the field "transfer".

Any obvious things I'm doing wrong?

Tags (1)
1 Solution

Stephen_Sorkin
Splunk Employee
Splunk Employee

You should store to your summary index:

eventtype=request | sistats sum(http_bytes) as transfer by http_domain

You should retrieve from your summary index:

index=summary source=<saved_search_name> | stats sum(http_bytes) as transfer by http_domain | sort -transfer | eval transfer = tostring(transfer, "commas") | head 50

Specifically, you're not allowed to do any processing between sistats and the corresponding stats, except saving and retrieving the event set.

View solution in original post

Stephen_Sorkin
Splunk Employee
Splunk Employee

You should store to your summary index:

eventtype=request | sistats sum(http_bytes) as transfer by http_domain

You should retrieve from your summary index:

index=summary source=<saved_search_name> | stats sum(http_bytes) as transfer by http_domain | sort -transfer | eval transfer = tostring(transfer, "commas") | head 50

Specifically, you're not allowed to do any processing between sistats and the corresponding stats, except saving and retrieving the event set.

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...