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.

Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...