You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now, we'll ignore 404 status codes by default only. While other status codes can make sense too, these could be tricky because we have to drop the spans tail-based, so propagation etc. may already have happened. This is unlikely with 404 but could be relevant with others. We can always think about extending the defaults if we want later.
This can be configured like this:
```js
httpIntegration({
dropSpansForIncomingRequestStatusCodes: [404, [300,399]]
})
```
It defaults to `[404]`.
Closes#16193
We want to filter http server spans with a 4xx (e.g. 404 or 401) status code by default, but allow to opt-out of this behavior.
This can probably be an option to the
httpIntegration
that defaults to404
but allows to filter other status codes, if wanted.The text was updated successfully, but these errors were encountered: