Splunk Search

How to rex field to a field

racans
New Member

I have a rex as such:

| rex field=host "(?<sydney>10-92-3[2-4])" | rex field=host "(?<melbourne>10-92-11[0-2])"

which returns 2 fields. sydney and melbourne

Now I want to have the fields returned to a field city. How can i do this?

Tags (1)
0 Karma
1 Solution

HiroshiSatoh
Champion

If you use REX

| makeresults |eval host ="10-92-110"|eval city=host 
| rex field=city mode=sed "s/10-92-3[2-4]/sydney/g" 
| rex field=city mode=sed "s/10-92-11[0-2]/melbourne/g"

In my case I use LOOKUP to convert.

View solution in original post

HiroshiSatoh
Champion

If you use REX

| makeresults |eval host ="10-92-110"|eval city=host 
| rex field=city mode=sed "s/10-92-3[2-4]/sydney/g" 
| rex field=city mode=sed "s/10-92-11[0-2]/melbourne/g"

In my case I use LOOKUP to convert.

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...