Splunk Search

Restrict Hosts in This Particular Search

aferone
Builder

Hello to all,

I am using the search in the link below to find hosts that haven't logged in a certain amount of time:

http://splunk-base.splunk.com/answers/3181/how-do-i-alert-when-a-host-stops-sending-data

| metadata index=yourindex type=hosts | eval age = now()-lastTime | where (age > 3600 AND age < 7200) | sort age d | convert ctime(lastTime) | fields age,host,lastTime

How do I restrict certain hosts from the search? There are hosts that we don't necessarily want to be alerted on, but I wasn't able to figure out how to do it with the metadata searches.

Any help would be great, and thanks!

Tags (3)
0 Karma
1 Solution

lguinn2
Legend

Try

| metadata index=yourindex type=hosts 
| search host!=nothishost* host!=notthishost2.*
| eval age = now()-lastTime 
| where (age > 3600 AND age < 7200) 
| sort age d | convert ctime(lastTime) | fields age,host,lastTime

If you have a lot of hosts to eliminate, there are other ways, but this is easiest.

View solution in original post

0 Karma

lguinn2
Legend

Try

| metadata index=yourindex type=hosts 
| search host!=nothishost* host!=notthishost2.*
| eval age = now()-lastTime 
| where (age > 3600 AND age < 7200) 
| sort age d | convert ctime(lastTime) | fields age,host,lastTime

If you have a lot of hosts to eliminate, there are other ways, but this is easiest.

0 Karma

aferone
Builder

Perfect! Thanks!

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...