}
@Override
public String toString()
{
LongStats callTimeStats = this.getCallTimeStats();
return
(
"EndTime=" + this.getIntervalEndTime() +
", Interval=" + this.getInterval() +
", CallCount=" + this.getCallCount() +
", CallCountTotal=" + this.getCallCountTotal() +
", CallStartCountTotal=" + this.getCallStartCountTotal() +
", CallsPerSecond=" + this.getCallsPerSecond() +
", ErrorCount=" + this.getErrorCount() +
", ErrorCountTotal=" + this.getErrorCountTotal() +
", ErrorRate=" + this.getErrorRate() +
", ConcurrentMax=" + this.getConcurrentMax() +
", OutstandingStartTimeAvg=" + this.getOutstandingStartTimeAvg() +
", OutstandingCount=" + this.getOutstandingCount() +
", CallTimeAvg=" + callTimeStats.getAverage() +
", CallTimeStdDev=" + callTimeStats.getStandardDeviation() +
", CallTimeMin=" + callTimeStats.getMinimum() +
", CallTimeMax=" + callTimeStats.getMaximum() +
", CallTime50Pct=" + callTimeStats.get50Pct() +
", CallTime90Pct=" + callTimeStats.get90Pct() +
", CallTime95Pct=" + callTimeStats.get95Pct() +
", CallTime99Pct=" + callTimeStats.get99Pct() +
", ErrorTypeCounts=" + this.getErrorTypeCounts() +
", ErrorTypeCountsTotal=" + this.getErrorTypeCountsTotal()
);
}