Hi, Is there a way to get multi-threaded workers to report metrics? Thanks! I.e. ``` import {spawn, Worker} from 'threads'; const worker = await spawn( new Worker('worker-code', params as any), {timeout: 40 * MINUTE_IN_MS}, ) as ModuleThread<any>; ```