Splunk Search

Extract certain rows of column with data starting on certain keywords

gemrose
Explorer

I am looking for a solution to extract rows containing certain keywords from column "X".  and the remaining data will add to "Total". For example any keyword with SI or SB will be added to count field "Log" and the other entries excluding empty cell will be added to count field "Total".

SNOX

1

400
2SI-SCRIPT-ERROR
3(SI-BPR-01)
4SB-Timeout
5SB-OrderFound
6(SB-BPR-02)--(SB-EXL-001)
7201
8SI-RAS-200
9<empty>

 

Labels (5)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

Something like

| where match(X, "\b(SI|SB)\b")
| stats sum(SNO) as SNO_total

Here is a full emulation

| makeresults format=csv data="SNO,	X
1,400
2,	SI-SCRIPT-ERROR
3,	(SI-BPR-01)
4,	SB-Timeout
5,	SB-OrderFound
6,	(SB-BPR-02)--(SB-EXL-001)
7,	201
8,	SI-RAS-200
9,"
``` data emulation above ```
| where match(X, "\b(SI|SB)\b")
| stats sum(SNO) as SNO_total

Result is

SNO_total
28

View solution in original post

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Something like

| where match(X, "\b(SI|SB)\b")
| stats sum(SNO) as SNO_total

Here is a full emulation

| makeresults format=csv data="SNO,	X
1,400
2,	SI-SCRIPT-ERROR
3,	(SI-BPR-01)
4,	SB-Timeout
5,	SB-OrderFound
6,	(SB-BPR-02)--(SB-EXL-001)
7,	201
8,	SI-RAS-200
9,"
``` data emulation above ```
| where match(X, "\b(SI|SB)\b")
| stats sum(SNO) as SNO_total

Result is

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