We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668b32a commit 4c464c1Copy full SHA for 4c464c1
2 files changed
src/main/java/org/jqassistant/contrib/plugin/kieker/api/model/ExecutionEventDescriptor.java
@@ -9,7 +9,7 @@
9
*/
10
@Label("Execution")
11
public interface ExecutionEventDescriptor extends EventDescriptor, Descriptor {
12
- @Relation("EXECUTION")
+ @Relation("EXECUTES")
13
MethodDescriptor getExecutedMethod();
14
15
void setExecutedMethod(MethodDescriptor executedMethod);
src/main/resources/META-INF/jqassistant-rules/kieker.xml
</description>
<cypher><![CDATA[
MATCH
- (e:Execution)-[:EXECUTION]->(m:Method)
+ (e:Execution)-[:EXECUTES]->(m:Method)
WITH
m, SUM(e.afterTimestamp - e.beforeTimestamp) AS duration
SET
0 commit comments