Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which SDK are you using?
@sentry/bun
SDK Version
10.30.0
Framework Version
Sapphire 5.4.0
Link to Sentry event
N/A
Reproduction Example/SDK Setup
import * as Sentry from '@sentry/bun'
import { version } from '../../package.json'
Sentry.init({
dsn: '__DSN__',
environment: (Bun.env.NODE_ENV == "dev" ? "dev" : "production"),
enabled: (Bun.env.NODE_ENV != "dev"),
enableLogs: true,
debug: true,
sampleRate: 1.0,
tracesSampleRate: 0.5,
release: "bot@" + version,
integrations: [
Sentry.consoleLoggingIntegration(),
],
});
Steps to Reproduce
- Create a new bun project
- Initialize your project in JS like mentioned above.
- Deploy your application and look at the Sentry Dashboard. You will see no release health data.
Expected Result
Sentry showing release health data such as Crash free sessions and crash free users.
Actual Result
Sentry does not show any of these.
Additional Context
N/A
Priority
React with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding +1 or me too, to help us triage it.
Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which SDK are you using?
@sentry/bun
SDK Version
10.30.0
Framework Version
Sapphire 5.4.0
Link to Sentry event
N/A
Reproduction Example/SDK Setup
Steps to Reproduce
Expected Result
Sentry showing release health data such as Crash free sessions and crash free users.
Actual Result
Sentry does not show any of these.
Additional Context
N/A
Priority
React with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding
+1orme too, to help us triage it.