12345678910111213141516 |
- import { Integrations } from '@sentry/node';
- /**
- * A custom HTTP integration where we always enable tracing.
- */
- class Http extends Integrations.Http {
- constructor(options) {
- super({
- ...options,
- tracing: true,
- });
- }
- }
- export { Http };
- //# sourceMappingURL=httpIntegration.js.map
|