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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...