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
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...