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!

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...

Splunk Observability Cloud's AI Assistant in Action Series: Explaining Metrics and ...

This is the fourth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how ...

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...