Splunk Search

Split and display

priya0709
Path Finder

My requirement is to display just domain (eg Corp)

From below Computername

Computername - <host>. Corp. <Domain>. Com

0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

You can use either split or rex

| rex field=Computername "[^\.]*\.(?<Corp>[^\.]*)"

OR 

| eval Corp=mvindex(split(Computername,"."),1,1)

Hope this helps

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

It isn't clear if "Computername" is part of the field you are trying to extract from or the name of the field. If it is part of the field (assuming _raw)

| rex "Computername - \w+\.(?<Corp>[^\.]+)\.Com"

 If it is the field name

| rex field=Computername "^\w+\.(?<Corp>[^\.]+)\.Com"

This assume <host> is at the beginning of Computername. If not, just remove the ^ from the beginning

Both of these assume that there are only two dots in the computername 

0 Karma

priya0709
Path Finder

Hi

Thanks for your reply

Computername is from raw dat

But actual field is 'Hostdomain' under which I want to display 'corp' from computername

Computername format - -

<HOST>. Corp. <domain>. com

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

In that case

| rex field=Hostdomain "^[^\.]+\.(?<Corp>[^\.]+)"
0 Karma

bowesmana
SplunkTrust
SplunkTrust

You can use either split or rex

| rex field=Computername "[^\.]*\.(?<Corp>[^\.]*)"

OR 

| eval Corp=mvindex(split(Computername,"."),1,1)

Hope this helps

 

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!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...