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.

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...