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!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...