tchannel-benchmark/src/main/java/com/uber/tchannel/benchmarks/LargePayloadBenchmark.java [151:187]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .build();
        }
    }

    @AuxCounters
    @State(Scope.Thread)
    public static class AdditionalCounters {
        private final AtomicInteger actualQPS = new AtomicInteger(0);
        private final AtomicInteger errorQPS = new AtomicInteger(0);
        private final AtomicInteger timeoutQPS = new AtomicInteger(0);
        private final AtomicInteger busyQPS = new AtomicInteger(0);
        private final AtomicInteger networkQPS = new AtomicInteger(0);

        @Setup(Level.Iteration)
        public void clean() {
            errorQPS.set(0);
            actualQPS.set(0);
            timeoutQPS.set(0);
            busyQPS.set(0);
            networkQPS.set(0);
        }

        public int actualQPS() {
            return actualQPS.get();
        }

        public int errorQPS() {
            return errorQPS.get();
        }
        public int timeoutQPS() {
            return timeoutQPS.get();
        }
        public int busyQPS() {
            return busyQPS.get();
        }
        public int networkQPS() {
            return networkQPS.get();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tchannel-benchmark/src/main/java/com/uber/tchannel/benchmarks/PingPongServerBenchmark.java [164:200]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .build();
        }
    }

    @AuxCounters
    @State(Scope.Thread)
    public static class AdditionalCounters {
        private final AtomicInteger actualQPS = new AtomicInteger(0);
        private final AtomicInteger errorQPS = new AtomicInteger(0);
        private final AtomicInteger timeoutQPS = new AtomicInteger(0);
        private final AtomicInteger busyQPS = new AtomicInteger(0);
        private final AtomicInteger networkQPS = new AtomicInteger(0);

        @Setup(Level.Iteration)
        public void clean() {
            errorQPS.set(0);
            actualQPS.set(0);
            timeoutQPS.set(0);
            busyQPS.set(0);
            networkQPS.set(0);
        }

        public int actualQPS() {
            return actualQPS.get();
        }

        public int errorQPS() {
            return errorQPS.get();
        }
        public int timeoutQPS() {
            return timeoutQPS.get();
        }
        public int busyQPS() {
            return busyQPS.get();
        }
        public int networkQPS() {
            return networkQPS.get();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



