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!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...