Splunk Search

Combining fields

gagareg
Explorer

How to combine three fields in one field and display it as table? I need one field called emails consisting of from, to and user fields

alt text

alt text

Tags (4)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @gagareg,
in each event do you have only one value (to or from or user) or could you have in the same event more fields?

If you have only one field for event, you can use coalesce function:

| eval email=coalesce(to,from,user)

If instewad you surely have all the three fields in each event, you can use a solution like the one of @harsmarvania57

| eval email=to."--".from."--".user

if you could have more fields in the same event but you're not sure that there are always all the three fields, you have to add a value to the three fields when there's no value before the eval row:

| eval to=fillnull(to,"-"), from=fillnull(from,"-"), user=fillnull(user,"-")
| eval email=to."--".from."--".user

otherwise the eval command doesn't run.

Ciao.
Giuseppe

0 Karma

harsmarvania57
Ultra Champion

HI,

Try below query

<your base search> | eval new_field = field_1 . "--" . field_2 . "--" . field_3
0 Karma

gagareg
Explorer

Unfortunately, it does not work.

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!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...