HttpClient

Captures errors on failed requests from Fetch and XHR and attaches request and response information.

Import name: Sentry.httpClientIntegration

This integration captures errors on failed requests from Fetch and XHR and attaches request and response information.

By default, error events don't contain header or cookie data. You can control this with the dataCollection option. Set dataCollection: { httpHeaders: true, cookies: true } in your root Sentry.init({}) config. The deprecated sendDefaultPii: true option also enables this behavior.

Copied
import * as Sentry from "___SDK_PACKAGE___";

Sentry.init({
  dsn: "___PUBLIC_DSN___",
  integrations: [Sentry.httpClientIntegration()]

  // This option is required for capturing headers and cookies.
  sendDefaultPii: true,
});

Type: (number|[number, number])[]

This array can contain tuples of [begin, end] (both inclusive), single status codes, or a combination of the two. Default: [[500, 599]]

Type: (string|RegExp)[]

An array of request targets that should be considered, for example ['http://example.com/api/test'] would interpret any request to this URL as a failure. This array can contain Regexes, strings, or a combination of the two. Default: [/.*/]

Controls header and cookie collection for this integration. Use dataCollection: { httpHeaders: true, cookies: true } in Sentry.init to capture headers and cookies on failed requests. See the dataCollection option for the full set of controls including allow/deny lists.

The deprecated sendDefaultPii: true option also enables this behavior.

Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").