diff options
author | 2024-07-16 09:24:18 +0000 | |
---|---|---|
committer | 2024-07-16 09:24:18 +0000 | |
commit | ac58e919008c4449b389d3681a6f8aa216cb5f8f (patch) | |
tree | c9c482420047c2418ffd0b746f9b5b9ddd1074f0 /k6-tests/ncmp/common/utils.js | |
parent | 76676aa6d9b4a1336b8d1f392296995bcdde3439 (diff) | |
parent | fcc81ee3a4b9ae937e0f447ee574b676506b6390 (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.js | 1 |
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; } |