Splunk Search

identify which user is doing longest searches

amirarsalan
Explorer

Hi Everyone!

I need some help to identify which user are running longest/bad searches. Sometimes splunk goes very slow and it indicate that someone running searches/jobs that is not god and I want to identify who it is and see the search string for that user.

Someone that can help me with a query

Tags (1)
0 Karma

asneed_eu
Path Finder

The _audit index should have this information.

This would show a list of searches sorted by execution time by user:

index=_audit action="search" search=* NOT user="splunk-system-user" exec_time=* | table search total_run_time user | sort - total_run_time

You could also look at which users have the longest running searches on average:

index=_audit action="search" search=* NOT user="splunk-system-user" exec_time=* | stats avg(total_run_time) by user

amirarsalan
Explorer

Hi @asneed_eu

Thanks for your replay. It seems to works but i can only see my username. Can't see other users.

0 Karma

amirarsalan
Explorer

Beside that I can't see the total_run_time and on the search field it's only "*"

0 Karma

adonio
Ultra Champion

its out of the box with the MC (DMC)
search -> activity -> Search Usage Statistics: Deployment

0 Karma

amirarsalan
Explorer

Hi @adonio

Is this in splunk-master? If it is then i can only see users that have access to splunk-master, and that is only 3 persons.

0 Karma

adonio
Ultra Champion
0 Karma

amirarsalan
Explorer

I can only see "Add Data" there is no Splunk Monitoring Console. I can only found it in master.
And i'm a admin user

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...