Splunk Search

How to get average, max TPS by Method

sg86sourav
New Member

Hi,

I am looking for splunk query which can give average, max and 90th percentile value of transactions per second (TPS) for each of the methods. I am looking a table in below format-

Method Name -- Avg TPS -- Max TPS -- 90th Percentile TPS -- Total Sample
Method1 -- ? -- ? -- ? -- ?
Method2 -- ? -- ? -- ? -- ?
Method3 -- ? -- ? -- ? -- ?
Method4 -- ? -- ? -- ? -- ?

Tags (1)
0 Karma

xpac
SplunkTrust
SplunkTrust

Try this:

index=something yoursearchhere
| stats avg(TPS) AS "Avg TPS" max(TPS) AS "Max TPS" perc90(TPS) AS "90th Percentile TPS" count(TPS) as "Total Sample" by method
0 Karma

sg86sourav
New Member

What is TPS ? Is it a inbuild field ?

0 Karma

xpac
SplunkTrust
SplunkTrust

Sorry, that was a misunderstanding, I thought that was a field from your events. What do you mean by transactions? Events?

0 Karma
Get Updates on the Splunk Community!

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...

See your relevant APM services, dashboards, and alerts in one place with the updated ...

As a Splunk Observability user, you have a lot of data you have to manage, prioritize, and troubleshoot on a ...