Splunk Search

75th percentile caluclation

ertzsmith
New Member

I need to calculate 75th percentile by minutes

Time: 11:12 magnitude 3.4
Time: 11:12 magnitude 4.4
Time: 11:12 magnitude 3.9
Time: 11:15 magnitude 3.8
Time: 11:15 magnitude 2.4
Time: 11:15 magnitude 3.1
Time: 12:10 magnitude 3.6
Time: 12:11 magnitude 3.5
Time: 12:11 magnitude 4.4
Time: 12:11 magnitude 3.9

Tags (1)
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Try this:

base search | timechart span=1m p75(magnitude)

That's assuming your events are timestamped correctly and you have the magnitude field extracted.

martin_mueller
SplunkTrust
SplunkTrust

That looks for a number with optional decimal point.

0 Karma

ertzsmith
New Member

It worked on above example file
can you please explain what does expression in rex "\d+(.\d+) " is doing

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Try this rex:

rex "magnitude (?<magnitude>\d+(\.\d+)?)"

Verify that the field is extracted before adding the timechart.

0 Karma

ertzsmith
New Member

thanks for quick reply, i tried below search but no good.

base search | rex field=_raw "magnitude (?) |" | timechart span=1m p75(response)

I get blank values in response column

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...