Refine your search:

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.

asked 05 Nov '10, 15:46

jginnetty's gravatar image

jginnetty
32
accept rate: 0%


One Answer:

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
link

answered 05 Nov '10, 16:22

southeringtonp's gravatar image

southeringtonp ♦
4.9k2524
accept rate: 35%

edited 05 Nov '10, 17:05

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.

(05 Nov '10, 16:46) jginnetty

See inline edit above.

(05 Nov '10, 17:05) southeringtonp ♦

Very good, that certainly did the trick...

(05 Nov '10, 17:52) jginnetty
Post your answer
toggle preview

Follow this question

Log In to enable email subscriptions

RSS:

Answers

Answers + Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×44

Asked: 05 Nov '10, 15:46

Seen: 1,295 times

Last updated: 05 Nov '10, 17:05

Copyright © 2005-2012 Splunk Inc. All rights reserved.