Splunk Search

Subsearch in realtime search vs scheduled search

chris
Motivator

I have a search that should display a percentage of bad events compared to the good events over a time period. I wanted to migrate this search from a scheduled search to a real time search and for some reason that I can not figure out why the subsearch I use to calculate the total number of events returns a different amount (which varies quite a lot) when I convert it.

Here is the search:

sourcetype=xy source!="good_events" | stats count AS bad_hosts | eval all_hosts = [ search sourcetype="xy" source="good_events" | stats count AS good_hosts | rename good_hosts AS query ] | eval diff = round(bad_hosts/good_hosts*100, 2)

Is it possible that the subsearch is run twice when the realtime search starts and backfills historical events?

Or do you reckon the subsearch isn't necessary for this type of search ... that doesn't answer why switching to real time yields completely different results though.

Thanks

Chris

Tags (2)
0 Karma
1 Solution

MuS
Legend

Hi chris,

Sub searches of a real-time search run over all-time unless explicit time bounds are specified within the sub search.
Could that be your problem here?

cheers, MuS

View solution in original post

MuS
Legend

Hi chris,

Sub searches of a real-time search run over all-time unless explicit time bounds are specified within the sub search.
Could that be your problem here?

cheers, MuS

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