Splunk Search

What am I doing wrong in this regex?

hagjos43
Contributor

This works if you | rex "EXTRACT-json_data=.+\"(?<json_data>{.+})\""

But when I try to move it over to props.conf as:

[mysourcetype]
EXTRACT-json_data=.+"(?<json_data>{.+})

It doesn't work.

Any ideas on what I'm doing wrong?

Thanks!
-Joe

Tags (3)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi hagjos43,
in your props.conf probably the error is that a backslash is missing before first brackets.
Anyway, try this to have all the chars between braces (without braces)

.+\"\{\"(?<json_data>[^\}]*)\"\}\"

Bye.
Giuseppe

0 Karma

DalJeanis
Legend

Probably closer to this...

[mysourcetype]
REGEX  = EXTRACT-json_data=.+"(?<json_data>{.+})"
0 Karma

kyaparla
Path Finder

you may have to escape your double quotes in props.conf

wrangler2x
Motivator

Take this basic search and replace the event field with experimental data to see what breaks your regex

| makeresults
| eval event=",\"{whatever}\""
| rex field=event ",\"{(?<jason_data>[^}]+)"
| table jason_data event
0 Karma

MuS
Legend

Can you please post some sample events?

0 Karma

hagjos43
Contributor

12bca842-2f11-494c-b016-7668beda8bfd-1633657","2017-10-09T21:32:15.164Z","access","12bca842-2f11-494c-b016-7668beda8bfd-1633650","Scheduled activeSynchroniser_systemExternalOu-Mon Oct 09 17:32:15 EDT 2017",,,,,,"CREST","ScheduledTask","{""taskName"":""scheduler-service-group.activeSync_systemExternalOu""}",,,,,,,,"SUCCESSFUL",,,"12","MILLISECONDS",

0 Karma

MuS
Legend

so this regex .+\"(?<json_data>{.+})\" matches everything in the { }

try this props.conf setting as kyaparla suggests and also move the { } out of the capturing group:

 EXTRACT-json_data=.+\"{(?<json_data>.+)}\"
0 Karma

hagjos43
Contributor

Appreciate your help so far but this still didn't work. Does it matter that this is a csv that it is ingesting? I would think field extractions didn't care what extension a file has.

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...