This is an automated email from the ASF dual-hosted git repository.
pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new d0be716 Show PreciseThroughputTimer details in schematic overview
d0be716 is described below
commit d0be716b568d93ffd67406528d187e0e7bba6705
Author: pmouawad <p.mouawad@ubik-ingenierie.com>
AuthorDate: Sat Apr 25 21:51:29 2020 +0200
Show PreciseThroughputTimer details in schematic overview
---
.../main/resources/org/apache/jmeter/gui/action/schematic.xsl | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/core/src/main/resources/org/apache/jmeter/gui/action/schematic.xsl b/src/core/src/main/resources/org/apache/jmeter/gui/action/schematic.xsl
index 2fa856f..8b6918a 100644
--- a/src/core/src/main/resources/org/apache/jmeter/gui/action/schematic.xsl
+++ b/src/core/src/main/resources/org/apache/jmeter/gui/action/schematic.xsl
@@ -549,6 +549,15 @@ ul.tree li:last-child {
</li>
</xsl:template>
+<xsl:template match="PreciseThroughputTimer">
+<li>
+ <xsl:call-template name="header"/>
+ (throughput:<xsl:value-of select='stringProp[@name="throughput"]'/> samples per
+ <xsl:value-of select='intProp[@name="throughputPeriod"]'/>sec for test duration:<xsl:value-of
select='longProp[@name="duration"]'/>)
+ <xsl:call-template name="comment"/>
+</li>
+</xsl:template>
+
<xsl:template match="*">
<li>
<xsl:call-template name="header"/>
|