Splunk Search

How to generate a search to find the number of created accounts?

wvalente
Explorer

Hi,

I'm trying to run a search that alerts me when 40 accounts is created within 1 minute. I'm talking about linux users.

I've tried this search:

index=XXX process=useradd | stats count by user earliest:-1m@m | where count > 40

But I don't know it's correct.

Help!

Tks.

0 Karma

sbbadri
Motivator

try this

index=xxx process=useradd earliest=-1m@m | stats count by user | where count>=40

0 Karma

somesoni2
Revered Legend

Try like this (the timerange identifier earliest should be in base search)

 index=XXX process=useradd  earliest=-1m@m latest=@m | stats dc(user) as user_created | where user_created > 40
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...