Skip to content
Snippets Groups Projects
Commit f0d1e0ab authored by Simon Spinner's avatar Simon Spinner
Browse files

Fix unit of response time measurements to NANOSECONDS.

parent 256938e6
No related branches found
No related tags found
No related merge requests found
......@@ -618,12 +618,12 @@ public class ModelExtractionService extends AgentController implements Service<M
incomingRecord.setThroughputSensor(inThroughputSensor);
ComponentSensor<Time> inResponseTimeSensor = createSensor(StandardMetrics.RESPONSE_TIME,
Time.MILLISECONDS, Aggregation.CUMULATIVE_SUM, componentInstance,
Time.NANOSECONDS, Aggregation.CUMULATIVE_SUM, componentInstance,
innerCallerProvidingRole, incomingSignature, null);
inResponseTimeSensor = ModelSkeletonUtil.insert(skeleton.getSensors().getSensors(), inResponseTimeSensor);
incomingRecord.setResponseTimeSensor(inResponseTimeSensor);
ComponentSensor<Time> inResidenceTimeSensor = createSensor(StandardMetrics.RESIDENCE_TIME, Time.MILLISECONDS,
ComponentSensor<Time> inResidenceTimeSensor = createSensor(StandardMetrics.RESIDENCE_TIME, Time.NANOSECONDS,
Aggregation.CUMULATIVE_SUM, componentInstance, innerCallerProvidingRole, incomingSignature, null);
inResidenceTimeSensor = ModelSkeletonUtil.insert(skeleton.getSensors().getSensors(), inResidenceTimeSensor);
incomingRecord.setResidenceTimeSensor(inResidenceTimeSensor);
......@@ -635,7 +635,7 @@ public class ModelExtractionService extends AgentController implements Service<M
outThroughputSensor = ModelSkeletonUtil.insert(skeleton.getSensors().getSensors(), outThroughputSensor);
outgoingRecord.setThroughputSensor(outThroughputSensor);
ComponentSensor<Time> outResponseTimeSensor = createSensor(StandardMetrics.RESPONSE_TIME, Time.MILLISECONDS,
ComponentSensor<Time> outResponseTimeSensor = createSensor(StandardMetrics.RESPONSE_TIME, Time.NANOSECONDS,
Aggregation.CUMULATIVE_SUM, componentInstance, innerCallerProvidingRole, incomingSignature,
externalCall);
outResponseTimeSensor = ModelSkeletonUtil.insert(skeleton.getSensors().getSensors(), outResponseTimeSensor);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment