Problem Statement
Solution Brainstorm
Related code:
|
public setHttpStatus(httpStatus: number): this { |
|
this.setTag('http.status_code', String(httpStatus)); |
|
const spanStatus = spanStatusfromHttpCode(httpStatus); |
|
if (spanStatus !== 'unknown_error') { |
|
this.setStatus(spanStatus); |
|
} |
|
return this; |
|
} |
If the http.status_code tag is removed at the same time this could be a breaking change.
Problem Statement
http.response.status_codefor Metrics & Alerts team-sdks#9Solution Brainstorm
Related code:
sentry-javascript/packages/core/src/tracing/span.ts
Lines 228 to 235 in f361c81
If the
http.status_codetag is removed at the same time this could be abreaking change.