aboutsummaryrefslogtreecommitdiffstats
path: root/k6-tests/ncmp/common/utils.js
diff options
context:
space:
mode:
authorDaniel Hanrahan <daniel.hanrahan@est.tech>2024-07-16 09:24:18 +0000
committerGerrit Code Review <gerrit@onap.org>2024-07-16 09:24:18 +0000
commitac58e919008c4449b389d3681a6f8aa216cb5f8f (patch)
treec9c482420047c2418ffd0b746f9b5b9ddd1074f0 /k6-tests/ncmp/common/utils.js
parent76676aa6d9b4a1336b8d1f392296995bcdde3439 (diff)
parentfcc81ee3a4b9ae937e0f447ee574b676506b6390 (diff)
Merge "Add passthrough write (CUD) operations to k6"
Diffstat (limited to 'k6-tests/ncmp/common/utils.js')
-rw-r--r--k6-tests/ncmp/common/utils.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/k6-tests/ncmp/common/utils.js b/k6-tests/ncmp/common/utils.js
index 54b4c3a099..75c4ec763e 100644
--- a/k6-tests/ncmp/common/utils.js
+++ b/k6-tests/ncmp/common/utils.js
@@ -59,6 +59,7 @@ export function makeCustomSummaryReport(data, options) {
summaryCsv += makeSummaryCsvLine(3, 'CM-handle ID search with Module filter', 'milliseconds', 'http_req_duration{scenario:id_search_module}', data, options);
summaryCsv += makeSummaryCsvLine(4, 'CM-handle search with Module filter', 'milliseconds', 'http_req_duration{scenario:cm_search_module}', data, options);
summaryCsv += makeSummaryCsvLine(5, 'Synchronous single CM-handle pass-through read', 'milliseconds', 'http_req_duration{scenario:passthrough_read}', data, options);
+ summaryCsv += makeSummaryCsvLine(6, 'Synchronous single CM-handle pass-through write', 'requests/second', 'http_reqs{scenario:passthrough_write}', data, options);
return summaryCsv;
}