Splunk Search

Sub Search Help please

peterb
New Member

Hi All

Can anyone explain where my search is wrong?

sourcetype="access_log" [search sourcetype="GAMESAPI*" SID | rex field=_raw "\[SID\]\s=>\s(?<SID>[0-9]*)" | top SID limit=1 | table SID] | rex field=_raw "(?i)^(?P<IP>[^ ]*)(?= )"

I am trying to extract the most common SID within a GAMESAPI log and use that value to search the access_log for the corrosponding IP addresses.

The following search returns the top SID:

sourcetype="GAMESAPI*" SID | rex field=_raw "\[SID\]\s=>\s(?<SID>[0-9]*)" | top SID limit=1 | table SID

And this search will return the IP address from the access_log:

sourcetype="access_log" | rex field=_raw "(?i)^(?P<IP>[^ ]*)(?= )"

Seperately, the two searches work, as a subsearch, they fail. Any ideas?

Tags (1)
0 Karma

gkanapathy
Splunk Employee
Splunk Employee

Your subsearch, if it produces a list if SID, will be expanded to something like:

((SID="1234") OR (SID="2345") OR (SID="3456"))

which means your resulting search will be:

sourcetype="access_log" ((SID="1234") OR (SID="2345") OR (SID="3456"))

I have no idea whether SID is extracted from access_log, but I'm guessing it's not, which would be the problem.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...