Splunk Search

How can I improve my active directory data search so that it does not take a long time to load?

a212830
Champion

Hi,

I have a search that is taking waaaaaaaaayyyyyyyyy too long and am looking for idea on how to improve it, be it tstats/datamodels/fields....

Here's my search (active directory data)

index=AD | regex host=(?i)\w+ads$ | regex EventCode="^462([4,5])|4634|4648|4661|4696|4723|476([1,8,9])|477([0,1,2,6])|563([2.3])|5140$$" | stats count

I stopped it when it had been running for 710 seconds, and didn't appear to be even 50% complete.

Thoughts?

0 Karma

sloshburch
Splunk Employee
Splunk Employee

Add sourcetypes or sources that are relevant to ignore the other data. Add strings that must exist, such as ads and EventCode=* or even ( EventCode>4000 EventCode<6000 ). The more you can reduce the payload early, the better it will perform.

Use the Job Inspector to see where time is being spent. Perhaps there's a field extraction being performed that you don't need.

Is this running in fast mode?

You might even try (not sure if it will help) doing the stats first to reduce the result set:

index=AD source=<blah> sourectype=<blahst> ads ( EventCode>4000 EventCode<6000 )
 | stats count by host, EventCode
 | regex host=(?i)\w+ads$
 | regex EventCode="^462([4,5])|4634|4648|4661|4696|4723|476([1,8,9])|477([0,1,2,6])|563([2.3])|5140$$"
 | stats sum(count) AS count

Good page for some of these ideas: http://docs.splunk.com/Documentation/Splunk/latest/Search/Writebettersearches

0 Karma

somesoni2
Revered Legend

Give this a try

index=AD host=*ads [| gentimes start=-1 | eval EventCode="4624 4625 4634 4648 4661 4696 4723 4761 4768 4769 4770 4771 4772 4776 5632 5633 5140" | table EventCode | makemv EventCode | mvexpand EventCode ] | stats count
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...