Splunk Search

Is there a way to monitor the number of files in the dispatch directory?

richnavis
Contributor

I'd like to monitor and alert on the number of files in the dispatch directory.. What's the best way to accomplish this?

Tags (1)
1 Solution

ziegfried
Influencer

You could build an alert using the following query:

| rest /services/search/jobs | stats count | where count>2000

View solution in original post

jluste
Path Finder

Another option: I setup a monitor / report that breaks down both disk usage and dispatch jobs by user (as well as provides total amounts) so that I know who to talk to about anything crazy I see. Includes percentages as well.

| rest /services/search/jobs
| eval diskUsageMB=diskUsage/1024/1024
| rename eai:acl.owner as user
| eventstats count AS Total_Jobs, sum(diskUsageMB) AS Total_Storage
| eventstats count AS Jobs, sum(diskUsageMB) AS Storage by user
| eval Job%=round((Jobs/Total_Jobs)*100,1) . "%"
| eval Storage%=round((Storage/Total_Storage)*100,1) . "%"
| dedup user
| table user Jobs Total_Jobs Job% Storage Total_Storage Storage%
| sort - Jobs

jluste
Path Finder

This allows you to set both per user and overall alerts on either (or both) disk usage and count of jobs. Just add a
| where Jobs > X OR Total_Jobs > Y AND Storage > Z, etc.

only thing is that if you want to do math on the % fields, you'll want to either convert to number or remove the "%" sign I added in the evals.

0 Karma

ziegfried
Influencer

You could build an alert using the following query:

| rest /services/search/jobs | stats count | where count>2000

richnavis
Contributor

Perfect, Thanks!

0 Karma
Get Updates on the Splunk Community!

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...

Get ready to show some Splunk Certification swagger at .conf24!

Dive into the deep end of data by earning a Splunk Certification at .conf24. We're enticing you again this ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Now On-Demand Join us to learn more about how you can leverage Service Level Objectives (SLOs) and the new ...