Splunk Search

Need help with a rex extraction

theouhuios
Motivator

Hello

I have a string like this

a SysStatsUtilizationDiskSpace=17.60% /, SysStatsUtilizationDiskSpace=11.25% /storedconfig, SysStatsUtilizationDiskSpace=7.15% /tmp,

I need to extract the value and also the filesystem. I am able to extract for the first one and as you can see the format is repetitive. How do I make this \s+\S+\=(?P<SysStatsUtilizationDiskSpace1>\S+)\%\s+(?P<filesystem1>\S+)\, repetitive so that I dont need to write it again and again.

Any help please

Thanks

Tags (1)
0 Karma

lguinn2
Legend

I think the best way would be to create field extractions in props.conf and transforms.conf

In props.conf

[yoursourcetypehere]
TRANSFORMS-e1=extract_fields_1, extract_fields_2

In transforms.conf

[extract_fields_1]
REGEX = SysStatsUtilizationDiskSpace\s*=\s*\S+%\s*(\S+)
FORMAT = filesystem::$1
MV_ADD = true

# you may already have the field extractions for SysStatsUtilizationDiskSpace, but if not, this will create it
[extract_fields_2]
REGEX = SysStatsUtilizationDiskSpace\s*=\s*(\S+)%
FORMAT = SysStatsUtilizationDiskSpace::$1
MV_ADD = true

This will give you multi-valued fields, rather than fields named filesystem1, filesystem2, etc. It also requires that you do nothing in your search command. To see if it works, run this search

sourcetype=yoursourcetype | table SysStatsUtilizationDiskSpace filesystem
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...