mirror of https://github.com/apache/jmeter.git
Tab police needed yet again
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1733393 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5d7bf2a47b
commit
cb2e528a2c
|
|
@ -212,17 +212,17 @@ public class GraphiteBackendListenerClient extends AbstractBackendListenerClient
|
|||
@Override
|
||||
public void handleSampleResults(List<SampleResult> sampleResults,
|
||||
BackendListenerContext context) {
|
||||
boolean samplersToFilterMatch;
|
||||
boolean samplersToFilterMatch;
|
||||
synchronized (LOCK) {
|
||||
for (SampleResult sampleResult : sampleResults) {
|
||||
getUserMetrics().add(sampleResult);
|
||||
|
||||
if(!summaryOnly) {
|
||||
if (useRegexpForSamplersList) {
|
||||
Matcher matcher = pattern.matcher(sampleResult.getSampleLabel());
|
||||
samplersToFilterMatch = matcher.matches();
|
||||
Matcher matcher = pattern.matcher(sampleResult.getSampleLabel());
|
||||
samplersToFilterMatch = matcher.matches();
|
||||
} else {
|
||||
samplersToFilterMatch = samplersToFilter.contains(sampleResult.getSampleLabel());
|
||||
samplersToFilterMatch = samplersToFilter.contains(sampleResult.getSampleLabel());
|
||||
}
|
||||
if (samplersToFilterMatch) {
|
||||
SamplerMetric samplerMetric = getSamplerMetric(sampleResult.getSampleLabel());
|
||||
|
|
|
|||
Loading…
Reference in New Issue