Hello,
Is there a recommended way to send threshold metrics to Datadog with a setup that looks like this:
Thresholds per scenario:
"thresholds": {
"http_req_duration{scenario:1}": ["p(95)<400"],
"http_req_failed{scenario:1}": ["rate<0.01"],
}
I am sending the corresponding tags as a param in the api request for my scenarios and can confirm that k6 recognizes these per scenario thresholds. However, I am confused on how to send these to datadog since it looks like they do not get sent automatically. I’ve tried hooking into data.metrics in the handleSummary function and sending metrics as a Trend object to no avail.