Splunk Search

how to split string in splunk

Khushboo
Explorer

Hi @all,

 

i have following string which i want to break into there fields: service_name, host and port_id

metics-ha-5924590-011.aba.corp.tyos.com:2002

service_name = metics

host = ha-5924590-011.aba.corp.tyos.com

port = 2002
anyone please help me, how can i do it in splunk query.

Thanks !!

Labels (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @Khushboo,

you have to define a rule to extract fields:

if you cadn define that:

  • from the beginning to the first "-" it's the "service_name",
  • from the service_name to ":" it's the host,
  • after there's the port;

this regex can work.

In other words if you can define a rule, you can use a regex otherwise you cannot!

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @Khushboo,

Please, try this regex:

| rex "(?<service_name>[^-]+)-(?<host>[^:]+):(?<port>\d+)"

tha you can test at https://regex101.com/r/wkUHCx/1

Ciao.

Giuseppe

Khushboo
Explorer

Hi @gcusello ,

Thanks for your reply.
In my case all the variables like service_name, host and port are dynamic. so i cant hard-coded that.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Khushboo,

you have to define a rule to extract fields:

if you cadn define that:

  • from the beginning to the first "-" it's the "service_name",
  • from the service_name to ":" it's the host,
  • after there's the port;

this regex can work.

In other words if you can define a rule, you can use a regex otherwise you cannot!

Ciao.

Giuseppe

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...