Getting Data In

regex

pavanbmishra
Path Finder

what should the best regex to catch it up these 3 diff fields 

 

-ec-1
-ec-01
-ec01

Labels (1)
Tags (1)
0 Karma

pavanbmishra
Path Finder

We have host field ending with these strings ( -ec-1/-ec-01/-ec01)have to be captured through regex.

abc-ec-1
xyz-ec-01
pqr-ec01

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @pavanbmishra,

please try this

\w+-(?<your_field>.*)

that you can test at https://regex101.com/r/ujVKV6/1

Ciao.

Giuseppe

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @pavanbmishra,

could you share a sample of your logs to be more sure?

Anyway, if these are the strings to extract as field, you could use:

| rex "(?<your-field>ex[^ ]+)"

But, please share your logs.

ciao.

Giuseppe

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...