Splunk Search

regex help

mariof
New Member

Hi,
I'm new to Splunk so hope:
1) I'm not asking a stupid question
2) someone can help

Anyway, I want to extract a hostname and user name from a "source" at search time.
I know I need to "| rex field=source" but can't figure out the syntax as yet.

the source I have is in the following format:
/export/Data/History/servername_user

Kind Regards

Mario

Tags (2)
0 Karma

mikelanghorst
Motivator

I'd probably use:
rex field=source "(?i)\/export\/data\/history\/(?P[^_]+)_(?\w+)"

Splitting out both host and user

mariof
New Member

Thank you both for your help (so far).
I was hoping to use the hostname and user in a table, would that be possible considering that these variables are not permanent?

0 Karma

MHibbin
Influencer

rex field=source "(?i)\/export\/data\/history\/(?P<hostName>\w+)\_user"
I believe should do it..

You can also use the IFX (Interactive Field Extractor) to help with you extractions/regex.

http://docs.splunk.com/Documentation/Splunk/5.0/Knowledge/ExtractfieldsinteractivelywithIFX

Note, that rex will not make a permanent field, only one that exists in the context of the present search string.

This reference is pretty good for regex

http://www.regular-expressions.info/reference.html

Regards,

Matt

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