Splunk Search

regular expression ( Alert)

Michael_Schyma1
Contributor

I want to create an alert everytime that /p01 (and the rest of the file name which will vary) goes over 80%. There are different path names inside the file, but this is what im trying to extract: (Werid Spacing)

This is the rex that i have so far:

[0-9][0-9]%(?<cname>./p0\S+)




                      14G  9.6G  3.6G  73% /p01

/dev/mapper/data-mqmlv

                  4.0G   46M  3.7G   2% /p01/app/mqm

/dev/mapper/data-wilylv

                  5.0G  1.1G  3.7G  22% /p01/app/wily

/dev/dasd1 23G 6.1G 15G 29% /p01/app/was/appserver/70

Tags (1)
0 Karma

jonuwz
Influencer

nice to see some some WAS and MQ action going on : )

0 Karma

jonuwz
Influencer
(?<disk_full_perc>[0-9]{1,3})%\s+(?=/p01)(?<mount_point>.*$)

(?<disk_full_perc>[0-9]{1,3})%

Look for 1-3digits follwoed by a % - assign to disk_full_perc

\s+

allow some whitespace

(?=/p01)

assert the next part of the string is /p01 (without the regex actually moving ahead)

(?<mount_point>.*$)

stick from /p01 to the end of the line in mount_point

Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...