We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a50f2b0 commit 5803567Copy full SHA for 5803567
src/Sentry/Laravel/Tracing/Middleware.php
@@ -234,6 +234,9 @@ private function addBootDetailTimeSpans(Span $bootstrap): void
234
private function hydrateResponseData(SymfonyResponse $response): void
235
{
236
$this->transaction->setHttpStatus($response->getStatusCode());
237
+ $this->transaction->setData([
238
+ 'http.response.status_code' => $response->getStatusCode(),
239
+ ]);
240
}
241
242
public function finishTransaction(): void
0 commit comments