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!

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