Splunk Search

Extract an information from a field

mikedavem
New Member

Hi all,

I'm working on an extraction of information into a SQL Server log.
I've a field Message that looks like :

LogName=Security
SourceName=MSSQLSERVER$AUDIT
EventType=0
...
statement:Login failed for user 'toto'. Reason : Password did not match that for the login provided. [CLIENT: clientname]
...

I would like to extract the part into the bracket [CLIENT: XXXX]
How can I do that ?
Sorry I'm a new user of splunk.

Regards

David

Tags (1)
0 Karma
1 Solution

rechteklebe
Path Finder

Hi,

there are two ways:

  1. Use the "Extract Fields" function in the dropdown on the left side (blue arrow).
    In the values type the name of your client, and you should get the pattern.
    In your search you can use the pattern with the rex command --> rex "PATTERN"

  2. Try with --> rex "(?i)provided.\s[(?P[^]]+)"

View solution in original post

0 Karma

mikedavem
New Member

Thanks rechteklebe, it's work.

I also learn how to generate a pattern with our instruction 🙂

Regards

0 Karma

rechteklebe
Path Finder

Hi,

there are two ways:

  1. Use the "Extract Fields" function in the dropdown on the left side (blue arrow).
    In the values type the name of your client, and you should get the pattern.
    In your search you can use the pattern with the rex command --> rex "PATTERN"

  2. Try with --> rex "(?i)provided.\s[(?P[^]]+)"

0 Karma

rechteklebe
Path Finder

Sorry I was wrong:
this should be the correct rex command:

rex "(?i)CLIENT:(?P[^]]+)"

0 Karma
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 ...