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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...