Splunk Search

How do you build a list of unique items in a field?

Marinus
Communicator

I'd like to build up a list of unique user id's that call a service.
If I use eval to just concatenate the next user id, I'd end up with duplicates.

eval userids=userid+","+userid
Tags (2)
0 Karma
1 Solution

ziegfried
Influencer

You could use multivalue fields:

 ... | stats values(userid) as userids | eval userids=mvjoin(userids,",")

View solution in original post

0 Karma

ziegfried
Influencer

You could use multivalue fields:

 ... | stats values(userid) as userids | eval userids=mvjoin(userids,",")
0 Karma

Marinus
Communicator

I ended up using eventstats rather than stats, thanks Ziegfried!

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...