Where do i find the events for run-multiple runner

Hi Team,
I want to capture the events of run multiple runner and need to override the allure report when event.test.failed called upon.

I was able to do the below stuff on run command whereas unable to do on run-multiple and run-worker.

event.dispatcher.on(event.test.failed, function (test, err) {
console.log (‘inside event.test.failed’);
const errorMessage = ‘Script Error’;
err.message = errorMessage;
});

Please help me on finding the solution on this and also let me know if this one is feasible as an existing run-multiple command.