public Increment(Pipe pipe, String counterName) {
setTails(new Each(pipe, new IncrementCounter(counterName)));
}
public Increment(Pipe pipe, String counterGroup, String counterName) {
setTails(new Each(pipe, new IncrementCounter(counterGroup, counterName)));
}