Splunk Search

Extracting unique IP addresses by Username

jginnetty
Explorer

Currently working on a IIS log file with standard fields. I’m looking to first determine the unique Usernames contained in the log and then list the unique IP addresses associated with each Username employed at login. “My Search String” determines the login event.

This gets me close:

index="main" " My Search String" | stats list(c_ip) by cs_username

This produces a list of the correct information except that the list of IP addresses is not unique and that is the problem I’m having trouble solving. Additionally it would be VERY helpful if there was a way to only display the rows if the number of unique IP addresses was greater than 1. The idea is to identify only the logins that have taken place from more than one IP address. I looked into the “WHERE” statement but it doesn’t seem to be designed for this.

Any help would be much appreciated.

Tags (1)
1 Solution

southeringtonp
Motivator

Instead of stats list, use stats values to get the distinct list:

index="main" " My Search String" | stats values(c_ip) by cs_username

To limit to cases where there is more than one distinct value:

index="main" " My Search String"
| stats dc(c_ip) as distinctCount values(c_ip) by cs_username
| where distinctCount>1

View solution in original post

southeringtonp
Motivator

Instead of stats list, use stats values to get the distinct list:

index="main" " My Search String" | stats values(c_ip) by cs_username

To limit to cases where there is more than one distinct value:

index="main" " My Search String"
| stats dc(c_ip) as distinctCount values(c_ip) by cs_username
| where distinctCount>1

jginnetty
Explorer

Very good, that certainly did the trick...

0 Karma

southeringtonp
Motivator

See inline edit above.

0 Karma

jginnetty
Explorer

Very good thanks! That solves problem number one. Is there any way to limit displaying the rows to circumstances where there are two or more IP addresses associated to one Username? This would make the difference between a list of about 10 events and 50 pages of information to page through.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Developer Program!

Hey Splunk community!  We are excited to announce that Splunk is launching the Splunk Developer Program in ...

Splunkbase Year in Review 2024

Reflecting on 2024, it’s clear that innovation and collaboration have defined the journey for Splunk ...

Developer Spotlight with Brett Adams

In our third Spotlight feature, we're excited to shine a light on Brett—a Splunk consultant, innovative ...