Class StatisticsSummaryData
java.lang.Object
org.apache.jmeter.report.processor.StatisticsSummaryData
The class ApdexSummaryData provides information for
 StatisticsSummaryConsumer.
- Since:
- 3.0
- 
Constructor SummaryConstructorsConstructorDescriptionStatisticsSummaryData(double percentileIndex1, double percentileIndex2, double percentileIndex3) Instantiates a new statistics info.
- 
Method SummaryModifier and TypeMethodDescriptionfinal longgetBytes()Gets the bytes.doubleGets the bytes per second.longfinal longGets the end time.final longfinal longGets the first time.doubleGets the kilo bytes per second.final longgetMax()getMean()final longgetMin()final PercentileAggregatorfinal PercentileAggregatorGets the percentile2.final PercentileAggregatorGets the percentile3.longdoubleGets the sent bytes per second.doubleGets the sent kilo bytes per second.doubleGets the throughput.final longgetTotal()voidincBytes(long value) Increment received bytesvoidvoidincSentBytes(long value) Increment sent bytesvoidincTotal()final voidsetBytes(long bytes) Sets the bytes.final voidsetEndTime(long endTime) Sets the end time.final voidsetErrors(long errors) final voidsetFirstTime(long firstTime) Sets the first time.final voidsetMax(long max) final voidsetMin(long min) final voidsetTotal(long total) 
- 
Constructor Details- 
StatisticsSummaryDatapublic StatisticsSummaryData(double percentileIndex1, double percentileIndex2, double percentileIndex3) Instantiates a new statistics info.- Parameters:
- percentileIndex1- value of first percentile
- percentileIndex2- value of second percentile
- percentileIndex3- value of third percentile
 
 
- 
- 
Method Details- 
getElapsedTimepublic long getElapsedTime()
- 
getFirstTimepublic final long getFirstTime()Gets the first time.- Returns:
- the firstTime
 
- 
setFirstTimepublic final void setFirstTime(long firstTime) Sets the first time.- Parameters:
- firstTime- the firstTime to set
 
- 
getEndTimepublic final long getEndTime()Gets the end time.- Returns:
- the endTime
 
- 
setEndTimepublic final void setEndTime(long endTime) Sets the end time.- Parameters:
- endTime- the endTime to set
 
- 
getBytespublic final long getBytes()Gets the bytes.- Returns:
- the bytes
 
- 
setBytespublic final void setBytes(long bytes) Sets the bytes.- Parameters:
- bytes- the bytes to set
 
- 
getErrorspublic final long getErrors()- Returns:
- the errors
 
- 
setErrorspublic final void setErrors(long errors) - Parameters:
- errors- the errors to set
 
- 
getTotalpublic final long getTotal()- Returns:
- the total
 
- 
setTotalpublic final void setTotal(long total) - Parameters:
- total- the total to set
 
- 
getMinpublic final long getMin()- Returns:
- the min
 
- 
setMinpublic final void setMin(long min) - Parameters:
- min- the min to set
 
- 
getMaxpublic final long getMax()- Returns:
- the max
 
- 
setMaxpublic final void setMax(long max) - Parameters:
- max- the max to set
 
- 
getPercentile1- Returns:
- the percentile1
 
- 
getPercentile2Gets the percentile2.- Returns:
- the percentile2
 
- 
getPercentile3Gets the percentile3.- Returns:
- the percentile3
 
- 
getBytesPerSecondpublic double getBytesPerSecond()Gets the bytes per second.- Returns:
- the bytes per second
 
- 
getKBytesPerSecondpublic double getKBytesPerSecond()Gets the kilo bytes per second.- Returns:
- the kilo bytes per second
 
- 
getThroughputpublic double getThroughput()Gets the throughput.- Returns:
- the throughput
 
- 
incTotalpublic void incTotal()
- 
incBytespublic void incBytes(long value) Increment received bytes- Parameters:
- value- bytes
 
- 
incSentBytespublic void incSentBytes(long value) Increment sent bytes- Parameters:
- value- bytes
 
- 
incErrorspublic void incErrors()
- 
getMean- Returns:
- the mean response times
 
- 
getMedian- Returns:
- the median response times
 
- 
getSentBytespublic long getSentBytes()- Returns:
- the sentBytes
 
- 
getSentBytesPerSecondpublic double getSentBytesPerSecond()Gets the sent bytes per second.- Returns:
- the sent bytes per second
 
- 
getSentKBytesPerSecondpublic double getSentKBytesPerSecond()Gets the sent kilo bytes per second.- Returns:
- the sent kilo bytes per second
 
 
-