sentry-electron icon indicating copy to clipboard operation
sentry-electron copied to clipboard

Try the `eventLoopBlockIntegration` in an Electron utility process

Open timfish opened this issue 6 months ago • 1 comments

Not sure if this will work but worth a try.

If it just works, the only minor issue might how the threads are named by default, ie. threadId:

/**
 * Registers the current thread with the native module.
 *
 * @param threadName The name of the thread to register. Defaults to the current thread ID.
 */
export function registerThread(threadName: string = String(threadId)): void {
  native.registerThread(threadName);
}

timfish avatar Jul 17 '25 16:07 timfish