We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e2d1aa commit 1357258Copy full SHA for 1357258
src/processing/graph_generator.ts
@@ -23,7 +23,7 @@ class GraphGenerator {
23
return undefined;
24
}
25
26
- const sumMetrics = !this.controller.getSettings(true).sumTimings;
+ const sumMetrics = this.controller.getSettings(true).sumTimings;
27
28
var nodeName = dataElements[0].target;
29
if (nodeName === '' || nodeName === undefined || nodeName === null) {
@@ -184,7 +184,7 @@ class GraphGenerator {
184
if (!_.isUndefined(response_time_out)) {
185
const { sumTimings } = this.controller.getSettings(true);
186
187
- if (!sumTimings && metrics.rate) {
+ if (sumTimings && metrics.rate) {
188
metrics.response_time = response_time_out / metrics.rate;
189
} else {
190
metrics.response_time = response_time_out;
0 commit comments