JMeter仪表板 - 添加到jtl文件的CPU使用率不显示百分比cpu

时间:2018-03-08 16:19:42

标签: jmeter perfmon

通过JMeter生成的仪表板 - 当PerfMon Metrics收集器使用CPU信息写入JTL文件时,它会在Statistics部分中显示响应时间(ms)。但是,我想在仪表板统计信息部分中看到CPU使用率为%(就像您在PerfMon的图表显示中看到的那样)。如何使用JMeter仪表板执行此操作?谢谢。

2 个答案:

答案 0 :(得分:0)

你不能像JMeter 4.0那样。

这将是一个增强请求,可能会做出贡献或赞助。

要打开此类增强功能,请参阅:

编辑:

你打开了:

答案 1 :(得分:0)

我遇到了同样的问题。默认结果JTL文件似乎不包含CPU信息。我在jmx文件中配置了PerfMon文件名,它确实可以工作。希望对您有帮助。

<hashTree>
  <kg.apc.jmeter.perfmon.PerfMonCollector guiclass="kg.apc.jmeter.vizualizers.PerfMonGui" testclass="kg.apc.jmeter.perfmon.PerfMonCollector" testname="jp@gc - PerfMon Metrics Collector" enabled="true">
    <boolProp name="ResultCollector.error_logging">false</boolProp>
    <objProp>
      ......
    </objProp>

    #HERE config the perfmon infomation
    <stringProp name="filename">cpu.perfmon.base.jtl</stringProp>
    ......
  </kg.apc.jmeter.perfmon.PerfMonCollector>
<hashTree/>