Splunk Search

How to generate a search that

svemurilv
Path Finder

I am looking for Unique users on my Splunk search head cluster
like :

like compare the users change percentage with previous month.

earliest=-60d@d latest=@d index=_audit  NOT user=splunk-system-user NOT user=admin| timechart span=30d dc(user)

thanks advance.

0 Karma
1 Solution

DalJeanis
Legend

Here's one way...

earliest=-6mon@mon latest=@mon index=_audit 
NOT user=splunk-system-user NOT user=admin
| bin _time span=1mon 
| stats dc(user) as UserCount by _time
| streamstats current=f last(UserCount) as PrevCount
| eval PctIncrease= if(isnull(PrevCount),"100%", tostring(floor(100*(UserCount-PrevCount)/PrevCount))."%")

View solution in original post

DalJeanis
Legend

Here's one way...

earliest=-6mon@mon latest=@mon index=_audit 
NOT user=splunk-system-user NOT user=admin
| bin _time span=1mon 
| stats dc(user) as UserCount by _time
| streamstats current=f last(UserCount) as PrevCount
| eval PctIncrease= if(isnull(PrevCount),"100%", tostring(floor(100*(UserCount-PrevCount)/PrevCount))."%")
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...