Worklist Responses

Hi,

I am trying to capture and log worklist queries coming into Orthanc. I have been able to use the Lua filter IncomingWorklistRequestFilter to log the incoming request.

I would like to log the number of responses. Is there a suitable hook to be able to log the number of responses? I know by enabling verbose plugin logs the number of matches is printed. I’m hoping there’s a hook that I can use so I don’t need to parse the log files to capture the number of matches.

Thanks all!

James

Hi @James

No, there is nothing built-in to hook on the worklist responses.

However, you may mimic the worklist plugin with a python plugin and therefore hook exactly where you need.

Hope this helps,

Alain

Thanks Alain, I’ll check that out. Looks like just the thing I need.
James