0%

tp99

tp99

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
The tp90 is a minimum time under which 90% of requests have been served.

tp90 = top percentile 90

Imagine you have response times:

10s
1000s
100s
2s

Calculating TP is very simple:

1. Sort all times in ascending order: [2s, 10s, 100s, 1000s]

2. find latest item in portion you need to calculate.
2.1 For TP50 it will be ceil(4*0.5) = 2 requests. You need 2nd request.
2.2 For TP90 it will be ceil(4*0.9) = 4. You need 4th request.

3. We get time for the item found above. TP50=10s. TP90=1000s

简单说就是满足99%的网络请求的最大的响应时间。

Pc99

p99 数据集降序排列 第 99 分位置大的数据。

pct

RT: Response Time,响应时间,等价于Latency
RT分平均延时,Pct延时(Percentile分位数)。平均值不能反映服务真实响应延时,实际压测中一般参考Pct90,Pct99等指标。

所以可以看到 pct 就是 percentile 单词的缩写…