Splunk Search

Find similar pattern in query- which one it used most?

indeed_2000
Motivator

Hi I have table like below, each word is parameter of a search query, now want to know which  of them mostly use?

SPL | table a b c d e f 

 

FYI: some these field are empty, some of them partially like each other. Need to find most use pattern on this table.

Any idea?

Thanks

Labels (3)
Tags (3)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

What do you mean by pattern?

Do you want the most common value of a, the most common value of b, etc.?

Or the most common value of a, b, c, d, e, f combined?

Or, given that some are empty some or all of the time, the most common non-empty fields regardless of value?

Or, something else?

0 Karma

indeed_2000
Motivator

1-Most common of all of them, and one of them.

2-some times empty but each of them have value on different time.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval all=mvappend(a, b, c, d, e, f)
| stats mode(a) as a mode(b) as b mode(c) as c mode(d) as d mode(e) as e mode(f) as f mode(all) as all
0 Karma

indeed_2000
Motivator

i’m look for something like exist on pattern tab, show percentage of each pattern.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

I think this has come up before and it is possibly even probably proprietary to Splunk - however, if you can decide what sort of pattern you are looking for, perhaps you can design your own search, may be along the lines I have outlined or similar.

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...