Splunk Search

How can I use rex to dedup and extract certain data from a field?

ameyapatil29
Explorer

Hello,

I am new to using rex and extract. I am trying to come up with a regex to extract certain data from a field only if that field exists.

Like in this query
[2018-08-28 22:40:32.999] INFO  [pid:27567] [request_id:xxxxxxxx] [host:xxxxxxx] [remote_ip:xxxxx] [session_id:xxxxxxxx] [auth_id:] method=GET path=/questions/2044288 format=html controller=questions action=show status=410 duration=130.55 view=118.49 db=1.78 params={"id"=>"2044288"}

I am trying to extract the id number from params field and export it as article_number field. Can somebody help me how do I remove duplicates and use rex with extract?

So far I came up with index="cto-lc-app-prdidx" status=410 path="" params="" | dedup path,params | rex field=params ""

Thanks,
-Ameya

0 Karma
1 Solution

horsefez
SplunkTrust
SplunkTrust

Hi @ameyapatil29,

try to use the following query to do it. I've tested it and it works.

yoursearch | rex field=params "params={\"id\"=\>\"(?<article_number>[^\"]+)\"" | dedup article_number

First you are extracting the article_number from each logfile. After that you are removing duplicated article_numbers.

View solution in original post

nawazns5038
Builder
rex field=_raw "\"id\"\=\>\"(?<article_number>\d+)\""
0 Karma

horsefez
SplunkTrust
SplunkTrust

Hi @ameyapatil29,

try to use the following query to do it. I've tested it and it works.

yoursearch | rex field=params "params={\"id\"=\>\"(?<article_number>[^\"]+)\"" | dedup article_number

First you are extracting the article_number from each logfile. After that you are removing duplicated article_numbers.

adonio
Ultra Champion

like that?
.... | rex field=params "\{"id"=>"(?<article_number>\d+)"
hope it helps

0 Karma
Get Updates on the Splunk Community!

Streamline Data Ingestion With Deployment Server Essentials

REGISTER NOW!Every day the list of sources Admins are responsible for gets bigger and bigger, often making the ...

Remediate Threats Faster and Simplify Investigations With Splunk Enterprise Security ...

REGISTER NOW!Join us for a Tech Talk around our latest release of Splunk Enterprise Security 7.2! We’ll walk ...

Introduction to Splunk AI

WATCH NOWHow are you using AI in Splunk? Whether you see AI as a threat or opportunity, AI is here to stay. ...