Splunk Search

Regex for multiple IP Addresses in Splunk

asplunk123
New Member

In the below log we have User Agent fallowed by two Ip addresses. So i want to extract below fields

UserAgent , IPAdd2, IPAdd2

My Regex : (getting error)

rex (?.[a-zA-Z0-9-/^%?;.\s\w&()=-]+) | rex "^(?i)(?P[^ ,]+)(,(?P[^ ,]+))?"

Log :

"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:32.0) Gecko/20100101 Firefox/28.0" "158.69.213.225, 23.217.200.191"

Tags (1)
0 Karma

woodcock
Esteemed Legend

This will create a mult-valued field:

... | rex max_match=0 "(?<IPAddress>\d+\.\d+\.\d+\.\d+)"

You can use a more specific RegEx if you like, but the more complicated it is, the slower it will be, too, and simpler ones are unlikely to have false positives.

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!

Best Practices: Splunk auto adjust pipeline queue

When you enable autoAdjustQueue in Splunk, maxSize should be understood as the queue size Splunk starts with ...

Laser Bananas and Edge Hubs: Exploring Operational Technology (OT) Data Through a ...

  OT is a different environment to traditional IT and can have interesting challenges when interfacing the ...

Event Series: Mastering AI Tokenomics and Splunk Agent Observability

Beyond the Black Box: Correlating AI Performance and Tokenomics with Splunk Agent Observability   As ...