Skip to content

v0.1.3

Compare
Choose a tag to compare
@kamilogorek kamilogorek released this 11 Jul 15:35
· 576 commits to master since this release
  • feat: Move frames context reading into contextifyFramesIntegration (#28)

NOTE:
In case of any performance isues due to source contexts IO, you can let us know and turn off the integration in the meantime with:

sentry.Init(sentry.ClientOptions{
	Integrations: func(integrations []sentry.Integration) []sentry.Integration {
		var filteredIntegrations []sentry.Integration
		for _, integration := range integrations {
			if integration.Name() == "ContextifyFrames" {
				continue
			}
			filteredIntegrations = append(filteredIntegrations, integration)
		}
		return filteredIntegrations
	},
})