Getting Data In

Find unique values on all search rows separated by comma

habrhi
Explorer

Hi all,

I need to count the unique values of each row i have in my search (maybe this sounds abstract to you), the data i have in my cells are separated by "," .
Here is an example:

ID               |             A                 |                B
1                 |        a,b,c                |                3                   ("a","b","c" are unique here)
2                 |            a,d               |               1                   ("a" has been already found, so the only unique value is "d")
3                  |          b,k,e            |               2                   ("b" has been already found, only unique values are "k" and "e")

I tried to run dedup and rex field , but cannot get the search right. could anyone help?
One more question , is it possible to duplicate the row but only in each line i find only one value (example):

ID               |             A                       |                A_mod
1               |             a,b,c                |                  a
1               |             a,b,c                |                  b
1               |             a,b,c                |                  c
----------------------------------------
2               |             a,d                    |                  a
2               |             a,d                    |                  d
-----------------------------------------
3               |             b,k,e                 |                  b
3               |             b,k,e                 |                  k
3               |             b,k,e                 |                  e

Sorry if i posted two questions, i am just asking about the possibility and how to achieve it.
I thought of this exemple because it might get easier by then to run dedup

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Second part is reasonably simple

| eval A_mod=split(A,",")
| mvexpand A_mod

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

 

| eval A_mod=split(A,",")
| mvexpand A_mod
| dedup A_mod
| stats values(A) as A, count as B by id

 

Full solution

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Second part is reasonably simple

| eval A_mod=split(A,",")
| mvexpand A_mod
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 ...