Splunk Search

need help with forming a regex command for extracting some fields

s0m073r
Engager

Hi,

Can someone please help in getting the field extracted:

"x-hello-abc":["101.2.10.1, 102.3.4.3, 12.3.45.5"]

Please help in getting a regex expression to extract this field

0 Karma

codebuilder
Influencer

Use erex...

https://docs.splunk.com/Documentation/Splunk/8.0.3/SearchReference/Erex#Examples

...| erex examples="x-hello-abc"

Then view the regex generated by Splunk via the job inspector.

----
An upvote would be appreciated and Accept Solution if it helps!
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @s0m073r,
let me understand: you want to extract the three IPs or only the first?
if all the values, try this regex

| rex "(?<x_hello_abc>\d+\.\d+\.\d+\.\d+)"

that you can test at https://regex101.com/r/m6WhUh/1
if you want only the first, use this regex

| rex "\"(?<x_hello_abc>\d+\.\d+\.\d+\.\d+)"

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

Ciao.
Giuseppe

0 Karma

s0m073r
Engager

I need to extract all the IP's which come under this field, i need to get field with x_hello_abc that contains all the ips

0 Karma

s0m073r
Engager

thanks for your quick response. i am getting the below error:
Error in 'rex' command: Encountered the following error while compiling the regex '(?\d+.\d+.\d+.\d+)': Regex: syntax error in subpattern name (missing terminator).

0 Karma

s0m073r
Engager

i tried with rex "x-hello-abc\":[\"(?[^\"]+)"

it worked fine for me

0 Karma

gcusello
SplunkTrust
SplunkTrust

Ok good!
but in this case, you take only the first IP, not the others.

Please, to share regexes use always the Code Sample button (the one with 101010) otherwise I cannot see your regexes.

Ciao.
Giuseppe

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @s0m073r,
where do you used the regex: in the rex command, in a field extraction or in a dashboard?

try at first in the search with the rex command (using the double quotes).

Ciao.
Giuseppe

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @s0m073r,
ok you can use the first.
Please use "_" instead "-" in the field name.

Ciao.
Giuseppe

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...