12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const core = require('@sentry/core');
- const INTEGRATION_NAME = 'Transaction';
- const transactionIntegration = (() => {
- return {
- name: INTEGRATION_NAME,
- // TODO v8: Remove this
- setupOnce() {}, // eslint-disable-line @typescript-eslint/no-empty-function
- processEvent(event) {
- const frames = _getFramesFromEvent(event);
- // use for loop so we don't have to reverse whole frames array
- for (let i = frames.length - 1; i >= 0; i--) {
- const frame = frames[i];
- if (frame.in_app === true) {
- event.transaction = _getTransaction(frame);
- break;
- }
- }
- return event;
- },
- };
- }) ;
- /**
- * Add node transaction to the event.
- * @deprecated This integration will be removed in v8.
- */
- // eslint-disable-next-line deprecation/deprecation
- const Transaction = core.convertIntegrationFnToClass(INTEGRATION_NAME, transactionIntegration)
- ;
- function _getFramesFromEvent(event) {
- const exception = event.exception && event.exception.values && event.exception.values[0];
- return (exception && exception.stacktrace && exception.stacktrace.frames) || [];
- }
- function _getTransaction(frame) {
- return frame.module || frame.function ? `${frame.module || '?'}/${frame.function || '?'}` : '<unknown>';
- }
- exports.Transaction = Transaction;
- //# sourceMappingURL=transaction.js.map
|