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

com.lazerycode.jmeter.analyzer.templates.html.quantiles.ftl Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.0.6
Show newest version
<#ftl/>
<#-- @ftlvariable name="requests" type="com.lazerycode.jmeter.analyzer.statistics.Samples" -->
<#-- @ftlvariable name="Q_QUANTILES" type="java.lang.Integer" -->
<#-- @ftlvariable name="K_99_PERCENT" type="java.lang.Integer" -->
<#-- @ftlvariable name="K_99_PONT_9_PERCENT" type="java.lang.Integer" -->
        
          Response duration quantiles (ms)
        
        <#assign quantiles=requests.getQuantiles(Q_QUANTILES)/>
        <#assign x=90/>
        <#list 1..x as i>
          <#if i % 10 == 0>
        
           ${i}%
          ${quantiles.getQuantile(i*10)?string?left_pad(7)}
        
          
        
        
           99%
          ${quantiles.getQuantile(K_99_PERCENT)?string?left_pad(7)}
        
        
          99.9%
          ${quantiles.getQuantile(K_99_PONT_9_PERCENT)?string?left_pad(7)}
        
        
          100% (max. value)
          ${quantiles.getQuantile(Q_QUANTILES)?string?left_pad(7)}
        




© 2015 - 2024 Weber Informatics LLC | Privacy Policy