Splunk Search

how to search a number which is 13 digits or more using regex in splunk?

pavanae
Builder

Hi how can i find out a number which is 13 digits or more in a splunk search on index="xyz". Please let me know

Tags (4)
0 Karma
1 Solution

aljohnson_splun
Splunk Employee
Splunk Employee
index=foo sourcetype=bar | rex "(?<long_number>\d{13,})"

View solution in original post

woodcock
Esteemed Legend

Like this:

index=xyz | regex _raw = "\d{13,}"

aljohnson_splun
Splunk Employee
Splunk Employee
index=foo sourcetype=bar | rex "(?<long_number>\d{13,})"

landen99
Motivator

You might add max_match=0 to the rex command

0 Karma

aljohnson_splun
Splunk Employee
Splunk Employee

@Landen998 Why

0 Karma

landen99
Motivator

The event may have more than one series of 13 digit numbers. The 13 digit number of interest may not be the first one it finds in the event. The event may not have separated correctly. Any other reason.

0 Karma

pavanae
Builder

So what could be the final search query to display those digits?

0 Karma

landen99
Motivator

Either

index=foo sourcetype=bar | rex max_match=0 "(?<long_number>\d{13,})"

OR

index=xyz | regex _raw = "\d{13,}"

from Woodcock's answer below. All depends on what you want to do. Extract the number (above) or filter events for the number but not extract it (below). .. or you could do both:

index=foo sourcetype=bar | rex max_match=0 "(?<long_number>\d{13,})" | search long_number=*
0 Karma

pavanae
Builder

Thanks it worked

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

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

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...