Splunk Search

How to search duration of time above a percentage?

mjones414
Contributor

I have data that has a watermark percentage, and a consumed percentage in a timechart. I want to determine how much time is spent above the watermark in a given window of time. How can I do this?

example:

.. | timechart span=4h avg(percent) as PercentUsed | eval "75th Percentile"=75 | ???transaction PerentUsed>"75th Percentile"???
0 Karma

lguinn2
Legend

It should be easy to identify the number of timespans that were above the threshold and then do the math to get the time over...

yoursearchhere
| timechart span=4h avg(percent) as PercentUsed 
| eval "75th Percentile"=75
| eval over_threshold = if(PercentUsed>75,1,0)
| stats sum(over_threshold) as spans_over
| eval time_out_compliance = tostring(spans_over * 4 * 60 * 60,"duration")
| fields - over_threshold spans_over
0 Karma
Get Updates on the Splunk Community!

Expert Tips from Splunk Professional Services, Ensuring Compliance, and More New ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Observability Release Update: AI Assistant, AppD + Observability Cloud Integrations & ...

This month’s releases across the Splunk Observability portfolio deliver earlier detection and faster ...

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

💌Keep the new year’s momentum going with our February lineup of Community Office Hours, Tech Talks, ...