Splunk Search

How to improve django template search performance

vgnulinux
New Member

Created a django app to display some transaction history detail in a tabular format.
But when the template is accessed from the UI it takes almost 20-25 minutes for displaying search query result. Need help in improving performance of the search query and Django template.

Here is saved search code for reference.

[top_zip_by_amount]
alert.digest_mode = True
alert.suppress = 0
alert.track = 0
cron_schedule = 1 * * * * *
enableSched = 1
search = index=transaction_history |
spath input=Item |
rename HistoryItem.a:TransactionDetails.a:StoreId AS StoreNumber, HistoryItem.a:TotalAmount AS Amount |
fields StoreNumber,Amount |
lookup store_location StoreNumber as StoreNumber OUTPUT PostalCode |
table PostalCode StoreNumber Amount|
stats Sum(Amount) as Total1 count(StoreNumber) as TransactionCount by PostalCode StoreNumber|
fields PostalCode,StoreNumber,TransactionCount, Total1|
stats count(StoreNumber) as StoreCount sum(Total1) as TotalAmount by PostalCode|
fields PostalCode,StoreCount,TotalAmount|
sort TotalAmount desc

Anyone who can guide me on this ?

Thanks!

0 Karma

DavidHourani
Super Champion

Hello,

Are you sure it's the django causing the delays on the page ?

Can you try running your search in a non-django environment ?

Or maybe split the search into many small parts and start adding them up until you get to the part that makes it all slow down at least that way you would isolate your problem and eventually figure out whats causing all that delay.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

First you should check the job inspector for one of those searches to verify if it's the search job being slow or the django-based page rendering slowly.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Great. Any other issues left?

0 Karma

vkalgath
New Member

thanks martin, your advice to optimize search using search inspector did help us to improve performance of our web page in Django

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...