Dashboards & Visualizations

Need help with query

Mrig342
Contributor

Hi All,

I am trying to create a query for the below type of logs in a server:

log1:  Thu Apr 15 07:31:31 EDT 2021 73% /var

log2: Thu Apr 15 07:31:31 EDT 2021 46% /opt

log3: Thu Apr 15 07:31:31 EDT 2021 50% /apps

log4: Thu Apr 15 07:31:31 EDT 2021 1% /logs

log5: 1% /logs 50% /apps 46% /opt 73% /var

Note: log5 is the just the combined values of log1 to log4.

Here using the query "index=abc sourcetype=INFRA_FS | rex field=_raw "(?ms)\s(?<Disk_Usage>\d+)%" | rex field=_raw "(?ms)\%\s(?<File_System>\/\w+)" | search host=29xyz | table File_System,Disk_Usage", I am getting the below table:

File_System      Disk_Usage

/var                         73
/opt                         46
/apps                      50
/logs                       1
/logs                        50

Here, an extra log is coming up in the table from log5. I want only the first 4 logs to be considered and the the 5 log should be avoided/removed. 

Can anyone please help me to create a query to get the output in the desired way..?? You kind support will be highly appreciated.

Thank you.

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| regex _raw!="^\d+%"
| rex field=_raw "(?ms)\s(?<Disk_Usage>\d+)%"
| rex field=_raw "(?ms)\%\s(?<File_System>\/\w+)"

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| regex _raw!="^\d+%"
| rex field=_raw "(?ms)\s(?<Disk_Usage>\d+)%"
| rex field=_raw "(?ms)\%\s(?<File_System>\/\w+)"

Mrig342
Contributor

Thank you ITWhisperer. Your support is highly appreciated.

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...