A list of the running probes in this study deployment executor.
Implementation
List<Probe> get probes {
List<Probe> probes = [];
for (var executor in executors) {
if (executor is TriggeredTaskExecutor) {
probes.addAll(executor.probes);
}
}
return probes;
}