Interface SentryConfig

SentryConfig defines the configuration needed to initialize Sentry error tracking for a report.

interface SentryConfig {
    dsn: string;
    environment?: string;
    release?: string;
}

Properties

dsn: string
environment?: string
release?: string

The release version string for Sentry Release Health (session tracking). Without this, sessions are sent but cannot be attributed to a release, so crash-free rate and healthy session metrics will not appear in Sentry. Format: reportName@version e.g. landscape-report@1.2.3

Generated using TypeDoc