Splunk Search

help on subsearch field matching

jip31
Motivator

Hi

I use actually the search below in order to doing a match between a search and a workstation name (host)

    eventtype=Charge AND (host=toto OR host=tata OR host=titi)

But I have a huge list of host so I have to find another solution

I tried this but I have no results
eventtype=Charge AND index=”tutu” sourcetype="tete" “$IND$”
“$IND$” is a flag that I can find in host=toto OR host=tata OR host=titi in order to identify these machines
It's strange because when I m just doing index=”tutu” sourcetype="tete" “$IND$”, it returns me the good host list
What is the issue please?

So I planned to do something like this :

eventtype=Charge [|inputlookup host.csv]

OR

eventtype=Charge 
| join host type="outer" 
    [ search index=”tutu” sourcetype="tete" “$IND$”]

What is the best way to do what I want?
Is there other solutions
Thanks for you help

Tags (1)
0 Karma
1 Solution

FrankVl
Ultra Champion

eventtype=Charge AND index=”tutu” sourcetype="tete" “$IND$” is not using a subsearch, you're just adding extra search criteria.

Try: eventtype=Charge [ search index=”tutu” sourcetype="tete" “$IND$”| stats count by host | table host ]

See also: https://docs.splunk.com/Documentation/Splunk/latest/Search/Aboutsubsearches

View solution in original post

0 Karma

FrankVl
Ultra Champion

eventtype=Charge AND index=”tutu” sourcetype="tete" “$IND$” is not using a subsearch, you're just adding extra search criteria.

Try: eventtype=Charge [ search index=”tutu” sourcetype="tete" “$IND$”| stats count by host | table host ]

See also: https://docs.splunk.com/Documentation/Splunk/latest/Search/Aboutsubsearches

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...