Splunk Search

Extracting Account Name:

wkbevill
Engager

Oct 28 20:08:57 XXX.XXX.com Microsoft-Windows-Security-Auditing[4]: EventID: 4663 An attempt was made to access an object. Subject: Security ID: XXX Account Name: John Account Domain: XXX 

 

My question is how do I extract the "Account Name: user" from this? I tried creating a new field extract with the space delimiter but if I selected John above, it wouldn't pull the account name from the rest of the log entries.

Thanks in advance!

Labels (1)
0 Karma
1 Solution

PickleRick
SplunkTrust
SplunkTrust

Well, delmited fields extractiona work well with... delimited fields. When you have very strict format of your data (like csv).

If you want to extracts parts of a "sentence", you need regex-based extraction.

You need to look for a repeatable part of event that you can "hook" into to find your needed value. In your case it will probably be the constant string "Account Name:" after which the actual username is provided. So you get (assuming that usernames don't contain spaces and symbols)

Account\sName:\s(?<username>\w+)

View solution in original post

0 Karma

PickleRick
SplunkTrust
SplunkTrust

Well, delmited fields extractiona work well with... delimited fields. When you have very strict format of your data (like csv).

If you want to extracts parts of a "sentence", you need regex-based extraction.

You need to look for a repeatable part of event that you can "hook" into to find your needed value. In your case it will probably be the constant string "Account Name:" after which the actual username is provided. So you get (assuming that usernames don't contain spaces and symbols)

Account\sName:\s(?<username>\w+)
0 Karma

nmohammed
Builder

Try this - 

 

"Account\sName:\s(?P<account_name>.+)\sAccount Domain"
0 Karma
Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...