httpIntegration.js 373 B

123456789101112131415161718
  1. Object.defineProperty(exports, '__esModule', { value: true });
  2. const node = require('@sentry/node');
  3. /**
  4. * A custom HTTP integration where we always enable tracing.
  5. */
  6. class Http extends node.Integrations.Http {
  7. constructor(options) {
  8. super({
  9. ...options,
  10. tracing: true,
  11. });
  12. }
  13. }
  14. exports.Http = Http;
  15. //# sourceMappingURL=httpIntegration.js.map