Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add thirdparty data to tracestate type
  • Loading branch information
lobsterkatie committed Feb 24, 2021
commit 52f6d98aaabcb670127b580a171bc390e305a343
3 changes: 2 additions & 1 deletion packages/types/src/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ export enum TransactionSamplingMethod {
export interface TransactionMetadata {
transactionSampling?: { rate?: number; method?: string };

/** The sentry half of a transaction's tracestate header, used for dynamic sampling */
/** The two halves (sentry and third-party) of a transaction's tracestate header, used for dynamic sampling */
tracestate?: {
sentry?: string;
thirdparty?: string;
};
}