You are viewing a plain text version of this content. The canonical link for it is here.
Posted to devnull@infra.apache.org by vl...@apache.org on 2019/06/08 18:42:34 UTC

[jmeter] 30/47: Add sample count to response pane

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to annotated tag v2_3
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit ad5e4b51032fee911097f1f10981246209445a8d
Author: Sebastian Bazley <se...@apache.org>
AuthorDate: Sat Sep 22 15:06:22 2007 +0000

    Add sample count to response pane
    
    git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/branches/rel-2-2@578454 13f79535-47bb-0310-9956-ffa450edef68
    
    Former-commit-id: 5299b2606398f69f6557a71481f613ed12868e4f
---
 .../org/apache/jmeter/visualizers/ViewResultsFullVisualizer.java         | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/components/org/apache/jmeter/visualizers/ViewResultsFullVisualizer.java b/src/components/org/apache/jmeter/visualizers/ViewResultsFullVisualizer.java
index 8e42eaa..d884036 100644
--- a/src/components/org/apache/jmeter/visualizers/ViewResultsFullVisualizer.java
+++ b/src/components/org/apache/jmeter/visualizers/ViewResultsFullVisualizer.java
@@ -363,6 +363,7 @@ public class ViewResultsFullVisualizer extends AbstractVisualizer
 						statsBuff.append("Sample Start: ").append(startTime).append(NL);
 						statsBuff.append("Load time: ").append(res.getTime()).append(NL);
 						statsBuff.append("Size in bytes: ").append(res.getBytes()).append(NL);
+						statsBuff.append("Sample Count: ").append(res.getSampleCount()).append(NL);
 						statsDoc.insertString(statsDoc.getLength(), statsBuff.toString(), null);
 						statsBuff = new StringBuffer(); //reset for reuse