Splunk Search

Need help in query

Praz_123
Communicator

Need help for the below Query 

index=na sourcetype=na:co state=down host_state_type="HARD" [| tstats prestats=f values(host) as host_name WHERE index=df AND host!=1* | eval host_name=lower(host_name) | mvexpand host_name ]
| stats count as DownMins by host_name |sort - DownMins|head 25 | addcoltotals label=Total labelfield=host_name


While am running the query for last 24 hours its showing results but when I reduced the time range to less than 24 hours it's not showing any output but previously this query is running fine.

Also while I run the query like - 

It shows me output for last 24 hours   - index=na sourcetype=na:co state=down host_state_type="HARD"
while I search the same host in  - index= df  host="ooo"

Am getting the results while combining both not getting results less than 24 hours 

Also I can see in the backend those host are down but not showing in Splunk query 

Labels (1)
0 Karma

PickleRick
SplunkTrust
SplunkTrust

Ok. There are some diagnostic steps you can do

1. Run the subsearch on its own and check what results it yields if any and how long it takes to complete.

2. Run the initial search (the part before the first | stats) and check what results you're getting.

3. Check your data. If reducing time range "breaks" your search you might have issues with your data/ingestion (misconfigured timestamp recognition, delay in ingestion pipeline and so on).

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Praz_123 ,

let me understand: you want to filter results from the main search with the values of the firls of host_name from the subsearch, is it correct?

please try this:

index=na sourcetype=na:co state=down host_state_type="HARD" [ | tstats count WHERE index=df AND host!=1* BY host | eval host_name=lower(host) | fields host_name ]
| stats count as DownMins by host_name 
| sort - DownMins|head 25 
| addcoltotals label=Total labelfield=host_name 

Ciao.

Giuseppe

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...