Splunk Search

How do you trim a value in a field with a proper format?

veerendra_modi
Loves-to-Learn

I have a field FQ with the value as "ServerName.domain.com"

I want to get only the server name in another field.

Please help.

Tags (1)
0 Karma

vnravikumar
Champion

Hi

Try this rex

|rex field=FQ "(?P<servername>^[^.]*)"

renjith_nair
Legend

@veerendra_modi

|eval ServerName=mvindex(split(FQ,"."),0)

OR

|rex field=FQ "(?<ServerName>[\w-]+)"

If you have any other characters in the servername , then you have to include that as well in the rex.

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...