Splunk Search

Windows EventLogs: 3 failed logins from 3 different users from same host

Fe-atSplunk
Explorer

Using Windows EventCodes I want to find 3 or more users failing to log in. So far my syntax is 

| stats values(user) as user count by host

which looks good. Now I only want to see > 2 users from the same host. | where count > 2 counts the total, not the different values in the "user" field. 

 

Labels (2)
0 Karma

Fe-atSplunk
Explorer

It was the dc I was missing, so thanks for your response!

0 Karma

PickleRick
SplunkTrust
SplunkTrust

If your search is indeed literarily as you wrote it:

| stats values(user) as user count by host

Then you're getting two different stats values per host - one is a multivalue single field containing all the users for this host, the second one is a sum of all events for this host.

That's probably not what you wanted.

You might list the values and count it afterwards:

| stats values(user) as users by host | eval usercount=mvcount(users)

But it's not very pretty

Or you might use dc(user)

| stats values(user) as users dc(user) as usercount by host
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Value Insights: Now Generally Available in the CMC

Organizations are under pressure to move faster, control cost, expand AI adoption, and prove value with more ...

What’s New in Splunk AI: Volume 02

Welcome to the second edition of “What’s New in Splunk AI” where we look at the latest and greatest updates, ...

Splunk App Dev Quarterly Roundup: AI, Agents, and Innovation!

Another quarter, another wave of innovation. From complex integrations to pushing the limits ...