addExecutor method
Add the executor
to the list of executors and forwards its measurements
to this aggregate executor's stream of measurements.
Implementation
void addExecutor(Executor<dynamic> executor) {
_executors.add(executor);
_group.add(executor.measurements);
}