mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
improve method names on annotations
This commit is contained in:
@@ -107,7 +107,7 @@ public class ActivityExecutor implements NBLabeledElement, ActivityController, P
|
||||
.element(this)
|
||||
.interval(this.startedAt, this.stoppedAt)
|
||||
.layer(Layer.Activity)
|
||||
.detail("params", getActivityDef().toString())
|
||||
.addDetail("params", getActivityDef().toString())
|
||||
.build()
|
||||
);
|
||||
}
|
||||
@@ -131,7 +131,7 @@ public class ActivityExecutor implements NBLabeledElement, ActivityController, P
|
||||
.element(this)
|
||||
.interval(this.startedAt, this.stoppedAt)
|
||||
.layer(Layer.Activity)
|
||||
.detail("params", getActivityDef().toString())
|
||||
.addDetail("params", getActivityDef().toString())
|
||||
.build()
|
||||
);
|
||||
}
|
||||
@@ -400,8 +400,8 @@ public class ActivityExecutor implements NBLabeledElement, ActivityController, P
|
||||
.element(this)
|
||||
.now()
|
||||
.layer(Layer.Activity)
|
||||
.detail("event", "start-activity")
|
||||
.detail("params", activityDef.toString())
|
||||
.addDetail("event", "start-activity")
|
||||
.addDetail("params", activityDef.toString())
|
||||
.build());
|
||||
|
||||
try {
|
||||
@@ -520,7 +520,7 @@ public class ActivityExecutor implements NBLabeledElement, ActivityController, P
|
||||
.element(this)
|
||||
.now()
|
||||
.layer(Layer.Activity)
|
||||
.detail("params", getActivityDef().toString())
|
||||
.addDetail("params", getActivityDef().toString())
|
||||
.build()
|
||||
);
|
||||
|
||||
@@ -562,8 +562,8 @@ public class ActivityExecutor implements NBLabeledElement, ActivityController, P
|
||||
.element(this)
|
||||
.interval(startedAt, stoppedAt)
|
||||
.layer(Layer.Activity)
|
||||
.detail("event", "stop-activity")
|
||||
.detail("params", activityDef.toString())
|
||||
.addDetail("event", "stop-activity")
|
||||
.addDetail("params", activityDef.toString())
|
||||
.build());
|
||||
}
|
||||
|
||||
|
||||
@@ -252,7 +252,7 @@ public class Scenario implements Callable<ExecutionMetricsResult>, NBLabeledElem
|
||||
.element(this)
|
||||
.now()
|
||||
.layer(Layer.Scenario)
|
||||
.detail("engine", engine.toString())
|
||||
.addDetail("engine", engine.toString())
|
||||
.build()
|
||||
);
|
||||
|
||||
@@ -351,7 +351,7 @@ public class Scenario implements Callable<ExecutionMetricsResult>, NBLabeledElem
|
||||
.element(this)
|
||||
.interval(startedAtMillis, this.endedAtMillis)
|
||||
.layer(Layer.Scenario)
|
||||
.detail("event","stop-scenario")
|
||||
.addDetail("event","stop-scenario")
|
||||
.build();
|
||||
|
||||
Annotators.recordAnnotation(annotation);
|
||||
|
||||
Reference in New Issue
Block a user