Skip to content

Commit a175485

Browse files
chore(event): Add threads to Event (#6516)
1 parent 81c3a38 commit a175485

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/types/src/event.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { CaptureContext } from './scope';
1111
import { SdkInfo } from './sdkinfo';
1212
import { Severity, SeverityLevel } from './severity';
1313
import { Span } from './span';
14+
import { Thread } from './thread';
1415
import { TransactionNameChange, TransactionSource } from './transaction';
1516
import { User } from './user';
1617

@@ -52,6 +53,9 @@ export interface Event {
5253
changes: TransactionNameChange[];
5354
propagations: number;
5455
};
56+
threads?: {
57+
values: Thread[];
58+
};
5559
}
5660

5761
/** JSDoc */

0 commit comments

Comments
 (0)