Splunk Search

Field extraction for multiple types of values

srinivasgowda
Explorer

Hello all,

I am trying to extract the data from the field evtComponent from the below event, and this has a multiple types of data that is coming in as below.

1) ZENOSS-MIB::evtComponent = STRING: "HostSystem_host-1240" ZENOSS-MIB::evtClass = STRING: "/Status/Ping"

2) ZENOSS-MIB::evtComponent = STRING: "\"London\"" ZENOSS-MIB::evtClass = STRING:

 

The highlighted fields needs to be extracted, however when I use the below extraction this only satisfies the correct extraction on example 1 but fails to just extract the field from example 2. Can you please suggest.

Below is the extraction that I am using.

ZENOSS-MIB::evtComponent = STRING: \"(?<component>.*)\"\s+ZENOSS-MIB::evtClass\s

 

Thank you.

Labels (2)
0 Karma

srinivasgowda
Explorer

This worked. Thank you @gcusello 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @srinivasgowda,

you should try to use two regexes:

the first

| rex "evtComponent\s+\=\s+STRING:\s+\"(?<evtComponent>[^\"]+)\"\s+"

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

the second

| rex "evtComponent\s+\=\s+STRING:\s+\"\\\"(?<evtComponent>[^\\]+)"

that you can test at https://regex101.com/r/Ip8Vj2/2

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...