Skip to content

Commit

Permalink
fix(metrics): Remove status from request name
Browse files Browse the repository at this point in the history
  • Loading branch information
enudler committed Sep 23, 2020
1 parent 3f5d176 commit 93db22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/engine_http.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ HttpEngine.prototype.step = function step(requestSpec, ee, opts) {

const code = res.statusCode;
const path = res.req.method + ' ' + requestParams.requestEntryPath;
const requestName = requestParams.name || `${path} ${code}`;
const requestName = requestParams.name || path;
const timings = {};
if (res.request.timings) {
timings.wait = res.request.timings.socket || 0;
Expand Down

0 comments on commit 93db22f

Please sign in to comment.