Splunk Search

How do I extract the status from authentication logs into an action field?

ysifusuf
Engager

Hello!
Please let me know how can I extract the status of the authentication from the following logs into an action field.

CRON: pam_unix(cron:session): session opened for user root by (uid=0)
CRON: pam_unix(cron:session): session closed for user root

thanks!

0 Karma
1 Solution

DavidHourani
Super Champion

Hi @ysifusuf,

You can get that extracted directly within your search as follows :

..... | rex field=_raw "([^:]+\:)+\ssession\s(?<action>\w+)\s"

Or if you add it as an extracted field to have it automatically on your next search as shown here for GUI:
https://docs.splunk.com/Documentation/Splunk/7.2.6/Knowledge/Managesearch-timefieldextractions#Revie...
Or by editing props.conf :

[your_authentication_sourcetype]
EXTRACT-action = ([^:]+\:)+\ssession\s(?<action>\w+)\s

Cheers,
David

View solution in original post

preactivity
Path Finder

You can also do like this,

| rex field=_raw "^(?:[^ \n]* ){3}(?P\w+)"

0 Karma

DavidHourani
Super Champion

Hi @ysifusuf,

You can get that extracted directly within your search as follows :

..... | rex field=_raw "([^:]+\:)+\ssession\s(?<action>\w+)\s"

Or if you add it as an extracted field to have it automatically on your next search as shown here for GUI:
https://docs.splunk.com/Documentation/Splunk/7.2.6/Knowledge/Managesearch-timefieldextractions#Revie...
Or by editing props.conf :

[your_authentication_sourcetype]
EXTRACT-action = ([^:]+\:)+\ssession\s(?<action>\w+)\s

Cheers,
David

ysifusuf
Engager

Hey man,
it works, thanks
@DavidHourani

0 Karma

DavidHourani
Super Champion

you're welcome !

0 Karma

richgalloway
SplunkTrust
SplunkTrust

There are a number of ways to do that, depending on your specific needs. Here's one:

 index=foo | rex "session (?<action>\S+) for user (?<user>\S+)" | ...
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...