httpIntegration.js 307 B

12345678910111213141516
  1. import { Integrations } from '@sentry/node';
  2. /**
  3. * A custom HTTP integration where we always enable tracing.
  4. */
  5. class Http extends Integrations.Http {
  6. constructor(options) {
  7. super({
  8. ...options,
  9. tracing: true,
  10. });
  11. }
  12. }
  13. export { Http };
  14. //# sourceMappingURL=httpIntegration.js.map