All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lazerycode.jmeter.analyzer.writer.SummaryJsonFileWriter Maven / Gradle / Ivy

Go to download

Parses JMeter result files and computes performance indicators such as average request duration

The newest version!
package com.lazerycode.jmeter.analyzer.writer;

/**
 * Writes a summary for all discovered / configured
 * {@link com.lazerycode.jmeter.analyzer.AnalyzeMojo#requestGroups RequestGroups} to a JSON file.
 */
public class SummaryJsonFileWriter extends TextWriterBase {

  private static final String ROOT_TEMPLATE = "json/main.ftl";

  @Override
  public String getFileName() {
    return super.getFileName() + JSON_EXT;
  }

  @Override
  protected String getRootTemplate() {
    return ROOT_TEMPLATE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy