Splunk Search

Extract in Props.conf

pfabrizi
Path Finder

I am trying to extract a field from cisco:asa events in my props.conf.
Here is the event:

Jan 23 11:04:57 taaaaaaa %ASA-6-717022: Certificate was successfully validated. serial number: 21EB548E00000000994A, subject name:  cn=XXX1G,ou=CL,ou=LOB,dc=xxx,dc=xxxxx,dc=net.

here is my extract:

EXTRACT-serial_number = ^.*Certificate was successfully validated. serial number:.*\s([0-9A-Z]+)

parses fine in regex101

is this an acceptable regex?

I only want it for these events.

Tags (1)
0 Karma
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi pfabrizi,

try this regex:

 Certificate was successfully validated\. serial number:\s+([0-9A-Z]+)

You missed to escape the .. If it is still not working, check if there is no typo in the assigned sourcetype, source or hostname for the props stanza.

Hope this helps ...

cheers, MuS

View solution in original post

0 Karma

MuS
SplunkTrust
SplunkTrust

Hi pfabrizi,

try this regex:

 Certificate was successfully validated\. serial number:\s+([0-9A-Z]+)

You missed to escape the .. If it is still not working, check if there is no typo in the assigned sourcetype, source or hostname for the props stanza.

Hope this helps ...

cheers, MuS

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...