From b488c2af117a3ed7a572c796ddb407b20339ccf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Walter?= <juergen.walter@uni-wuerzburg.de> Date: Sun, 8 Jan 2017 09:34:49 +0100 Subject: [PATCH] improved matching: equals --> contains --- .../connector/kieker/PerformanceMetricsQueryConnectorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.descartes.dql.connector.kieker/src/tools/descartes/dql/connector/kieker/PerformanceMetricsQueryConnectorImpl.java b/tools.descartes.dql.connector.kieker/src/tools/descartes/dql/connector/kieker/PerformanceMetricsQueryConnectorImpl.java index 3696abb..087c1e0 100644 --- a/tools.descartes.dql.connector.kieker/src/tools/descartes/dql/connector/kieker/PerformanceMetricsQueryConnectorImpl.java +++ b/tools.descartes.dql.connector.kieker/src/tools/descartes/dql/connector/kieker/PerformanceMetricsQueryConnectorImpl.java @@ -115,7 +115,7 @@ public class PerformanceMetricsQueryConnectorImpl extends if (er.getIdentifier().isInterfaceIdentifier()){ kiekerId += "." + er.getIdentifier().getInterfaceID(); } - if (dqlId.equals(kiekerId)) { + if (kiekerId.contains(dqlId)) { res.getElements().add(KiekerHelper.getSeriesResultElement(er.getTimestamp(), er.getRuntime(), firstTs)); } -- GitLab