Splunk Search

How to search the 90th percentile value in a series of values and the count of values that are greater than the 90th percentile?

edookati
Path Finder

I need the 90th percentile value in a series of values and the count of values that are greater than the 90th percentile...
I am trying the below query with no luck. Please help me.

index=jms_logs sourcetype=perflogs domain_server_port="proda_olb_osb*" service_name="ABC*" | eventstats perc95(response_time) as response_time_95p | stats count by service_name | where response_time>response_time_98p

Tags (3)
0 Karma
1 Solution

lguinn2
Legend

Try this

index=jms_logs sourcetype=perflogs domain_server_port="proda_olb_osb*" service_name="ABC*" 
| eventstats perc90(response_time) as response_time_90p 
| where response_time>response_time_90p
| stats count by service_name

First, you had a typo, but you also had the commands a bit out of order. This calculates the 90th percentile of response time across all services and events, then counts the events that exceed the 90th percentile by service. If you want the 90th percentile to also be based on the service, rather than overall, then try this

index=jms_logs sourcetype=perflogs domain_server_port="proda_olb_osb*" service_name="ABC*" 
| eventstats perc90(response_time) as response_time_90p  by service_name
| where response_time>response_time_90p
| stats count by service_name

View solution in original post

0 Karma

lguinn2
Legend

Try this

index=jms_logs sourcetype=perflogs domain_server_port="proda_olb_osb*" service_name="ABC*" 
| eventstats perc90(response_time) as response_time_90p 
| where response_time>response_time_90p
| stats count by service_name

First, you had a typo, but you also had the commands a bit out of order. This calculates the 90th percentile of response time across all services and events, then counts the events that exceed the 90th percentile by service. If you want the 90th percentile to also be based on the service, rather than overall, then try this

index=jms_logs sourcetype=perflogs domain_server_port="proda_olb_osb*" service_name="ABC*" 
| eventstats perc90(response_time) as response_time_90p  by service_name
| where response_time>response_time_90p
| stats count by service_name
0 Karma

edookati
Path Finder

Also, i would like to set limits on 90p value for individual services (there are about 60-70) and alert if the 90p value goes above the set limit or if the count above 90p is higher than set limit.

Can you please suggest how this can be achieved.
Thanks a lot.

0 Karma

edookati
Path Finder

it worked. Thanks a lot.

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...