Replies: 3 comments 3 replies
-
Hello, can you please provide more details to try to reproduce the issue you are experiencing? Can you provide an example testplan that allows to reproduce the issue? You might want to use a log4j2.xml file like this one to display the exception that generates the message "Error encountered during shutdown of us.abstracta.jmeter.javadsl.core.listeners.HtmlReporter$AutoFlushingResultCollector": <?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n%ex"/>
</Console>
</Appenders>
<Loggers>
<Root level="INFO">
<AppenderRef ref="Console"/>
</Root>
<Logger name="org.eclipse.jetty" level="WARN"/>
<Logger name="org.apache.jmeter" level="WARN"/>
</Loggers>
</Configuration> |
Beta Was this translation helpful? Give feedback.
-
At this moment, I've found two ways to get around this problem but they aren't ideal and have their limitations
|
Beta Was this translation helpful? Give feedback.
-
Hello, could you help me, please? Have you ever encountered a problem like the one below while creating an HTML report?
Sometimes it happens with the same code and environments, sometimes it doesn't, which is why I can't find the reason for this problem.
I understand that something is wrong with the report.jtl file at that moment, but I don't know how to fix generating a correct file for the HTML report.
I have an assumption that my test uses too many threads and not all of them have finished writing their data into this file when the HTML reporter started its job. Is it possible?
P.S. When I checked line 2796636 in 'build/reports/jmeterReports/httpReport/report.jtl', I found that it looks good, and has more than 3 columns

Beta Was this translation helpful? Give feedback.
All reactions