|
JMeter example source code file (Sample.java)
The JMeter Sample.java source code
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.jmeter.visualizers;
import java.io.Serializable;
import java.text.Format;
import java.util.Date;
public class Sample implements Serializable, Comparable<Sample> {
private static final long serialVersionUID = 240L;
private final long data; // = elapsed
private final long average;
private final long median;
private final long distributionLine; // TODO: what is this for?
private final long deviation;
private final double throughput;
private final long errorCount;
private final boolean success;
private final String label;
private final String threadName;
private final long count;
private final long endTime;
private final int bytes;
public Sample(String name, long data, long average, long deviation, long median, long distributionLine,
double throughput, long errorCount, boolean success, long num, long endTime) {
this.data = data;
this.average = average;
this.deviation = deviation;
this.throughput = throughput;
this.success = success;
this.median = median;
this.distributionLine = distributionLine;
this.label = name;
this.errorCount = errorCount;
this.count = num;
this.endTime = endTime;
this.bytes = 0;
this.threadName = "";
}
public Sample(String name, long data, long average, long deviation, long median, long distributionLine,
double throughput, long errorCount, boolean success, long num, long endTime, int bytes, String threadName) {
this.data = data;
this.average = average;
this.deviation = deviation;
this.throughput = throughput;
this.success = success;
this.median = median;
this.distributionLine = distributionLine;
this.label = name;
this.errorCount = errorCount;
this.count = num;
this.endTime = endTime;
this.bytes = bytes;
this.threadName = threadName;
}
public Sample() {
this(null, 0, 0, 0, 0, 0, 0, 0, true, 0, 0);
}
// Appears not to be used - however it is invoked via the Functor class
public int getBytes() {
return bytes;
}
/**
* @return Returns the average.
*/
public long getAverage() {
return average;
}
/**
* @return Returns the count.
*/
public long getCount() {
return count;
}
/**
* @return Returns the data (usually elapsed time)
*/
public long getData() {
return data;
}
/**
* @return Returns the deviation.
*/
public long getDeviation() {
return deviation;
}
/**
* @return Returns the distributionLine.
*/
public long getDistributionLine() {
return distributionLine;
}
/**
* @return Returns the error.
*/
public boolean isSuccess() {
return success;
}
/**
* @return Returns the errorRate.
*/
public long getErrorCount() {
return errorCount;
}
/**
* @return Returns the label.
*/
public String getLabel() {
return label;
}
/**
* @return Returns the threadName.
*/
public String getThreadName() {
return threadName;
}
/**
* @return Returns the median.
*/
public long getMedian() {
return median;
}
/**
* @return Returns the throughput.
*/
public double getThroughput() {
return throughput;
}
/** {@inheritDoc} */
public int compareTo(Sample o) {
Sample oo = o;
return ((count - oo.count) < 0 ? -1 : (count == oo.count ? 0 : 1));
}
/**
* @return Returns the endTime.
*/
public long getEndTime() {
return endTime;
}
/**
* @return Returns the (calculated) startTime, assuming Data is the elapsed time.
*/
public long getStartTime() {
return endTime-data;
}
/**
* @return the start time using the specified format
* Intended for use from Functors
*/
public String getStartTimeFormatted(Format format) {
return format.format(new Date(getStartTime()));
}
}
Other JMeter examples (source code examples)Here is a short list of links related to this JMeter Sample.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.