Jmeter 实时结果

 

标签(空格分隔): Jmeter


从JMeter 2.13开始,通过提供实现AbstractBackendListenerClient的类,您可以使用可能的任何后端(JDBC,JMS,Webservice,...)通过后端侦听器发送到后端的实时结果。 JMeter提供了、GraphiteBackendListenerClien, 在3.2版本提供了 InfluxDBBackendListenerClien

度量标准

线程指标

Thread metrics are the following:
<rootMetricsPrefix>test.minAT
Min active threads
# 最小活动线程
<rootMetricsPrefix>test.maxAT
Max active threads
#最大获得线程
<rootMetricsPrefix>test.meanAT
Mean active threads
#中位数活动线程
<rootMetricsPrefix>test.startedT
Started threads
#启动线程
<rootMetricsPrefix>test.endedT
Finished threads
#结束线程

响应时间指标

<rootMetricsPrefix><samplerName>.ok.count
Number of successful responses for sampler name
#响应成功的数量,http200就会被视为成功
<rootMetricsPrefix><samplerName>.h.count
Server hits per seconds, this metric cumulates Sample Result and Sub results (if using Transaction Controller, "Generate parent sampler" should be unchecked)
#服务器每秒点击数
<rootMetricsPrefix><samplerName>.ok.min
Min response time for successful responses of sampler name
#成功返回请求的最小响应时间
<rootMetricsPrefix><samplerName>.ok.max
Max response time for successful responses of sampler name
成功返回请求的最大响应时间
<rootMetricsPrefix><samplerName>.ok.avg
Average response time for successful responses of sampler name
.
成功返回请求的平均响应时间
<rootMetricsPrefix><samplerName>.ok.pct<percentileValue>
Percentile computed for successful responses of sampler name. There will be one metric for each calculated value.
针对采样器名称的成功响应计算百分位数。每个计算值将有一个度量标准。(方差)
<rootMetricsPrefix><samplerName>.ko.count
Number of failed responses for sampler name
失败请求的数目
<rootMetricsPrefix><samplerName>.ko.min
Min response time for failed responses of sampler name
失败请求的最小响应时间
<rootMetricsPrefix><samplerName>.ko.max
Max response time for failed responses of sampler name
失败请求的最大响应时间
<rootMetricsPrefix><samplerName>.ko.avg
Average response time for failed responses of sampler name.
失败请求的平均响应时间。
<rootMetricsPrefix><samplerName>.ko.pct<percentileValue>
Percentile computed for failed responses of sampler name. There will be one metric for each calculated value.
失败方差
<rootMetricsPrefix><samplerName>.a.count
Number of responses for sampler name (sum of ok.count and ko.count)
请求的总数 = 成功的数量+失败的数量
<rootMetricsPrefix><samplerName>.sb.bytes
Sent Bytes
发送的字节
<rootMetricsPrefix><samplerName>.rb.bytes
Received Bytes
接收的字节
<rootMetricsPrefix><samplerName>.a.min
Min response time for responses of sampler name (min of ok.count and ko.count)
全部请求的最小响应时间
<rootMetricsPrefix><samplerName>.a.max
Max response time for responses of sampler name (max of ok.count and ko.count)
全部请求的最多响应时间
<rootMetricsPrefix><samplerName>.a.avg
Average response time for responses of sampler name (avg of ok.count and ko.count)
全部请求的平均响应时间
<rootMetricsPrefix><samplerName>.a.pct<percentileValue>
Percentile computed for responses of sampler name. There will be one metric for each calculated value. (calculated on the totals for OK and failed samples)
全部响应时间的方差
原文地址:https://www.cnblogs.com/summerxye/p/11004444.html