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

 

Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...