Splunk Search

Regex to extract a word after word and comma

dtccsundar
Path Finder

i have 2 requirements 

1) From different events in need to extract the word after Interface  and Comma. After Interface there will be a space .Field name can be Interface

2) Need to extract a new field with name Activity with values either Up or Down .I have marked in bold in the events .

Ex- 

1) Mar 5 05:45:43 ie-dub-corp-sw1 Eastern: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet2/0/19, changed state to down

2) Mar 5 05:46:50 omenmnlswfl02 EST: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet2/3, changed state to up

Please help me with 2 regex .

 

 

Labels (3)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @dtccsundar,

if you want only one regex, you can use

| rex "Interface\s+(?<interface>[^,]+), changed state to (?<state>\w+)"

if you prefer two regexes, you can use:

| rex "Interface\s+(?<interface>[^,]+)"
| rex ""changed state to (?<state>\w+)"

you can test the regx at https://regex101.com/r/WpmBG3/1

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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