Interface AsukaObservabilityErrorRecord

interface AsukaObservabilityErrorRecord {
    context?: Record<string, unknown>;
    message: string;
    stack?: string;
    timestamp: string;
    type: "error" | "unhandledrejection" | "manual";
}

Properties

context?: Record<string, unknown>
message: string
stack?: string
timestamp: string
type: "error" | "unhandledrejection" | "manual"