Splunk Search

How to combine 2 fields into 1 in Splunk in an alternate approach?

pavanae
Builder

I have a Splunk search outputs result as follows. 

Detailslink

Product Details :

Product 1:- ABC123

Product 2:- DEF456

abcd_website

 

Now how do I combine both the fields into 1 as follows 

Detailslink

Product Details :

Product 1:- ABC123

link:- abcd_website

Product 2:- DEF456

abcd_website

The below eval condition giving me the result as follows 

 

 

| eval Details = Details + link

 

 

Detailslink

Product Details :

Product 1:- ABC123

Product 2:- DEF456

link:- abcd_website

abcd_website

 

I do not want to add that link at the end. but wanted that somewhere in the middle after a specific field. Also, I do not want to touch or edit the Details field although thats an easy way but it comes from a macro and which used by many searches. I am looking for an alternate way, so that I can update the Details for a specific search?

Labels (4)
Tags (2)
0 Karma

rut
Path Finder

Hi @pavanae,

Maybe the following will work for you. It uses rex/sed to locate the placement location, and inserts a placeholder (#LINK#, but you can replace this with what you deem "safe" in this context). After that an eval command replaces that placeholder with the needed value:

| rex field=Details mode=sed "s/(Product\s1:-\s[^\n]+)(\n)/\1\n#LINK#\n/"
| eval Details=replace(Details, "#LINK#", link)

I'm not sure if you can do this in an single rex line (maybe something like $link or ${link}), I can't find anything about it in the documentation.

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