0
votes

I have configured my JMeter Simple Data Writer to output my results. However, when using the JMeter HMTL Reported generator I am receiving this error:

Generating report An error occurred: Error while processing samples: Consumer failed with message :Consumer failed with message :Consumer failed with message :Consumer failed with message :No column <"VarName"> found in sample metadata <timeStamp,elapsed,label,responseCode,responseMessage,success,failureMessage,bytes,Latency>, check #jmeter.save.saveservice.* properties to add the missing column

Any help would be appreciated.

1

1 Answers

0
votes

It looks like you have definition for generating a custom chart over time for VarName sample variable and it is not present in the .jtl results file.

So the options are in:

  1. Remove custom chart configuration, i.e. look for the properties which start with jmeter.reportgenerator.graph.custom_ and either comment them out or delete these lines completely.

    Once done you should be able to generate the dashboard from that .jtl results file.

  2. Add the next line to user.properties file:

    sample_variables=VarName
    

    in this case you will need to re-run your test and re-generate the dashboard using the new .jtl results file

More information: