Replies: 1 comment 4 replies
-
| It depends a bit on what you want to achieve. To disable the pg instrumentation you can filter the default integrations: Sentry.init({
  integrations(integrations) {
    return integrations.filter(integration => integration.name !== 'Postgres');
  },
});Although, using the instrumentation should not add too much overhead. | 
Beta Was this translation helpful? Give feedback.
                  
                    4 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
I am suspecting that v8 instrumentation is causing pretty major performance hit when querying PostgreSQL, i.e. I am seeing a major difference when I load Sentry vs I do not load.
I want to keep Sentry but without any of the OTEL instrumentations. How do I do that?
Beta Was this translation helpful? Give feedback.
All reactions