Takaro - v0.6.0
    Preparing search index...

    Interface ErrorEvent

    An event to be sent to Sentry.

    interface ErrorEvent {
        breadcrumbs?: Breadcrumb[];
        contexts?: Contexts;
        debug_meta?: DebugMeta;
        dist?: string;
        environment?: string;
        event_id?: string;
        exception?: { values?: Exception[] };
        extra?: Extras;
        fingerprint?: string[];
        level?: SeverityLevel;
        logentry?: { message?: string; params?: unknown[] };
        logger?: string;
        measurements?: Measurements;
        message?: string;
        modules?: { [key: string]: string };
        platform?: string;
        release?: string;
        request?: RequestEventData;
        sdk?: SdkInfo;
        sdkProcessingMetadata?: SdkProcessingMetadata;
        server_name?: string;
        spans?: SpanJSON[];
        start_timestamp?: number;
        tags?: { [key: string]: Primitive };
        threads?: { values: Thread[] };
        timestamp?: number;
        transaction?: string;
        transaction_info?: { source: TransactionSource };
        type: undefined;
        user?: User;
    }

    Hierarchy (View Summary)

    Index

    Properties

    breadcrumbs?: Breadcrumb[]
    contexts?: Contexts
    debug_meta?: DebugMeta
    dist?: string
    environment?: string
    event_id?: string
    exception?: { values?: Exception[] }
    extra?: Extras
    fingerprint?: string[]
    logentry?: { message?: string; params?: unknown[] }
    logger?: string
    measurements?: Measurements
    message?: string
    modules?: { [key: string]: string }
    platform?: string
    release?: string
    sdk?: SdkInfo
    sdkProcessingMetadata?: SdkProcessingMetadata
    server_name?: string
    spans?: SpanJSON[]
    start_timestamp?: number
    tags?: { [key: string]: Primitive }
    threads?: { values: Thread[] }
    timestamp?: number
    transaction?: string
    transaction_info?: { source: TransactionSource }
    type: undefined
    user?: User