I am trying to implement a bare-bones tracing setup for my project (android) by disabling everything and just using custom traces.
However I am still getting spans from db.sql.query and db.sql.room, what am I missing?
Note: There is no custom instrumentation done when I set up the db
I have added the following
// AndroidManifest.xml
<application>
...
<meta-data
android:name="io.sentry.traces.activity.enable"
android:value="false" />
</application>
// app/build.gradle
sentry {
...
tracingInstrumentation {
enabled.set(true)
features.set(EnumSet.allOf(InstrumentationFeature::class.java) - InstrumentationFeature.DATABASE)
logcat {
enabled.set(true)
minLevel.set(LogcatLevel.INFO)
}
}
}