Splunk Search

Hi team, i need to extract the locale field in BOLD , can you help me with it

Hemant1
Explorer

/en_sek/klarna

Labels (1)
0 Karma

paulbannister
Communicator

Hi There,

\/(?P<locale>[^\/]+)\/klarna

Or within the Splunk search itself:

 

|rex field= ##INSERT RELEVANT FIELDNAME## "\/(?P<locale>[^\/]+)\/klarna"

0 Karma

paulbannister
Communicator

Hi There,

If you mean via REGEX then try the following:

\.com\/(?P<locale>[^\/]+)\/


Or within the Splunk search itself:

 

|rex field=_raw "\.com\/(?P<locale>[^\/]+)\/"

 

 

EDIT:
Slightly improved regex to incorporate address such as ".co.uk":

 

((\.\w{2,3}\.\w{2,3})|\.\w{2,3})\/(?P<locale>[^\/]+)\/

or

|rex field=_raw "((\.\w{2,3}\.\w{2,3})|\.\w{2,3})\/(?P<locale>[^\/]+)\/"

0 Karma
Get Updates on the Splunk Community!

Splunk Enterprise Security 8.0.2 Availability: On cloud and On-premise!

A few months ago, we released Splunk Enterprise Security 8.0 for our cloud customers. Today, we are excited to ...

Logs to Metrics

Logs and Metrics Logs are generally unstructured text or structured events emitted by applications and written ...

Developer Spotlight with Paul Stout

Welcome to our very first developer spotlight release series where we'll feature some awesome Splunk ...