[Coldbox 7] Can you Access Scheduled Task Stats in a Different Application on the Same Server

I know you can get the statistics of global scheduled tasks within a single application. However, I was curious if you could get the stats from a different application, assuming they were both on the same server?

For example, lets say you have a REST API application, that runs a nightly scheduled task. On the same server, you also have an API Dashboard application that gives statistics on the REST API. Would it be possible to grab and inspect the stats of the REST API scheduler from within the API Dashboard?

Of course, you could always make a REST endpoint to retrieve the stats of the scheduled task, which the Dashboard could query using an AJAX request. However, I was curious if there was a way to get the information from the server scope or some other creative means to look into adjacent applications.