Splunk Search

how to match value in events using Rex

james_n
Path Finder

Hi experts,

please help me with regular expression to match the value in each event at search time as shown below

:{\"buaid\":{\"business\":[\"12345\"],\"exclude*

required output: bss_value=12345

thanks in advance.

Tags (2)
0 Karma

to4kawa
Ultra Champion
|rex "(?<bss_value>\d{5})"

This is enough.

0 Karma

jpolvino
Builder

This might get you close, with a run anywhere example:

| makeresults | eval _raw=":{\\\"buaid\\\":{\\\"business\\\":[\\\"12345\\\"],\\\"exclude*"
| rex ":{\\\\\"buaid\\\\\":{\\\\\"business\\\\\":\[\\\\\"(?<bss_value>[^\\\]+)\\\\\"\],"

It sets up a _raw field, and then extracts from it. The last line should do it for you.

james_n
Path Finder

Hi @jpolvino , thanks for the answer. its working fine. but if i have multiple values with , separated than its not working .Please help on this.

Ex: :{\"buaid\":{\"business\":[\"12345\",\"6789\"]

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Try

business\\":\[\\"(?<bss_value>[^\\]+)\\
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...