Percentage of skipped searches

This query will give you a table with a percentage of skipped searches and an evaluation with 3 ranges

index=_internal sourcetype=scheduler | stats count as total, count(eval(status="skipped")) as skipped | eval pct=round(skipped/total * 100, 0) | rangemap field=pct low=0-10, elevated=10-20 severe=20-100 | eval pct = pct . "%" | fields pct, range
Share This:

Leave A Comment?