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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...