JSDoc

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

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?: string[] }
logger?: string
measurements?: Measurements
message?: string
modules?: { [key: string]: string }
platform?: string
release?: string
request?: Request
sdk?: SdkInfo
sdkProcessingMetadata?: { [key: string]: any }
server_name?: string
spans?: Span[]
start_timestamp?: number
tags?: { [key: string]: Primitive }
threads?: { values: Thread[] }
timestamp?: number
transaction?: string
transaction_info?: { source: TransactionSource }
type?: EventType
user?: User