我想知道来自 jmeter 后端侦听器的值的含义

I want to know the meaning of the value coming from the jmeter backend listener

Jmeter backend listener

我通过这个后端监听器将结果值发送给influxdb

而且我可以收到这个值。

data

data

但是我不知道这个值是什么意思

你能帮帮我吗?谢谢!

“含义”列在 Metrics Exposed JMeter 用户手册条目下

15.1.1 Thread/Virtual Users metrics

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

15.1.2 Response times metrics

Response related metrics are the following:

<rootMetricsPrefix><samplerName>.ok.count Number of successful responses for sampler name

<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

.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)

如果您需要有关配置 JMeter/InfluxDB/Grafana 的更多信息 - 查看 How to Use Grafana to Monitor JMeter Non-GUI Results - Part 2 文章。