Splunk Search

How to extract a number of a string and check the count?

zoe
Path Finder

Hi, 

I have data like A-001, A-002, A-003.....

I would like to know how to extract the numbers from these strings: 001, 002, 003....so that I can generate an alert: every three batche (001, 004, 007) should be check.

Can someone help me with that? Thanks1

 

Regards,

Tong 

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @zoe,

if the format is always the same, you can use a regex like this:

index=your_index 
| rex "A-(?<number>\d+)"
| stats count BY number

you can test the regex at https://regex101.com/r/H1gAHF/1

Ciao.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @zoe,

if the format is always the same, you can use a regex like this:

index=your_index 
| rex "A-(?<number>\d+)"
| stats count BY number

you can test the regex at https://regex101.com/r/H1gAHF/1

Ciao.

Giuseppe

0 Karma

zoe
Path Finder

Hi @gcusello ,

 

great! Thanks for the Tipp. It is exactly what I want. Many thanks!

 

Regards,

Tong

0 Karma

gcusello
SplunkTrust
SplunkTrust

hi @zoe,

good for you, see next time!

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Introduction to Splunk AI

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

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Maximizing the Value of Splunk ES 8.x

Splunk Enterprise Security (ES) continues to be a leader in the Gartner Magic Quadrant, reflecting its pivotal ...