diff --git a/src/extensions/replay/config.ts b/src/extensions/replay/config.ts index 687059913..cbc3600fb 100644 --- a/src/extensions/replay/config.ts +++ b/src/extensions/replay/config.ts @@ -68,7 +68,7 @@ const removeAuthorizationHeader = (data: CapturedNetworkRequest): CapturedNetwor return data } -const POSTHOG_PATHS_TO_IGNORE = ['/s/', '/e/', '/i/vo/e/'] +const POSTHOG_PATHS_TO_IGNORE = ['/s/', '/e/', '/i/v0/e/', '/i/vo/e/', '/decide/', '/static/recorder-v2.js'] // want to ignore posthog paths when capturing requests, or we can get trapped in a loop // because calls to PostHog would be reported using a call to PostHog which would be reported.... const ignorePostHogPaths = (data: CapturedNetworkRequest): CapturedNetworkRequest | undefined => {