Splunk Search

How to add contributing fields to unique values?

girtsgr
Explorer

Hi, I seem to be stuck with something pretty trivial. I have events with users and corresponding hostnames, eg:

User Hostname
user1 hostA
user1 hostB
user2 hostA
user2 hostC
user3 hostD

 

I want to count unique user-hostname values and show the contributing hostnames for users that have used more that 1 hostname like this:

User Hostnames used
user1 hostA hostB
user2 hostA hostC

 

This seems to take care of the first part of the task:

 

 

| stats dc(Hostname) as uh by User
| search uh > 1

 

 

 

How can I add the contributing Hostnames?

Formatting is not so important - it may be one field with all the hostnames like in the example above, or multiple fields, or one field together with the User field.

 

Thank you.

 

 

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| stats values(hostname) as hostnames by User
| eval uh=mvcount(hostnames)
| where uh > 1

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| stats values(hostname) as hostnames by User
| eval uh=mvcount(hostnames)
| where uh > 1
0 Karma

girtsgr
Explorer

Thank you! 🙂

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...