Splunk Search

Extract field from a new line

ToniHuynh
Explorer

Hi all,

I would like to extract the IP of the client: from the below Message.

Message=Internal event: A client issued a search operation with the following options.

Client:

172.25.1.250:6247

Starting node: DC=abc,DC=contoso,DC=com,DC=au

Filter: ( & ( ! (uSNChanged=*) ) ( & ( | (mail=*) (proxyAddresses=*) ) ( | (objectClass=contact) (objectClass=publicFolder) (objectClass=group) (objectClass=person) (objectClass=organizationalPerson) (objectClass=user) (FALSE) ) ) )

Search scope:

subtree

Attribute selection:

sAMAccountName,mail,proxyAddresses,objectClass,uSNChanged

I can make it works on regex101 but splunk does not show anything.

| rex field=Message max_match=0 "Client:(?<Client>\n.*)"

 

 

 

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

See the following - the trick is to use (?m) to span multiple lines

| makeresults
| eval Message="Internal event: A client issued a search operation with the following options.

Client:

172.25.1.250:6247

Starting node: DC=abc,DC=contoso,DC=com,DC=au

Filter: ( & ( ! (uSNChanged=*) ) ( & ( | (mail=*) (proxyAddresses=*) ) ( | (objectClass=contact) (objectClass=publicFolder) (objectClass=group) (objectClass=person) (objectClass=organizationalPerson) (objectClass=user) (FALSE) ) ) )

Search scope:

subtree

Attribute selection:

sAMAccountName,mail,proxyAddresses,objectClass,uSNChanged"
| rex field=Message max_match=0 "(?m)Client:[^\d]+(?<Client>\d+\.\d+\.\d+\.\d+)"

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

See the following - the trick is to use (?m) to span multiple lines

| makeresults
| eval Message="Internal event: A client issued a search operation with the following options.

Client:

172.25.1.250:6247

Starting node: DC=abc,DC=contoso,DC=com,DC=au

Filter: ( & ( ! (uSNChanged=*) ) ( & ( | (mail=*) (proxyAddresses=*) ) ( | (objectClass=contact) (objectClass=publicFolder) (objectClass=group) (objectClass=person) (objectClass=organizationalPerson) (objectClass=user) (FALSE) ) ) )

Search scope:

subtree

Attribute selection:

sAMAccountName,mail,proxyAddresses,objectClass,uSNChanged"
| rex field=Message max_match=0 "(?m)Client:[^\d]+(?<Client>\d+\.\d+\.\d+\.\d+)"
0 Karma

ToniHuynh
Explorer

Thanks so much. 

 

0 Karma
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 ...