溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ant_Jmeter持續(xù)集成測(cè)試報(bào)告優(yōu)化之添加throughput顯示

發(fā)布時(shí)間:2020-06-19 17:43:39 來源:網(wǎng)絡(luò) 閱讀:1167 作者:niedongri 欄目:軟件技術(shù)

上篇文章中的build文件生成的測(cè)試報(bào)告數(shù)據(jù)顯示比較標(biāo)準(zhǔn),如果想把thoughput也

顯示在報(bào)告里面,只需要在build文件中加入下面的腳本即可

        <!--以下為增加throughput項(xiàng)目顯示=(請(qǐng)求總字節(jié)數(shù))/(total time) 
        <xsl:variable name="nodeKB">  
            <xsl:call-template name="Throughput"> 
                <xsl:with-param name="nodes" select="/testResults/*/@t" />
                <xsl:with-param name="count" select="sum(/testResults/*/@by) div 1024" />
            </xsl:call-template>
        </xsl:variable> 
        <!--增加throughput結(jié)束-->
        <!--以下為增加TPS項(xiàng)目顯示=(總請(qǐng)求數(shù))/(total time)
        <xsl:variable name="nodeThroughput">  
            <xsl:call-template name="Throughput">
                <xsl:with-param name="nodes" select="/testResults/*/@t" />
                <xsl:with-param name="count" select="$allCount" />
            </xsl:call-template>
        </xsl:variable>
        <!--增加TPS結(jié)束-->

add 90%line 





很簡(jiǎn)單吧,加上去后自己去調(diào)試一下看看效果吧。

有問題加×××流QQ群:610845268


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI