Jmeter:活动线程数(Jmeter : Number of active threads) 我在墓地弗里亚使用jmeter(14.04) 我有一个带有视图结果树的jmeter测试计划 我试图在视图结果树中生成一个csv文件,包括活动线程数字段。

在我看来,详细信息正在result.csv文件中输入,但表示此属性的值没有字段名称,因此该详细信息不能用于我想从result.csv创建的图表中

我根据https://jmeter-plugins.org/wiki/PluginInstall/#Configure-JMeter更改了JMETER-INSTALL-DIR / bin / jmeter.properties

如何获得带有合适字段名的result.csv文件,如“active-threads”

I am using jmeter in elemetery freya (14.04) I have a jmeter test plan with view results tree I am trying to generate a csv file in view results tree including the number of active threads field.

It appears to me that the detail is being entered in the result.csv file, but the values representing this attribute has no field name, and hence that detail cannot be used in a graph which I want to create from the result.csv

I have changed JMETER-INSTALL-DIR/bin/jmeter.properties according to https://jmeter-plugins.org/wiki/PluginInstall/#Configure-JMeter

How can I get a result.csv file with a suitable fieldname like "active-threads"

最满意答案

不要更改jmeter.properties文件中的任何内容,升级到新的JMeter版本将丢弃您的更改。 请改用user.properties文件

为了将列名添加到CSV文件,请将以下属性添加到user.properties文件中:

jmeter.save.saveservice.print_field_names=true

假设配置良好,您应该看到grpThreads和allThreads列以及值。

有关JMeter属性及其使用方法的更多信息,请参阅“ Apache JMeter属性自定义指南”

Don't change anything in jmeter.properties file, upgrade to new JMeter version will discard your changes. Use user.properties file instead

The in order to add column names to CSV file add the following property to user.properties file:

jmeter.save.saveservice.print_field_names=true

Assuming good configuration you should be seeing grpThreads and allThreads columns along with the values.

See Apache JMeter Properties Customization Guide for more information on JMeter properties and ways of working with them

Jmeter:活动线程数(Jmeter : Number of active threads) 我在墓地弗里亚使用jmeter(14.04) 我有一个带有视图结果树的jmeter测试计划 我试图在视图结果树中生成一个csv文件,包括活动线程数字段。

在我看来,详细信息正在result.csv文件中输入,但表示此属性的值没有字段名称,因此该详细信息不能用于我想从result.csv创建的图表中

我根据https://jmeter-plugins.org/wiki/PluginInstall/#Configure-JMeter更改了JMETER-INSTALL-DIR / bin / jmeter.properties

如何获得带有合适字段名的result.csv文件,如“active-threads”

I am using jmeter in elemetery freya (14.04) I have a jmeter test plan with view results tree I am trying to generate a csv file in view results tree including the number of active threads field.

It appears to me that the detail is being entered in the result.csv file, but the values representing this attribute has no field name, and hence that detail cannot be used in a graph which I want to create from the result.csv

I have changed JMETER-INSTALL-DIR/bin/jmeter.properties according to https://jmeter-plugins.org/wiki/PluginInstall/#Configure-JMeter

How can I get a result.csv file with a suitable fieldname like "active-threads"

最满意答案

不要更改jmeter.properties文件中的任何内容,升级到新的JMeter版本将丢弃您的更改。 请改用user.properties文件

为了将列名添加到CSV文件,请将以下属性添加到user.properties文件中:

jmeter.save.saveservice.print_field_names=true

假设配置良好,您应该看到grpThreads和allThreads列以及值。

有关JMeter属性及其使用方法的更多信息,请参阅“ Apache JMeter属性自定义指南”

Don't change anything in jmeter.properties file, upgrade to new JMeter version will discard your changes. Use user.properties file instead

The in order to add column names to CSV file add the following property to user.properties file:

jmeter.save.saveservice.print_field_names=true

Assuming good configuration you should be seeing grpThreads and allThreads columns along with the values.

See Apache JMeter Properties Customization Guide for more information on JMeter properties and ways of working with them