Splunk Enterprise

Field extraction does not work when the second field is empty

asharmaeqfx
Path Finder

Hi Splunkers,

 

I have set up a field extractor and it does not work when the log entry is empty. For e.g

Field extraction syntax is

---------------------------

(?:[^=\n]*=){9}"(?P<frontEndLatency>\d+)"\s+\w+="(?P<backEndLatency>\d+)

--------------------------

Log messages

---------------------

blah blah contentType="text/xml" frontEndLatency="587" backEndLatency="391" messages= blah

---------------

It extracts correctly  frontEndLatency="587" and backEndLatency="391"

If somehow in the log file one of the field is empty, it does not extracts properly

Log Messages

-------------

 blah blah contentType="text/xml" frontEndLatency="1795" backEndLatency="" messages= blah blah

--------------

How to set this up or handle it via field extraction? Your help is much appreciated.

Thanks,

 

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Change this part of the regex

(?P<backEndLatency>\d+)

to

(?P<backEndLatency>\d*)

 The "+" means at least 1 which doesn't match your failing example, "*" means any number including zero which does match your example

View solution in original post

0 Karma

asharmaeqfx
Path Finder

Thanks ITWhisperer

It is working fine. I applied it last tuesday and it works like a charm.

 

Appreciate it.

Thanks,
Amit

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Change this part of the regex

(?P<backEndLatency>\d+)

to

(?P<backEndLatency>\d*)

 The "+" means at least 1 which doesn't match your failing example, "*" means any number including zero which does match your example

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 ...