Hi all, I’ve been trying to integrate K6 with New Relic and Datadog by following the examples from the K6 website but the numbers I get on both services seem really off when compared to the K6 summary.
Here’s an example with Datadog:
K6 Summary:
And here’s the Metric
const createDurationTrend = new Trend('custom_req_duration');
....
const resp = http.get(testUrl, params);
createDurationTrend.add(resp.timings.duration);
The K6 built-in metrics also give me different numbers
What am I doing wrong? Can someone point in the right direction?
Cheers