aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhuaxing <huaxing.jin@est.tech>2020-05-20 15:21:53 +0800
committerPamela Dragosh <pdragosh@research.att.com>2020-05-20 11:41:05 +0000
commit5c985606472fce83a68291ca2167b54cb6bcdc50 (patch)
treebb48f28e15f09ab09cca81a7d9833f0eae157dfb
parent8b34cc5b0820415feedff8c33257655cd9769dcf (diff)
Update apex-pdp stability/performance testing document
Issue-ID: POLICY-2457 Signed-off-by: huaxing <huaxing.jin@est.tech> Change-Id: I24d20fe0ae5d49821dc854d8f734ba960b25ec21 (cherry picked from commit d51d9065813af4ef4f16ce7373dba9997969d610)
-rw-r--r--docs/development/devtools/apex-s3p.rst173
-rw-r--r--docs/development/devtools/images/stability-jmeter.PNGbin0 -> 57980 bytes
-rw-r--r--docs/development/devtools/images/stability-visualvm1.PNGbin0 -> 26223 bytes
-rw-r--r--docs/development/devtools/images/stability-visualvm2.PNGbin0 -> 32355 bytes
-rw-r--r--docs/development/devtools/json/frankfurt-apex-perf.json129394
-rw-r--r--docs/development/devtools/zip/result.tarbin0 -> 1598929 bytes
6 files changed, 129450 insertions, 117 deletions
diff --git a/docs/development/devtools/apex-s3p.rst b/docs/development/devtools/apex-s3p.rst
index 6bc006a0..1220621a 100644
--- a/docs/development/devtools/apex-s3p.rst
+++ b/docs/development/devtools/apex-s3p.rst
@@ -33,7 +33,7 @@ Version: Mitaka
**apex-pdp VM details**
-OS:Ubuntu 16.04.5 LTS
+OS:Ubuntu 18.04 LTS
CPU: 4 core
@@ -41,13 +41,13 @@ RAM: 4 GB
HardDisk: 40 GB
-Docker Version: 18.06.1-ce, build e68fc7a
+Docker Version: 19.03.8, build afacb8b7f0
-Java: openjdk version "1.8.0_181"
+Java: openjdk version "11.0.7"
**JMeter VM details**
-OS: Ubuntu 16.04.3 LTS
+OS: Ubuntu 18.04 LTS
CPU: 4 core
@@ -55,9 +55,9 @@ RAM: 4 GB
HardDisk: 40 GB
-Java: openjdk version "1.8.0_181"
+Java: openjdk version "11.0.7"
-JMeter: 5.1.1
+JMeter: 5.2.1
Install JMeter in virtual machine
---------------------------------
@@ -65,17 +65,17 @@ Install JMeter in virtual machine
Make the etc/hosts entries
.. code-block:: bash
-
+
echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts
-
+
Make the DNS entries
.. code-block:: bash
echo "nameserver <PrimaryDNSIPIP>" >> sudo /etc/resolvconf/resolv.conf.d/head
-
+
echo "nameserver <SecondaryDNSIP>" >> sudo /etc/resolvconf/resolv.conf.d/head
-
+
resolvconf -u
Update the ubuntu software installer
@@ -83,13 +83,13 @@ Update the ubuntu software installer
.. code-block:: bash
apt-get update
-
+
Check & Install Java
.. code-block:: bash
- apt-get install -y openjdk-8-jdk
-
+ apt-get install -y openjdk-11-jdk
+
java -version
Download & install JMeter
@@ -97,15 +97,15 @@ Download & install JMeter
.. code-block:: bash
mkdir jMeter
-
-
+
+
cd jMeter
-
-
- wget http://mirrors.whoishostingthis.com/apache//jmeter/binaries/apache-jmeter-5.1.1.zip
-
-
- unzip apache-jmeter-5.1.1.zip
+
+
+ wget http://mirrors.whoishostingthis.com/apache//jmeter/binaries/apache-jmeter-5.2.1.zip
+
+
+ unzip apache-jmeter-5.2.1.zip
Install apex-pdp in virtual machine
-----------------------------------
@@ -119,7 +119,7 @@ We will be running apex-pdp as docker container. So we need to first install doc
.. code-block:: bash
echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts
-
+
2. Make the DNS entries
.. code-block:: bash
@@ -138,7 +138,7 @@ We will be running apex-pdp as docker container. So we need to first install doc
.. code-block:: bash
- apt-get install -y openjdk-8-jdk
+ apt-get install -y openjdk-11-jdk
java -version
Ensure that the Java version that is executing is OpenJDK version 8
@@ -148,24 +148,20 @@ Ensure that the Java version that is executing is OpenJDK version 8
.. code-block:: bash
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- apt-get update
- apt-cache policy docker-ce
- apt-get install -y docker-ce
- systemctl status docker
- docker ps
-
-6. Change the permissions of the Docker socket file
+ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
+ sudo apt-get update
+ sudo apt-cache policy docker-ce
+ sudo apt-get install -y docker-ce
+ sudo systemctl enable docker
+ sudo systemctl start docker
+ sudo usermod -aG docker <your user id>
-.. code-block:: bash
-
- chmod 777 /var/run/docker.sock
+6. Logout and re-login to ensure the ``usermod`` command takes effective
7. Check the status of the Docker service and ensure it is running correctly
.. code-block:: bash
- service docker status
docker ps
**Install apex-pdp**
@@ -174,7 +170,7 @@ Run the below command to create the container hosting apex-pdp by pulling the im
.. code-block:: bash
- docker run -d --name apex -p 12561:12561 -p 23324:23324 -it nexus3.onap.org:10001/onap/policy-apex-pdp:2.1.0-latest /bin/bash -c "/opt/app/policy/apex-pdp/bin/apexApps.sh jmx-test -c /opt/app/policy/apex-pdp/examples/config/SampleDomain/RESTServerJsonEvent.json"
+ docker run -d --name apex -p 12561:12561 -p 23324:23324 -p 9911:9911 nexus3.onap.org:10001/onap/policy-apex-pdp:2.3.1 /bin/bash -c "/opt/app/policy/apex-pdp/bin/apexApps.sh jmx-test -c /opt/app/policy/apex-pdp/examples/config/SampleDomain/RESTServerJsonEvent.json"
docker ps
Note: If you observe that requests from JMeter client is failing due to timeout, then modify the "RESTServerJsonEvent.json" mentioned in the above command and increase the "synchronousTimeout" property as per needed.
@@ -190,53 +186,6 @@ Install visualVM
sudo apt-get install visualvm
-Login to docker container (using root)
-
-.. code-block:: bash
-
- docker exec -u 0 -it apex /bin/bash
-
-Run few commands to configure permissions
-
-.. code-block:: bash
-
- cd /usr/lib/jvm/java-1.8-openjdk/bin/
-
- touch visualvm.policy
-
- vi visualvm.policy
-
- Add the following in visualvm.policy
-
-
- grant codebase "file:/usr/lib/jvm/java-1.8-openjdk/lib/tools.jar" {
- permission java.security.AllPermission;
- };
-
-
- chmod 777 visualvm.policy
-
-
- exit
-
-Login to docker container (using normal user)
-
-.. code-block:: bash
-
- docker exec -it apex /bin/bash
-
-Run following commands to start jstatd using port 1111
-
-.. code-block:: bash
-
- cd /usr/lib/jvm/java-1.8-openjdk/bin/
-
-
- ./jstatd -p 1111 -J-Djava.security.policy=visualvm.policy &
-
-
- exit
-
Login to VM using graphical interface in separate terminal window.
.. code-block:: bash
@@ -248,26 +197,16 @@ Open visualVM
.. code-block:: bash
visualvm &
-
-Connect to jstatd & remote apex-pdp JVM
-
-1. Right click on "Remote" in the left panel of the screen and select "Add Remote Host..."
-
-2. Enter the IP address of apex-pdp docker container.
-
-.. code-block:: bash
-
- docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id
-3. Right click on IP address, select "Add jstatd Connection..."
-4. In "jstatd Connections" tab, enter port 1111 and click OK.
-5. Right click on IP address, select "Add JMX Connection..."
-6. Enter the apex-pdp docker container IP Address (from step 2) <IP address>:9911 ( for example - 172.17.0.2:9911) and click OK.
-7. Double click on the newly added nodes under "Remote" to start monitoring CPU, Memory & GC.
+Connect to apex-pdp JVM's JMX agent
+1. Right click on "Local" in the left panel of the screen and select "Add Local JMX Connection..."
+2. Enter localhost:9911 for "Connection", and click OK
+3. Double click on the newly added nodes under "Local" to start monitoring CPU, Memory & GC.
Sample Screenshot of visualVM
-.. image:: images/apex-s3p-vvm-sample.jpg
+.. image:: images/stability-visualvm1.PNG
+.. image:: images/stability-visualvm2.PNG
Test Plan
---------
@@ -316,24 +255,24 @@ After the test stop, we can generate a HTML test report via command
.. code-block:: bash
- ~/jMeter/apache-jmeter-5.1.1/bin/jmeter -g stability.log -o ./result/
+ ~/jMeter/apache-jmeter-5.2.1/bin/jmeter -g stability.log -o ./result/
============================================== =================================================== ================================ ============= ============
**Number of Client Threads running in JMeter** **Number of Server Threads running in Apex engine** **Total number of input events** **Success %** **Error %**
============================================== =================================================== ================================ ============= ============
-20 4 6394602 99.999971% 0.0029%
+20 4 8594220 100% 0%
============================================== =================================================== ================================ ============= ============
-:download:`result.zip <zip/result.zip>`
-:download:`onap.zip <zip/onap.zip>`
+.. image:: images/stability-jmeter.PNG
+:download:`result.zip <zip/result.tar>`
Setting up Performance Tests in APEX
++++++++++++++++++++++++++++++++++++
-The apex-pdp has built in support for performance testing. A special performance testing REST server is available in the code base for performance testing.
-It is in the module `performance-benchmark-test <https://github.com/onap/policy-apex-pdp/tree/master/testsuites/performance/performance-benchmark-test>`_.
-To execute a benchmark test, you start the REST server, and then configure and run APEX against the server.
+The apex-pdp has built in support for performance testing. A special performance testing REST server is available in the code base for performance testing.
+It is in the module `performance-benchmark-test <https://github.com/onap/policy-apex-pdp/tree/master/testsuites/performance/performance-benchmark-test>`_.
+To execute a benchmark test, you start the REST server, and then configure and run APEX against the server.
There are example configurations for running tests in the `resources of this module <https://github.com/onap/policy-apex-pdp/tree/master/testsuites/performance/performance-benchmark-test/src/main/resources/examples/benchmark>`_.
In order to run the test for 72 hours, set the batch count in the `EventGeneratorConfig.json <https://github.com/onap/policy-apex-pdp/blob/master/testsuites/performance/performance-benchmark-test/src/main/resources/examples/benchmark/EventGeneratorConfig.json>`_ file to zero, which causes the REST server to generate batches forever.
@@ -356,48 +295,48 @@ Here is an example of how to do this:
mkdir apex
cd apex
tar zxvf ~/git/onap/policy/apex-pdp/packages/apex-pdp-package-full/target/*gz
-
+
4. Run APEX with a configuration that runs against the benchmark REST server, select the configuration that is appropriate for the number of threads for the number of cores on the host on which APEX is running. For example on a 32 core machine, select the "32" configuration, on an 8 core machine, select the "08" configuration.
.. code-block:: bash
bin/apexApps.sh engine -c ~/git/onap/policy/apex-pdp/testsuites/performance/performance-benchmark-test/src/main/resources/examples/benchmark/Javascript64.json
-
+
5. To get the test results, Issue the following command using CURL or from a browser(also can store the result into a file by setting outfile in the `EventGeneratorConfig.json <https://github.com/onap/policy-apex-pdp/blob/master/testsuites/performance/performance-benchmark-test/src/main/resources/examples/benchmark/EventGeneratorConfig.json>`_ file, statistics would be written into this file after event generator terminated)
-
+
.. code-block:: bash
curl http://localhost:32801/EventGenerator/Stats
-
+
The results are similar to those below:
-
+
:download:`Example APEX performance metrics <json/example-apex-perf.json>`
-Performance Test Result
+Performance Test Result Frankfurt
-----------------------
**Summary**
-Performance test was triggered for 2 hours on a 4 core, 4GB RAM virtual machine.
+Performance test was triggered for 2 hours on a 4 core, 4GB RAM virtual machine.
**Test Statistics**
-:download:`Attached result log <json/result.json>`
+:download:`Attached result log <json/frankfurt-apex-perf.json>`
=============== ============= ================= ============== ===================== ================== ============= ===========
**batchNumber** **batchSize** **eventsNotSent** **eventsSent** **eventsNotReceived** **eventsReceived** **Success %** **Error %**
=============== ============= ================= ============== ===================== ================== ============= ===========
-3650 182500 0 182500 0 182500 100 % 0 %
+-1 431250 0 431250 0 431250 100 % 0 %
=============== ============= ================= ============== ===================== ================== ============= ===========
======================== ========================= ========================
**averageRoundTripNano** **shortestRoundTripNano** **longestRoundTripNano**
======================== ========================= ========================
-40024623 7439158 5161374486
+148965724 20169907 429339393
======================== ========================= ========================
============================ ============================= ============================
**averageApexExecutionNano** **shortestApexExecutionNano** **longestApexExecutionNano**
============================ ============================= ============================
-1335622 513650 5104326434
+62451899 3901010 354528579
============================ ============================= ============================
diff --git a/docs/development/devtools/images/stability-jmeter.PNG b/docs/development/devtools/images/stability-jmeter.PNG
new file mode 100644
index 00000000..8643eda1
--- /dev/null
+++ b/docs/development/devtools/images/stability-jmeter.PNG
Binary files differ
diff --git a/docs/development/devtools/images/stability-visualvm1.PNG b/docs/development/devtools/images/stability-visualvm1.PNG
new file mode 100644
index 00000000..88dc6f7d
--- /dev/null
+++ b/docs/development/devtools/images/stability-visualvm1.PNG
Binary files differ
diff --git a/docs/development/devtools/images/stability-visualvm2.PNG b/docs/development/devtools/images/stability-visualvm2.PNG
new file mode 100644
index 00000000..47527f48
--- /dev/null
+++ b/docs/development/devtools/images/stability-visualvm2.PNG
Binary files differ
diff --git a/docs/development/devtools/json/frankfurt-apex-perf.json b/docs/development/devtools/json/frankfurt-apex-perf.json
new file mode 100644
index 00000000..5d013ba1
--- /dev/null
+++ b/docs/development/devtools/json/frankfurt-apex-perf.json
@@ -0,0 +1,129394 @@
+{
+ "totalStats": {
+ "batchNumber": -1,
+ "batchSize": 431250,
+ "apexClient": "TOTAL",
+ "eventsNotSent": 0,
+ "eventsSent": 431250,
+ "eventsNotReceived": 0,
+ "eventsReceived": 431250,
+ "averageRoundTripNano": 148965724,
+ "shortestRoundTripNano": 20169907,
+ "longestRoundTripNano": 429339393,
+ "averageApexExecutionNano": 62451899,
+ "shortestApexExecutionNano": 3901010,
+ "longestApexExecutionNano": 354528579
+ },
+ "batchStatsList": [
+ {
+ "batchNumber": 0,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 281635273,
+ "shortestRoundTripNano": 118277075,
+ "longestRoundTripNano": 377299474,
+ "averageApexExecutionNano": 65550237,
+ "shortestApexExecutionNano": 6318825,
+ "longestApexExecutionNano": 131911378
+ },
+ {
+ "batchNumber": 1,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 207003291,
+ "shortestRoundTripNano": 87967509,
+ "longestRoundTripNano": 269182068,
+ "averageApexExecutionNano": 65135679,
+ "shortestApexExecutionNano": 7064624,
+ "longestApexExecutionNano": 122162674
+ },
+ {
+ "batchNumber": 2,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 200971725,
+ "shortestRoundTripNano": 64597925,
+ "longestRoundTripNano": 270013683,
+ "averageApexExecutionNano": 66887779,
+ "shortestApexExecutionNano": 4967458,
+ "longestApexExecutionNano": 136722623
+ },
+ {
+ "batchNumber": 3,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 213184629,
+ "shortestRoundTripNano": 84138123,
+ "longestRoundTripNano": 270285789,
+ "averageApexExecutionNano": 59036455,
+ "shortestApexExecutionNano": 8628078,
+ "longestApexExecutionNano": 127036454
+ },
+ {
+ "batchNumber": 4,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185091051,
+ "shortestRoundTripNano": 43294602,
+ "longestRoundTripNano": 244023990,
+ "averageApexExecutionNano": 64780537,
+ "shortestApexExecutionNano": 20057550,
+ "longestApexExecutionNano": 123061516
+ },
+ {
+ "batchNumber": 5,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 204275086,
+ "shortestRoundTripNano": 66751891,
+ "longestRoundTripNano": 258040377,
+ "averageApexExecutionNano": 65959684,
+ "shortestApexExecutionNano": 6442787,
+ "longestApexExecutionNano": 124418147
+ },
+ {
+ "batchNumber": 6,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171236257,
+ "shortestRoundTripNano": 70748693,
+ "longestRoundTripNano": 228117173,
+ "averageApexExecutionNano": 68835097,
+ "shortestApexExecutionNano": 6282836,
+ "longestApexExecutionNano": 115076573
+ },
+ {
+ "batchNumber": 7,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185392657,
+ "shortestRoundTripNano": 72804989,
+ "longestRoundTripNano": 238590343,
+ "averageApexExecutionNano": 63878854,
+ "shortestApexExecutionNano": 8229191,
+ "longestApexExecutionNano": 137760102
+ },
+ {
+ "batchNumber": 8,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 210391235,
+ "shortestRoundTripNano": 69880804,
+ "longestRoundTripNano": 257049556,
+ "averageApexExecutionNano": 95038433,
+ "shortestApexExecutionNano": 13198526,
+ "longestApexExecutionNano": 159859852
+ },
+ {
+ "batchNumber": 9,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187166890,
+ "shortestRoundTripNano": 78139436,
+ "longestRoundTripNano": 239738797,
+ "averageApexExecutionNano": 60945533,
+ "shortestApexExecutionNano": 7950342,
+ "longestApexExecutionNano": 125640187
+ },
+ {
+ "batchNumber": 10,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196050869,
+ "shortestRoundTripNano": 65900075,
+ "longestRoundTripNano": 254249998,
+ "averageApexExecutionNano": 70618687,
+ "shortestApexExecutionNano": 8452579,
+ "longestApexExecutionNano": 142958153
+ },
+ {
+ "batchNumber": 11,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164642338,
+ "shortestRoundTripNano": 58825454,
+ "longestRoundTripNano": 212781427,
+ "averageApexExecutionNano": 45826357,
+ "shortestApexExecutionNano": 10324865,
+ "longestApexExecutionNano": 112610330
+ },
+ {
+ "batchNumber": 12,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176918941,
+ "shortestRoundTripNano": 57079504,
+ "longestRoundTripNano": 223423055,
+ "averageApexExecutionNano": 59066172,
+ "shortestApexExecutionNano": 8375836,
+ "longestApexExecutionNano": 118047767
+ },
+ {
+ "batchNumber": 13,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151709694,
+ "shortestRoundTripNano": 63649000,
+ "longestRoundTripNano": 192139394,
+ "averageApexExecutionNano": 55037223,
+ "shortestApexExecutionNano": 10718628,
+ "longestApexExecutionNano": 109773476
+ },
+ {
+ "batchNumber": 14,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166209465,
+ "shortestRoundTripNano": 62645483,
+ "longestRoundTripNano": 213848332,
+ "averageApexExecutionNano": 57121399,
+ "shortestApexExecutionNano": 7029377,
+ "longestApexExecutionNano": 123389253
+ },
+ {
+ "batchNumber": 15,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159552137,
+ "shortestRoundTripNano": 63248860,
+ "longestRoundTripNano": 196202449,
+ "averageApexExecutionNano": 58716844,
+ "shortestApexExecutionNano": 12732935,
+ "longestApexExecutionNano": 104478351
+ },
+ {
+ "batchNumber": 16,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184981926,
+ "shortestRoundTripNano": 59918489,
+ "longestRoundTripNano": 239313250,
+ "averageApexExecutionNano": 78808674,
+ "shortestApexExecutionNano": 26695510,
+ "longestApexExecutionNano": 130997372
+ },
+ {
+ "batchNumber": 17,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181130495,
+ "shortestRoundTripNano": 81736043,
+ "longestRoundTripNano": 225556454,
+ "averageApexExecutionNano": 79803218,
+ "shortestApexExecutionNano": 10605110,
+ "longestApexExecutionNano": 133600659
+ },
+ {
+ "batchNumber": 18,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158363899,
+ "shortestRoundTripNano": 58396223,
+ "longestRoundTripNano": 198775896,
+ "averageApexExecutionNano": 58144421,
+ "shortestApexExecutionNano": 18435922,
+ "longestApexExecutionNano": 114318745
+ },
+ {
+ "batchNumber": 19,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154743818,
+ "shortestRoundTripNano": 52865382,
+ "longestRoundTripNano": 198205836,
+ "averageApexExecutionNano": 52944581,
+ "shortestApexExecutionNano": 9413382,
+ "longestApexExecutionNano": 112198256
+ },
+ {
+ "batchNumber": 20,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180617955,
+ "shortestRoundTripNano": 65433904,
+ "longestRoundTripNano": 221217140,
+ "averageApexExecutionNano": 58608613,
+ "shortestApexExecutionNano": 12785520,
+ "longestApexExecutionNano": 133431675
+ },
+ {
+ "batchNumber": 21,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162709362,
+ "shortestRoundTripNano": 52439935,
+ "longestRoundTripNano": 202261239,
+ "averageApexExecutionNano": 52195305,
+ "shortestApexExecutionNano": 8845248,
+ "longestApexExecutionNano": 136009429
+ },
+ {
+ "batchNumber": 22,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159751042,
+ "shortestRoundTripNano": 60563432,
+ "longestRoundTripNano": 199921726,
+ "averageApexExecutionNano": 66867446,
+ "shortestApexExecutionNano": 10855065,
+ "longestApexExecutionNano": 124614438
+ },
+ {
+ "batchNumber": 23,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171808063,
+ "shortestRoundTripNano": 76066281,
+ "longestRoundTripNano": 211345753,
+ "averageApexExecutionNano": 52661608,
+ "shortestApexExecutionNano": 7736657,
+ "longestApexExecutionNano": 108014640
+ },
+ {
+ "batchNumber": 24,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 206469716,
+ "shortestRoundTripNano": 107699599,
+ "longestRoundTripNano": 257861281,
+ "averageApexExecutionNano": 93919993,
+ "shortestApexExecutionNano": 9250102,
+ "longestApexExecutionNano": 170406179
+ },
+ {
+ "batchNumber": 25,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168185372,
+ "shortestRoundTripNano": 80152647,
+ "longestRoundTripNano": 218610301,
+ "averageApexExecutionNano": 54816758,
+ "shortestApexExecutionNano": 9842895,
+ "longestApexExecutionNano": 134082081
+ },
+ {
+ "batchNumber": 26,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150746398,
+ "shortestRoundTripNano": 64415510,
+ "longestRoundTripNano": 187188828,
+ "averageApexExecutionNano": 62558962,
+ "shortestApexExecutionNano": 10403841,
+ "longestApexExecutionNano": 108523068
+ },
+ {
+ "batchNumber": 27,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173067866,
+ "shortestRoundTripNano": 69452805,
+ "longestRoundTripNano": 219861590,
+ "averageApexExecutionNano": 92394480,
+ "shortestApexExecutionNano": 23553732,
+ "longestApexExecutionNano": 154946194
+ },
+ {
+ "batchNumber": 28,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151425459,
+ "shortestRoundTripNano": 80042550,
+ "longestRoundTripNano": 191195807,
+ "averageApexExecutionNano": 55470463,
+ "shortestApexExecutionNano": 9778841,
+ "longestApexExecutionNano": 113351501
+ },
+ {
+ "batchNumber": 29,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164701434,
+ "shortestRoundTripNano": 51833427,
+ "longestRoundTripNano": 203915166,
+ "averageApexExecutionNano": 59585627,
+ "shortestApexExecutionNano": 13280599,
+ "longestApexExecutionNano": 116914105
+ },
+ {
+ "batchNumber": 30,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149687511,
+ "shortestRoundTripNano": 75413069,
+ "longestRoundTripNano": 195566342,
+ "averageApexExecutionNano": 62491381,
+ "shortestApexExecutionNano": 8242783,
+ "longestApexExecutionNano": 123895465
+ },
+ {
+ "batchNumber": 31,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170176312,
+ "shortestRoundTripNano": 61033223,
+ "longestRoundTripNano": 209111302,
+ "averageApexExecutionNano": 79567232,
+ "shortestApexExecutionNano": 8060306,
+ "longestApexExecutionNano": 152890290
+ },
+ {
+ "batchNumber": 32,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157512449,
+ "shortestRoundTripNano": 77775873,
+ "longestRoundTripNano": 189270179,
+ "averageApexExecutionNano": 54652336,
+ "shortestApexExecutionNano": 5718698,
+ "longestApexExecutionNano": 118920683
+ },
+ {
+ "batchNumber": 33,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147507721,
+ "shortestRoundTripNano": 64763940,
+ "longestRoundTripNano": 174023906,
+ "averageApexExecutionNano": 58431702,
+ "shortestApexExecutionNano": 5917253,
+ "longestApexExecutionNano": 115706971
+ },
+ {
+ "batchNumber": 34,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157046814,
+ "shortestRoundTripNano": 82801587,
+ "longestRoundTripNano": 191181843,
+ "averageApexExecutionNano": 68489003,
+ "shortestApexExecutionNano": 9405976,
+ "longestApexExecutionNano": 110328971
+ },
+ {
+ "batchNumber": 35,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164053905,
+ "shortestRoundTripNano": 65476525,
+ "longestRoundTripNano": 201641102,
+ "averageApexExecutionNano": 49221524,
+ "shortestApexExecutionNano": 7092931,
+ "longestApexExecutionNano": 134360080
+ },
+ {
+ "batchNumber": 36,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 297530699,
+ "shortestRoundTripNano": 90397143,
+ "longestRoundTripNano": 337286130,
+ "averageApexExecutionNano": 142580536,
+ "shortestApexExecutionNano": 10299693,
+ "longestApexExecutionNano": 260765669
+ },
+ {
+ "batchNumber": 37,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170705237,
+ "shortestRoundTripNano": 86193587,
+ "longestRoundTripNano": 224014709,
+ "averageApexExecutionNano": 67862440,
+ "shortestApexExecutionNano": 9333115,
+ "longestApexExecutionNano": 131283441
+ },
+ {
+ "batchNumber": 38,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176857497,
+ "shortestRoundTripNano": 102039007,
+ "longestRoundTripNano": 216121005,
+ "averageApexExecutionNano": 61517776,
+ "shortestApexExecutionNano": 7899915,
+ "longestApexExecutionNano": 137075052
+ },
+ {
+ "batchNumber": 39,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185007353,
+ "shortestRoundTripNano": 106999244,
+ "longestRoundTripNano": 235293726,
+ "averageApexExecutionNano": 71890243,
+ "shortestApexExecutionNano": 10094576,
+ "longestApexExecutionNano": 136827736
+ },
+ {
+ "batchNumber": 40,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172769493,
+ "shortestRoundTripNano": 46949751,
+ "longestRoundTripNano": 213716226,
+ "averageApexExecutionNano": 72462741,
+ "shortestApexExecutionNano": 6621513,
+ "longestApexExecutionNano": 144456736
+ },
+ {
+ "batchNumber": 41,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157531242,
+ "shortestRoundTripNano": 74172289,
+ "longestRoundTripNano": 190126912,
+ "averageApexExecutionNano": 66356252,
+ "shortestApexExecutionNano": 10386584,
+ "longestApexExecutionNano": 126032890
+ },
+ {
+ "batchNumber": 42,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196412826,
+ "shortestRoundTripNano": 65149196,
+ "longestRoundTripNano": 231560659,
+ "averageApexExecutionNano": 81024262,
+ "shortestApexExecutionNano": 22326982,
+ "longestApexExecutionNano": 150780192
+ },
+ {
+ "batchNumber": 43,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34644",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140672110,
+ "shortestRoundTripNano": 44830845,
+ "longestRoundTripNano": 179991617,
+ "averageApexExecutionNano": 62121600,
+ "shortestApexExecutionNano": 8128044,
+ "longestApexExecutionNano": 126426090
+ },
+ {
+ "batchNumber": 44,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34644",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168961627,
+ "shortestRoundTripNano": 59529689,
+ "longestRoundTripNano": 203158985,
+ "averageApexExecutionNano": 79451437,
+ "shortestApexExecutionNano": 11309452,
+ "longestApexExecutionNano": 144661175
+ },
+ {
+ "batchNumber": 45,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164075121,
+ "shortestRoundTripNano": 51468028,
+ "longestRoundTripNano": 207572285,
+ "averageApexExecutionNano": 63163392,
+ "shortestApexExecutionNano": 4654997,
+ "longestApexExecutionNano": 133605218
+ },
+ {
+ "batchNumber": 46,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157953728,
+ "shortestRoundTripNano": 78121700,
+ "longestRoundTripNano": 197794589,
+ "averageApexExecutionNano": 56373508,
+ "shortestApexExecutionNano": 9351625,
+ "longestApexExecutionNano": 113829735
+ },
+ {
+ "batchNumber": 47,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180026084,
+ "shortestRoundTripNano": 50302616,
+ "longestRoundTripNano": 212814339,
+ "averageApexExecutionNano": 70595932,
+ "shortestApexExecutionNano": 8870115,
+ "longestApexExecutionNano": 137548104
+ },
+ {
+ "batchNumber": 48,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162496495,
+ "shortestRoundTripNano": 86325516,
+ "longestRoundTripNano": 192368913,
+ "averageApexExecutionNano": 76308623,
+ "shortestApexExecutionNano": 10323842,
+ "longestApexExecutionNano": 130028771
+ },
+ {
+ "batchNumber": 49,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160541932,
+ "shortestRoundTripNano": 99834737,
+ "longestRoundTripNano": 196042398,
+ "averageApexExecutionNano": 52127667,
+ "shortestApexExecutionNano": 5706264,
+ "longestApexExecutionNano": 107293035
+ },
+ {
+ "batchNumber": 50,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171630771,
+ "shortestRoundTripNano": 46258583,
+ "longestRoundTripNano": 201932828,
+ "averageApexExecutionNano": 84141233,
+ "shortestApexExecutionNano": 6249440,
+ "longestApexExecutionNano": 142259633
+ },
+ {
+ "batchNumber": 51,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164503550,
+ "shortestRoundTripNano": 71919359,
+ "longestRoundTripNano": 194556921,
+ "averageApexExecutionNano": 49090813,
+ "shortestApexExecutionNano": 7442622,
+ "longestApexExecutionNano": 104380390
+ },
+ {
+ "batchNumber": 52,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162837643,
+ "shortestRoundTripNano": 80891054,
+ "longestRoundTripNano": 194263719,
+ "averageApexExecutionNano": 60073459,
+ "shortestApexExecutionNano": 6039654,
+ "longestApexExecutionNano": 143824723
+ },
+ {
+ "batchNumber": 53,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 193586426,
+ "shortestRoundTripNano": 64341661,
+ "longestRoundTripNano": 244660621,
+ "averageApexExecutionNano": 73809324,
+ "shortestApexExecutionNano": 10142145,
+ "longestApexExecutionNano": 139741994
+ },
+ {
+ "batchNumber": 54,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167833487,
+ "shortestRoundTripNano": 69413758,
+ "longestRoundTripNano": 212104800,
+ "averageApexExecutionNano": 68646073,
+ "shortestApexExecutionNano": 9250129,
+ "longestApexExecutionNano": 130458482
+ },
+ {
+ "batchNumber": 55,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163824418,
+ "shortestRoundTripNano": 68186727,
+ "longestRoundTripNano": 206498924,
+ "averageApexExecutionNano": 60529751,
+ "shortestApexExecutionNano": 14906619,
+ "longestApexExecutionNano": 124823096
+ },
+ {
+ "batchNumber": 56,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189631000,
+ "shortestRoundTripNano": 83362372,
+ "longestRoundTripNano": 225685392,
+ "averageApexExecutionNano": 44618538,
+ "shortestApexExecutionNano": 11865244,
+ "longestApexExecutionNano": 103027491
+ },
+ {
+ "batchNumber": 57,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158457207,
+ "shortestRoundTripNano": 66344822,
+ "longestRoundTripNano": 191910294,
+ "averageApexExecutionNano": 76920647,
+ "shortestApexExecutionNano": 16432901,
+ "longestApexExecutionNano": 140009632
+ },
+ {
+ "batchNumber": 58,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146927286,
+ "shortestRoundTripNano": 80941693,
+ "longestRoundTripNano": 179887892,
+ "averageApexExecutionNano": 50573773,
+ "shortestApexExecutionNano": 7300510,
+ "longestApexExecutionNano": 113558439
+ },
+ {
+ "batchNumber": 59,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159949449,
+ "shortestRoundTripNano": 56816017,
+ "longestRoundTripNano": 203970010,
+ "averageApexExecutionNano": 49539149,
+ "shortestApexExecutionNano": 5636422,
+ "longestApexExecutionNano": 114088539
+ },
+ {
+ "batchNumber": 60,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169530382,
+ "shortestRoundTripNano": 73640422,
+ "longestRoundTripNano": 208020346,
+ "averageApexExecutionNano": 68812695,
+ "shortestApexExecutionNano": 7552718,
+ "longestApexExecutionNano": 141611677
+ },
+ {
+ "batchNumber": 61,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170406756,
+ "shortestRoundTripNano": 60395375,
+ "longestRoundTripNano": 219847540,
+ "averageApexExecutionNano": 67857692,
+ "shortestApexExecutionNano": 12212485,
+ "longestApexExecutionNano": 137303186
+ },
+ {
+ "batchNumber": 62,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153824938,
+ "shortestRoundTripNano": 77364639,
+ "longestRoundTripNano": 179456834,
+ "averageApexExecutionNano": 66655814,
+ "shortestApexExecutionNano": 6048392,
+ "longestApexExecutionNano": 118194161
+ },
+ {
+ "batchNumber": 63,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166712442,
+ "shortestRoundTripNano": 54930951,
+ "longestRoundTripNano": 206640347,
+ "averageApexExecutionNano": 66231002,
+ "shortestApexExecutionNano": 8325641,
+ "longestApexExecutionNano": 150089652
+ },
+ {
+ "batchNumber": 64,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153285528,
+ "shortestRoundTripNano": 43991920,
+ "longestRoundTripNano": 186945087,
+ "averageApexExecutionNano": 61880498,
+ "shortestApexExecutionNano": 6786091,
+ "longestApexExecutionNano": 127725084
+ },
+ {
+ "batchNumber": 65,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195242446,
+ "shortestRoundTripNano": 56277071,
+ "longestRoundTripNano": 241269043,
+ "averageApexExecutionNano": 70990616,
+ "shortestApexExecutionNano": 8747593,
+ "longestApexExecutionNano": 161698835
+ },
+ {
+ "batchNumber": 66,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156212596,
+ "shortestRoundTripNano": 82656897,
+ "longestRoundTripNano": 189647376,
+ "averageApexExecutionNano": 66888710,
+ "shortestApexExecutionNano": 12350469,
+ "longestApexExecutionNano": 129698691
+ },
+ {
+ "batchNumber": 67,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171232049,
+ "shortestRoundTripNano": 50022873,
+ "longestRoundTripNano": 216750374,
+ "averageApexExecutionNano": 71370959,
+ "shortestApexExecutionNano": 8816162,
+ "longestApexExecutionNano": 137826853
+ },
+ {
+ "batchNumber": 68,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185299999,
+ "shortestRoundTripNano": 46357980,
+ "longestRoundTripNano": 221592887,
+ "averageApexExecutionNano": 78047604,
+ "shortestApexExecutionNano": 20064322,
+ "longestApexExecutionNano": 153323352
+ },
+ {
+ "batchNumber": 69,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152676814,
+ "shortestRoundTripNano": 52712073,
+ "longestRoundTripNano": 185840531,
+ "averageApexExecutionNano": 44240480,
+ "shortestApexExecutionNano": 7348265,
+ "longestApexExecutionNano": 104797210
+ },
+ {
+ "batchNumber": 70,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138950511,
+ "shortestRoundTripNano": 54061240,
+ "longestRoundTripNano": 170042886,
+ "averageApexExecutionNano": 52946419,
+ "shortestApexExecutionNano": 6190289,
+ "longestApexExecutionNano": 100054746
+ },
+ {
+ "batchNumber": 71,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137893065,
+ "shortestRoundTripNano": 70999371,
+ "longestRoundTripNano": 167813466,
+ "averageApexExecutionNano": 45797493,
+ "shortestApexExecutionNano": 6209516,
+ "longestApexExecutionNano": 103020723
+ },
+ {
+ "batchNumber": 72,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145376977,
+ "shortestRoundTripNano": 65763850,
+ "longestRoundTripNano": 179842963,
+ "averageApexExecutionNano": 53163261,
+ "shortestApexExecutionNano": 8114476,
+ "longestApexExecutionNano": 107163199
+ },
+ {
+ "batchNumber": 73,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141134722,
+ "shortestRoundTripNano": 46508515,
+ "longestRoundTripNano": 179861805,
+ "averageApexExecutionNano": 51273807,
+ "shortestApexExecutionNano": 5880992,
+ "longestApexExecutionNano": 108018734
+ },
+ {
+ "batchNumber": 74,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156924273,
+ "shortestRoundTripNano": 48983837,
+ "longestRoundTripNano": 191219106,
+ "averageApexExecutionNano": 57805851,
+ "shortestApexExecutionNano": 12077189,
+ "longestApexExecutionNano": 133744968
+ },
+ {
+ "batchNumber": 75,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 197262902,
+ "shortestRoundTripNano": 67961382,
+ "longestRoundTripNano": 251501223,
+ "averageApexExecutionNano": 70096169,
+ "shortestApexExecutionNano": 13599828,
+ "longestApexExecutionNano": 164622541
+ },
+ {
+ "batchNumber": 76,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156057570,
+ "shortestRoundTripNano": 63041656,
+ "longestRoundTripNano": 198802973,
+ "averageApexExecutionNano": 68251960,
+ "shortestApexExecutionNano": 28179394,
+ "longestApexExecutionNano": 124390979
+ },
+ {
+ "batchNumber": 77,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155490553,
+ "shortestRoundTripNano": 72581900,
+ "longestRoundTripNano": 190687829,
+ "averageApexExecutionNano": 49812103,
+ "shortestApexExecutionNano": 11672086,
+ "longestApexExecutionNano": 101045633
+ },
+ {
+ "batchNumber": 78,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160933375,
+ "shortestRoundTripNano": 59702432,
+ "longestRoundTripNano": 200444327,
+ "averageApexExecutionNano": 84131108,
+ "shortestApexExecutionNano": 6977500,
+ "longestApexExecutionNano": 139191109
+ },
+ {
+ "batchNumber": 79,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143128556,
+ "shortestRoundTripNano": 58747648,
+ "longestRoundTripNano": 175769343,
+ "averageApexExecutionNano": 43928957,
+ "shortestApexExecutionNano": 8563501,
+ "longestApexExecutionNano": 96495466
+ },
+ {
+ "batchNumber": 80,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174032883,
+ "shortestRoundTripNano": 79852056,
+ "longestRoundTripNano": 208670611,
+ "averageApexExecutionNano": 68866439,
+ "shortestApexExecutionNano": 8177137,
+ "longestApexExecutionNano": 121721956
+ },
+ {
+ "batchNumber": 81,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144134556,
+ "shortestRoundTripNano": 35310894,
+ "longestRoundTripNano": 179925760,
+ "averageApexExecutionNano": 59738958,
+ "shortestApexExecutionNano": 7251212,
+ "longestApexExecutionNano": 126391643
+ },
+ {
+ "batchNumber": 82,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160150414,
+ "shortestRoundTripNano": 79349933,
+ "longestRoundTripNano": 197538618,
+ "averageApexExecutionNano": 47882264,
+ "shortestApexExecutionNano": 7495951,
+ "longestApexExecutionNano": 123045878
+ },
+ {
+ "batchNumber": 83,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145985497,
+ "shortestRoundTripNano": 34468653,
+ "longestRoundTripNano": 183703194,
+ "averageApexExecutionNano": 56391584,
+ "shortestApexExecutionNano": 5885859,
+ "longestApexExecutionNano": 125848985
+ },
+ {
+ "batchNumber": 84,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134924728,
+ "shortestRoundTripNano": 67100828,
+ "longestRoundTripNano": 172854334,
+ "averageApexExecutionNano": 47972088,
+ "shortestApexExecutionNano": 5756210,
+ "longestApexExecutionNano": 112539721
+ },
+ {
+ "batchNumber": 85,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 199229296,
+ "shortestRoundTripNano": 62811389,
+ "longestRoundTripNano": 235212371,
+ "averageApexExecutionNano": 75803853,
+ "shortestApexExecutionNano": 6294710,
+ "longestApexExecutionNano": 144492354
+ },
+ {
+ "batchNumber": 86,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148264892,
+ "shortestRoundTripNano": 51030810,
+ "longestRoundTripNano": 180427011,
+ "averageApexExecutionNano": 63654879,
+ "shortestApexExecutionNano": 11319076,
+ "longestApexExecutionNano": 117300188
+ },
+ {
+ "batchNumber": 87,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133218835,
+ "shortestRoundTripNano": 68977857,
+ "longestRoundTripNano": 162588339,
+ "averageApexExecutionNano": 41978564,
+ "shortestApexExecutionNano": 6912890,
+ "longestApexExecutionNano": 109028038
+ },
+ {
+ "batchNumber": 88,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130165213,
+ "shortestRoundTripNano": 55638042,
+ "longestRoundTripNano": 164746706,
+ "averageApexExecutionNano": 58869593,
+ "shortestApexExecutionNano": 6011993,
+ "longestApexExecutionNano": 110420632
+ },
+ {
+ "batchNumber": 89,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133630799,
+ "shortestRoundTripNano": 58504810,
+ "longestRoundTripNano": 168832164,
+ "averageApexExecutionNano": 50534569,
+ "shortestApexExecutionNano": 6357132,
+ "longestApexExecutionNano": 108708203
+ },
+ {
+ "batchNumber": 90,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152910497,
+ "shortestRoundTripNano": 73783393,
+ "longestRoundTripNano": 185730067,
+ "averageApexExecutionNano": 45598086,
+ "shortestApexExecutionNano": 6511350,
+ "longestApexExecutionNano": 105335763
+ },
+ {
+ "batchNumber": 91,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135723767,
+ "shortestRoundTripNano": 58652027,
+ "longestRoundTripNano": 160428112,
+ "averageApexExecutionNano": 57417061,
+ "shortestApexExecutionNano": 8779526,
+ "longestApexExecutionNano": 107299733
+ },
+ {
+ "batchNumber": 92,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167989641,
+ "shortestRoundTripNano": 58525887,
+ "longestRoundTripNano": 210806278,
+ "averageApexExecutionNano": 75843447,
+ "shortestApexExecutionNano": 8043838,
+ "longestApexExecutionNano": 142836445
+ },
+ {
+ "batchNumber": 93,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191244634,
+ "shortestRoundTripNano": 79603455,
+ "longestRoundTripNano": 222286503,
+ "averageApexExecutionNano": 90816869,
+ "shortestApexExecutionNano": 8090435,
+ "longestApexExecutionNano": 163525118
+ },
+ {
+ "batchNumber": 94,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142322270,
+ "shortestRoundTripNano": 61222159,
+ "longestRoundTripNano": 183342637,
+ "averageApexExecutionNano": 50245055,
+ "shortestApexExecutionNano": 8979520,
+ "longestApexExecutionNano": 114445094
+ },
+ {
+ "batchNumber": 95,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144841071,
+ "shortestRoundTripNano": 73118653,
+ "longestRoundTripNano": 175507378,
+ "averageApexExecutionNano": 65671952,
+ "shortestApexExecutionNano": 6656409,
+ "longestApexExecutionNano": 121327674
+ },
+ {
+ "batchNumber": 96,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163753106,
+ "shortestRoundTripNano": 100339666,
+ "longestRoundTripNano": 185011706,
+ "averageApexExecutionNano": 57986013,
+ "shortestApexExecutionNano": 9736073,
+ "longestApexExecutionNano": 132603735
+ },
+ {
+ "batchNumber": 97,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149363392,
+ "shortestRoundTripNano": 68783789,
+ "longestRoundTripNano": 173815993,
+ "averageApexExecutionNano": 60666620,
+ "shortestApexExecutionNano": 8099780,
+ "longestApexExecutionNano": 131118939
+ },
+ {
+ "batchNumber": 98,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162211221,
+ "shortestRoundTripNano": 49816062,
+ "longestRoundTripNano": 197339837,
+ "averageApexExecutionNano": 55894477,
+ "shortestApexExecutionNano": 8439449,
+ "longestApexExecutionNano": 145884629
+ },
+ {
+ "batchNumber": 99,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135315549,
+ "shortestRoundTripNano": 53128874,
+ "longestRoundTripNano": 166839150,
+ "averageApexExecutionNano": 55422106,
+ "shortestApexExecutionNano": 14740959,
+ "longestApexExecutionNano": 118973913
+ },
+ {
+ "batchNumber": 100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156267572,
+ "shortestRoundTripNano": 74718371,
+ "longestRoundTripNano": 191017143,
+ "averageApexExecutionNano": 60327080,
+ "shortestApexExecutionNano": 5740962,
+ "longestApexExecutionNano": 108067519
+ },
+ {
+ "batchNumber": 101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149161852,
+ "shortestRoundTripNano": 71743994,
+ "longestRoundTripNano": 185237475,
+ "averageApexExecutionNano": 75183925,
+ "shortestApexExecutionNano": 8582674,
+ "longestApexExecutionNano": 130486113
+ },
+ {
+ "batchNumber": 102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155578266,
+ "shortestRoundTripNano": 73602494,
+ "longestRoundTripNano": 183552552,
+ "averageApexExecutionNano": 65442758,
+ "shortestApexExecutionNano": 5619385,
+ "longestApexExecutionNano": 133131659
+ },
+ {
+ "batchNumber": 103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164582666,
+ "shortestRoundTripNano": 62764733,
+ "longestRoundTripNano": 200418803,
+ "averageApexExecutionNano": 54925133,
+ "shortestApexExecutionNano": 5984550,
+ "longestApexExecutionNano": 126956829
+ },
+ {
+ "batchNumber": 104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164048228,
+ "shortestRoundTripNano": 84938672,
+ "longestRoundTripNano": 214885935,
+ "averageApexExecutionNano": 64949929,
+ "shortestApexExecutionNano": 9512595,
+ "longestApexExecutionNano": 137833550
+ },
+ {
+ "batchNumber": 105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132390553,
+ "shortestRoundTripNano": 58508820,
+ "longestRoundTripNano": 161169719,
+ "averageApexExecutionNano": 49147642,
+ "shortestApexExecutionNano": 9052562,
+ "longestApexExecutionNano": 103982616
+ },
+ {
+ "batchNumber": 106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140063186,
+ "shortestRoundTripNano": 77029976,
+ "longestRoundTripNano": 165642116,
+ "averageApexExecutionNano": 50203962,
+ "shortestApexExecutionNano": 8342851,
+ "longestApexExecutionNano": 109230955
+ },
+ {
+ "batchNumber": 107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139442192,
+ "shortestRoundTripNano": 63534998,
+ "longestRoundTripNano": 169577720,
+ "averageApexExecutionNano": 64133658,
+ "shortestApexExecutionNano": 10121486,
+ "longestApexExecutionNano": 112184826
+ },
+ {
+ "batchNumber": 108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140348470,
+ "shortestRoundTripNano": 56066179,
+ "longestRoundTripNano": 173118203,
+ "averageApexExecutionNano": 52743194,
+ "shortestApexExecutionNano": 7248742,
+ "longestApexExecutionNano": 116614350
+ },
+ {
+ "batchNumber": 109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156681250,
+ "shortestRoundTripNano": 79058086,
+ "longestRoundTripNano": 196261185,
+ "averageApexExecutionNano": 71209751,
+ "shortestApexExecutionNano": 7917000,
+ "longestApexExecutionNano": 153591712
+ },
+ {
+ "batchNumber": 110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179307148,
+ "shortestRoundTripNano": 62732966,
+ "longestRoundTripNano": 209319650,
+ "averageApexExecutionNano": 65668004,
+ "shortestApexExecutionNano": 8278864,
+ "longestApexExecutionNano": 136196647
+ },
+ {
+ "batchNumber": 111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151363628,
+ "shortestRoundTripNano": 81905206,
+ "longestRoundTripNano": 184690497,
+ "averageApexExecutionNano": 58831718,
+ "shortestApexExecutionNano": 9974046,
+ "longestApexExecutionNano": 138741081
+ },
+ {
+ "batchNumber": 112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171672032,
+ "shortestRoundTripNano": 60987128,
+ "longestRoundTripNano": 198448779,
+ "averageApexExecutionNano": 80839240,
+ "shortestApexExecutionNano": 10244904,
+ "longestApexExecutionNano": 152465308
+ },
+ {
+ "batchNumber": 113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165941000,
+ "shortestRoundTripNano": 69508638,
+ "longestRoundTripNano": 203996833,
+ "averageApexExecutionNano": 76416632,
+ "shortestApexExecutionNano": 6804799,
+ "longestApexExecutionNano": 132815249
+ },
+ {
+ "batchNumber": 114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150076623,
+ "shortestRoundTripNano": 70257539,
+ "longestRoundTripNano": 184585828,
+ "averageApexExecutionNano": 56983665,
+ "shortestApexExecutionNano": 7408191,
+ "longestApexExecutionNano": 131377918
+ },
+ {
+ "batchNumber": 115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158903439,
+ "shortestRoundTripNano": 89424137,
+ "longestRoundTripNano": 189134435,
+ "averageApexExecutionNano": 57085322,
+ "shortestApexExecutionNano": 12901335,
+ "longestApexExecutionNano": 119926753
+ },
+ {
+ "batchNumber": 116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151701153,
+ "shortestRoundTripNano": 54989414,
+ "longestRoundTripNano": 181755163,
+ "averageApexExecutionNano": 75623019,
+ "shortestApexExecutionNano": 9333691,
+ "longestApexExecutionNano": 138209801
+ },
+ {
+ "batchNumber": 117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149140145,
+ "shortestRoundTripNano": 54581744,
+ "longestRoundTripNano": 184544150,
+ "averageApexExecutionNano": 67672283,
+ "shortestApexExecutionNano": 7949226,
+ "longestApexExecutionNano": 139904780
+ },
+ {
+ "batchNumber": 118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160314111,
+ "shortestRoundTripNano": 71522354,
+ "longestRoundTripNano": 187978805,
+ "averageApexExecutionNano": 53138521,
+ "shortestApexExecutionNano": 13245922,
+ "longestApexExecutionNano": 102080541
+ },
+ {
+ "batchNumber": 119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169266183,
+ "shortestRoundTripNano": 45820352,
+ "longestRoundTripNano": 219455244,
+ "averageApexExecutionNano": 79732465,
+ "shortestApexExecutionNano": 8721257,
+ "longestApexExecutionNano": 153960941
+ },
+ {
+ "batchNumber": 120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164182077,
+ "shortestRoundTripNano": 86112024,
+ "longestRoundTripNano": 188378431,
+ "averageApexExecutionNano": 70206765,
+ "shortestApexExecutionNano": 5612338,
+ "longestApexExecutionNano": 142467211
+ },
+ {
+ "batchNumber": 121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152426900,
+ "shortestRoundTripNano": 65990061,
+ "longestRoundTripNano": 179029284,
+ "averageApexExecutionNano": 57483184,
+ "shortestApexExecutionNano": 5375423,
+ "longestApexExecutionNano": 101966083
+ },
+ {
+ "batchNumber": 122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144118512,
+ "shortestRoundTripNano": 62353205,
+ "longestRoundTripNano": 177884501,
+ "averageApexExecutionNano": 57739690,
+ "shortestApexExecutionNano": 8280378,
+ "longestApexExecutionNano": 113278885
+ },
+ {
+ "batchNumber": 123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156678894,
+ "shortestRoundTripNano": 90894486,
+ "longestRoundTripNano": 188429529,
+ "averageApexExecutionNano": 72388395,
+ "shortestApexExecutionNano": 14392457,
+ "longestApexExecutionNano": 131758881
+ },
+ {
+ "batchNumber": 124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147532653,
+ "shortestRoundTripNano": 64430136,
+ "longestRoundTripNano": 180434785,
+ "averageApexExecutionNano": 53535170,
+ "shortestApexExecutionNano": 8857495,
+ "longestApexExecutionNano": 112720887
+ },
+ {
+ "batchNumber": 125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177765920,
+ "shortestRoundTripNano": 77721490,
+ "longestRoundTripNano": 210151714,
+ "averageApexExecutionNano": 71571372,
+ "shortestApexExecutionNano": 7553415,
+ "longestApexExecutionNano": 162550320
+ },
+ {
+ "batchNumber": 126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153036963,
+ "shortestRoundTripNano": 54176680,
+ "longestRoundTripNano": 183241721,
+ "averageApexExecutionNano": 67689998,
+ "shortestApexExecutionNano": 7870813,
+ "longestApexExecutionNano": 132446709
+ },
+ {
+ "batchNumber": 127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171424053,
+ "shortestRoundTripNano": 69771478,
+ "longestRoundTripNano": 197253044,
+ "averageApexExecutionNano": 78140968,
+ "shortestApexExecutionNano": 21913222,
+ "longestApexExecutionNano": 126146909
+ },
+ {
+ "batchNumber": 128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153682236,
+ "shortestRoundTripNano": 61018234,
+ "longestRoundTripNano": 184760173,
+ "averageApexExecutionNano": 53734118,
+ "shortestApexExecutionNano": 16810931,
+ "longestApexExecutionNano": 120330968
+ },
+ {
+ "batchNumber": 129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141535566,
+ "shortestRoundTripNano": 76422898,
+ "longestRoundTripNano": 169974366,
+ "averageApexExecutionNano": 51401122,
+ "shortestApexExecutionNano": 10092789,
+ "longestApexExecutionNano": 123609186
+ },
+ {
+ "batchNumber": 130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160364560,
+ "shortestRoundTripNano": 67593307,
+ "longestRoundTripNano": 190883718,
+ "averageApexExecutionNano": 61691003,
+ "shortestApexExecutionNano": 14314409,
+ "longestApexExecutionNano": 117359800
+ },
+ {
+ "batchNumber": 131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142540373,
+ "shortestRoundTripNano": 76524192,
+ "longestRoundTripNano": 173018768,
+ "averageApexExecutionNano": 64872025,
+ "shortestApexExecutionNano": 11813554,
+ "longestApexExecutionNano": 116519817
+ },
+ {
+ "batchNumber": 132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167636934,
+ "shortestRoundTripNano": 64564927,
+ "longestRoundTripNano": 201536972,
+ "averageApexExecutionNano": 69070316,
+ "shortestApexExecutionNano": 10139352,
+ "longestApexExecutionNano": 136989490
+ },
+ {
+ "batchNumber": 133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150814760,
+ "shortestRoundTripNano": 33807058,
+ "longestRoundTripNano": 189517508,
+ "averageApexExecutionNano": 62430061,
+ "shortestApexExecutionNano": 6924635,
+ "longestApexExecutionNano": 135175742
+ },
+ {
+ "batchNumber": 134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142045925,
+ "shortestRoundTripNano": 61499341,
+ "longestRoundTripNano": 172230466,
+ "averageApexExecutionNano": 61714493,
+ "shortestApexExecutionNano": 12164683,
+ "longestApexExecutionNano": 118196859
+ },
+ {
+ "batchNumber": 135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148986624,
+ "shortestRoundTripNano": 64875949,
+ "longestRoundTripNano": 180973489,
+ "averageApexExecutionNano": 59829684,
+ "shortestApexExecutionNano": 7509427,
+ "longestApexExecutionNano": 112984305
+ },
+ {
+ "batchNumber": 136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142732864,
+ "shortestRoundTripNano": 42935992,
+ "longestRoundTripNano": 184097422,
+ "averageApexExecutionNano": 52592556,
+ "shortestApexExecutionNano": 9994236,
+ "longestApexExecutionNano": 112132650
+ },
+ {
+ "batchNumber": 137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141336938,
+ "shortestRoundTripNano": 63466725,
+ "longestRoundTripNano": 171452946,
+ "averageApexExecutionNano": 53347925,
+ "shortestApexExecutionNano": 6951545,
+ "longestApexExecutionNano": 112165758
+ },
+ {
+ "batchNumber": 138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153070868,
+ "shortestRoundTripNano": 54015150,
+ "longestRoundTripNano": 177926031,
+ "averageApexExecutionNano": 56946862,
+ "shortestApexExecutionNano": 9365276,
+ "longestApexExecutionNano": 128642045
+ },
+ {
+ "batchNumber": 139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161484115,
+ "shortestRoundTripNano": 79478984,
+ "longestRoundTripNano": 197226418,
+ "averageApexExecutionNano": 57104045,
+ "shortestApexExecutionNano": 8404250,
+ "longestApexExecutionNano": 107421356
+ },
+ {
+ "batchNumber": 140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135523872,
+ "shortestRoundTripNano": 62081084,
+ "longestRoundTripNano": 164904077,
+ "averageApexExecutionNano": 62331199,
+ "shortestApexExecutionNano": 11645317,
+ "longestApexExecutionNano": 101194114
+ },
+ {
+ "batchNumber": 141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152650948,
+ "shortestRoundTripNano": 27252443,
+ "longestRoundTripNano": 189995084,
+ "averageApexExecutionNano": 58973250,
+ "shortestApexExecutionNano": 6533652,
+ "longestApexExecutionNano": 126304712
+ },
+ {
+ "batchNumber": 142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164556410,
+ "shortestRoundTripNano": 65414859,
+ "longestRoundTripNano": 195629800,
+ "averageApexExecutionNano": 73354626,
+ "shortestApexExecutionNano": 9955753,
+ "longestApexExecutionNano": 151738555
+ },
+ {
+ "batchNumber": 143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141905563,
+ "shortestRoundTripNano": 60654648,
+ "longestRoundTripNano": 184543416,
+ "averageApexExecutionNano": 56542082,
+ "shortestApexExecutionNano": 7279809,
+ "longestApexExecutionNano": 109017010
+ },
+ {
+ "batchNumber": 144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132452403,
+ "shortestRoundTripNano": 64077930,
+ "longestRoundTripNano": 162015558,
+ "averageApexExecutionNano": 60078008,
+ "shortestApexExecutionNano": 8467887,
+ "longestApexExecutionNano": 105525526
+ },
+ {
+ "batchNumber": 145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142827019,
+ "shortestRoundTripNano": 73559027,
+ "longestRoundTripNano": 169067590,
+ "averageApexExecutionNano": 67222766,
+ "shortestApexExecutionNano": 6503375,
+ "longestApexExecutionNano": 118526360
+ },
+ {
+ "batchNumber": 146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138754539,
+ "shortestRoundTripNano": 58611526,
+ "longestRoundTripNano": 162782540,
+ "averageApexExecutionNano": 60654716,
+ "shortestApexExecutionNano": 8290707,
+ "longestApexExecutionNano": 125730059
+ },
+ {
+ "batchNumber": 147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138729871,
+ "shortestRoundTripNano": 28716514,
+ "longestRoundTripNano": 166646218,
+ "averageApexExecutionNano": 63673563,
+ "shortestApexExecutionNano": 6737884,
+ "longestApexExecutionNano": 111849357
+ },
+ {
+ "batchNumber": 148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158348198,
+ "shortestRoundTripNano": 70582840,
+ "longestRoundTripNano": 183138041,
+ "averageApexExecutionNano": 50034921,
+ "shortestApexExecutionNano": 8025928,
+ "longestApexExecutionNano": 122115822
+ },
+ {
+ "batchNumber": 149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140695897,
+ "shortestRoundTripNano": 84638881,
+ "longestRoundTripNano": 172430905,
+ "averageApexExecutionNano": 61241104,
+ "shortestApexExecutionNano": 7630988,
+ "longestApexExecutionNano": 119049951
+ },
+ {
+ "batchNumber": 150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146788238,
+ "shortestRoundTripNano": 45985533,
+ "longestRoundTripNano": 179955910,
+ "averageApexExecutionNano": 70717067,
+ "shortestApexExecutionNano": 6138336,
+ "longestApexExecutionNano": 131251709
+ },
+ {
+ "batchNumber": 151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153776572,
+ "shortestRoundTripNano": 74678609,
+ "longestRoundTripNano": 184664137,
+ "averageApexExecutionNano": 73675264,
+ "shortestApexExecutionNano": 8521617,
+ "longestApexExecutionNano": 130001218
+ },
+ {
+ "batchNumber": 152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156357437,
+ "shortestRoundTripNano": 70898417,
+ "longestRoundTripNano": 186873305,
+ "averageApexExecutionNano": 49567862,
+ "shortestApexExecutionNano": 8647189,
+ "longestApexExecutionNano": 113573497
+ },
+ {
+ "batchNumber": 153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151854124,
+ "shortestRoundTripNano": 58214549,
+ "longestRoundTripNano": 192162101,
+ "averageApexExecutionNano": 58845268,
+ "shortestApexExecutionNano": 9711948,
+ "longestApexExecutionNano": 114769012
+ },
+ {
+ "batchNumber": 154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141749811,
+ "shortestRoundTripNano": 84409172,
+ "longestRoundTripNano": 169247074,
+ "averageApexExecutionNano": 59468020,
+ "shortestApexExecutionNano": 6654974,
+ "longestApexExecutionNano": 133568960
+ },
+ {
+ "batchNumber": 155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145297915,
+ "shortestRoundTripNano": 50006573,
+ "longestRoundTripNano": 178177936,
+ "averageApexExecutionNano": 55561925,
+ "shortestApexExecutionNano": 10435146,
+ "longestApexExecutionNano": 120145002
+ },
+ {
+ "batchNumber": 156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154013282,
+ "shortestRoundTripNano": 105590402,
+ "longestRoundTripNano": 184983397,
+ "averageApexExecutionNano": 65509604,
+ "shortestApexExecutionNano": 10179757,
+ "longestApexExecutionNano": 120438778
+ },
+ {
+ "batchNumber": 157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146749919,
+ "shortestRoundTripNano": 80292759,
+ "longestRoundTripNano": 176890443,
+ "averageApexExecutionNano": 67411470,
+ "shortestApexExecutionNano": 6284931,
+ "longestApexExecutionNano": 127761596
+ },
+ {
+ "batchNumber": 158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134699810,
+ "shortestRoundTripNano": 52592230,
+ "longestRoundTripNano": 172463441,
+ "averageApexExecutionNano": 54244619,
+ "shortestApexExecutionNano": 8535303,
+ "longestApexExecutionNano": 105713903
+ },
+ {
+ "batchNumber": 159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186895026,
+ "shortestRoundTripNano": 63141454,
+ "longestRoundTripNano": 215270609,
+ "averageApexExecutionNano": 101001222,
+ "shortestApexExecutionNano": 16479254,
+ "longestApexExecutionNano": 163128339
+ },
+ {
+ "batchNumber": 160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147277085,
+ "shortestRoundTripNano": 70388651,
+ "longestRoundTripNano": 174009521,
+ "averageApexExecutionNano": 54270169,
+ "shortestApexExecutionNano": 7984229,
+ "longestApexExecutionNano": 125396513
+ },
+ {
+ "batchNumber": 161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151294514,
+ "shortestRoundTripNano": 81783472,
+ "longestRoundTripNano": 176578662,
+ "averageApexExecutionNano": 50490311,
+ "shortestApexExecutionNano": 8181692,
+ "longestApexExecutionNano": 113799092
+ },
+ {
+ "batchNumber": 162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130196481,
+ "shortestRoundTripNano": 75470436,
+ "longestRoundTripNano": 155086964,
+ "averageApexExecutionNano": 66235213,
+ "shortestApexExecutionNano": 7902023,
+ "longestApexExecutionNano": 109409731
+ },
+ {
+ "batchNumber": 163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130921181,
+ "shortestRoundTripNano": 50778381,
+ "longestRoundTripNano": 161967810,
+ "averageApexExecutionNano": 43789750,
+ "shortestApexExecutionNano": 6420589,
+ "longestApexExecutionNano": 106343768
+ },
+ {
+ "batchNumber": 164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148024928,
+ "shortestRoundTripNano": 51645540,
+ "longestRoundTripNano": 179953569,
+ "averageApexExecutionNano": 60716201,
+ "shortestApexExecutionNano": 8837012,
+ "longestApexExecutionNano": 116602449
+ },
+ {
+ "batchNumber": 165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142675063,
+ "shortestRoundTripNano": 50164824,
+ "longestRoundTripNano": 175863578,
+ "averageApexExecutionNano": 65053164,
+ "shortestApexExecutionNano": 12194662,
+ "longestApexExecutionNano": 121176290
+ },
+ {
+ "batchNumber": 166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127360259,
+ "shortestRoundTripNano": 39570153,
+ "longestRoundTripNano": 165068810,
+ "averageApexExecutionNano": 57503942,
+ "shortestApexExecutionNano": 6669924,
+ "longestApexExecutionNano": 134748735
+ },
+ {
+ "batchNumber": 167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167243009,
+ "shortestRoundTripNano": 65582810,
+ "longestRoundTripNano": 205163670,
+ "averageApexExecutionNano": 60931746,
+ "shortestApexExecutionNano": 8132696,
+ "longestApexExecutionNano": 142074542
+ },
+ {
+ "batchNumber": 168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167890469,
+ "shortestRoundTripNano": 60485815,
+ "longestRoundTripNano": 203909054,
+ "averageApexExecutionNano": 65197818,
+ "shortestApexExecutionNano": 7699594,
+ "longestApexExecutionNano": 144320952
+ },
+ {
+ "batchNumber": 169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141421789,
+ "shortestRoundTripNano": 33075074,
+ "longestRoundTripNano": 170177081,
+ "averageApexExecutionNano": 63352493,
+ "shortestApexExecutionNano": 7375331,
+ "longestApexExecutionNano": 119729336
+ },
+ {
+ "batchNumber": 170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151756818,
+ "shortestRoundTripNano": 70765708,
+ "longestRoundTripNano": 182448096,
+ "averageApexExecutionNano": 53116931,
+ "shortestApexExecutionNano": 10842891,
+ "longestApexExecutionNano": 100158191
+ },
+ {
+ "batchNumber": 171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151613481,
+ "shortestRoundTripNano": 81332359,
+ "longestRoundTripNano": 174591046,
+ "averageApexExecutionNano": 68979560,
+ "shortestApexExecutionNano": 8122884,
+ "longestApexExecutionNano": 126855933
+ },
+ {
+ "batchNumber": 172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144833543,
+ "shortestRoundTripNano": 60266252,
+ "longestRoundTripNano": 177645996,
+ "averageApexExecutionNano": 52270136,
+ "shortestApexExecutionNano": 7438604,
+ "longestApexExecutionNano": 135231622
+ },
+ {
+ "batchNumber": 173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144996984,
+ "shortestRoundTripNano": 77847792,
+ "longestRoundTripNano": 180256636,
+ "averageApexExecutionNano": 59815879,
+ "shortestApexExecutionNano": 7991583,
+ "longestApexExecutionNano": 124806004
+ },
+ {
+ "batchNumber": 174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150049403,
+ "shortestRoundTripNano": 59616700,
+ "longestRoundTripNano": 178275212,
+ "averageApexExecutionNano": 62007938,
+ "shortestApexExecutionNano": 9455241,
+ "longestApexExecutionNano": 110237439
+ },
+ {
+ "batchNumber": 175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140903792,
+ "shortestRoundTripNano": 76830366,
+ "longestRoundTripNano": 167209386,
+ "averageApexExecutionNano": 65743801,
+ "shortestApexExecutionNano": 7442032,
+ "longestApexExecutionNano": 125700014
+ },
+ {
+ "batchNumber": 176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150959877,
+ "shortestRoundTripNano": 72546342,
+ "longestRoundTripNano": 177481870,
+ "averageApexExecutionNano": 49281371,
+ "shortestApexExecutionNano": 8880812,
+ "longestApexExecutionNano": 136536210
+ },
+ {
+ "batchNumber": 177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156204766,
+ "shortestRoundTripNano": 56638238,
+ "longestRoundTripNano": 191725628,
+ "averageApexExecutionNano": 50175896,
+ "shortestApexExecutionNano": 7892100,
+ "longestApexExecutionNano": 98076060
+ },
+ {
+ "batchNumber": 178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131226386,
+ "shortestRoundTripNano": 44196859,
+ "longestRoundTripNano": 164540012,
+ "averageApexExecutionNano": 56165548,
+ "shortestApexExecutionNano": 6008058,
+ "longestApexExecutionNano": 110714151
+ },
+ {
+ "batchNumber": 179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127819607,
+ "shortestRoundTripNano": 65230521,
+ "longestRoundTripNano": 155635257,
+ "averageApexExecutionNano": 54342302,
+ "shortestApexExecutionNano": 8212559,
+ "longestApexExecutionNano": 116965864
+ },
+ {
+ "batchNumber": 180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129480414,
+ "shortestRoundTripNano": 64600442,
+ "longestRoundTripNano": 153267333,
+ "averageApexExecutionNano": 47037650,
+ "shortestApexExecutionNano": 7218362,
+ "longestApexExecutionNano": 97823547
+ },
+ {
+ "batchNumber": 181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157835347,
+ "shortestRoundTripNano": 77220450,
+ "longestRoundTripNano": 189963441,
+ "averageApexExecutionNano": 69691020,
+ "shortestApexExecutionNano": 10034383,
+ "longestApexExecutionNano": 115333204
+ },
+ {
+ "batchNumber": 182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 276013721,
+ "shortestRoundTripNano": 51886078,
+ "longestRoundTripNano": 321898647,
+ "averageApexExecutionNano": 145462657,
+ "shortestApexExecutionNano": 6524367,
+ "longestApexExecutionNano": 266521107
+ },
+ {
+ "batchNumber": 183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157049810,
+ "shortestRoundTripNano": 76755040,
+ "longestRoundTripNano": 187299180,
+ "averageApexExecutionNano": 64386337,
+ "shortestApexExecutionNano": 8152847,
+ "longestApexExecutionNano": 136940011
+ },
+ {
+ "batchNumber": 184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135042234,
+ "shortestRoundTripNano": 64097649,
+ "longestRoundTripNano": 167681430,
+ "averageApexExecutionNano": 59575428,
+ "shortestApexExecutionNano": 26278948,
+ "longestApexExecutionNano": 97561350
+ },
+ {
+ "batchNumber": 185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135701885,
+ "shortestRoundTripNano": 48229221,
+ "longestRoundTripNano": 168770223,
+ "averageApexExecutionNano": 64550790,
+ "shortestApexExecutionNano": 9877870,
+ "longestApexExecutionNano": 118859722
+ },
+ {
+ "batchNumber": 186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155355774,
+ "shortestRoundTripNano": 76236448,
+ "longestRoundTripNano": 182281223,
+ "averageApexExecutionNano": 65528398,
+ "shortestApexExecutionNano": 7583436,
+ "longestApexExecutionNano": 139151670
+ },
+ {
+ "batchNumber": 187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149707579,
+ "shortestRoundTripNano": 49754525,
+ "longestRoundTripNano": 199775243,
+ "averageApexExecutionNano": 57327209,
+ "shortestApexExecutionNano": 5934544,
+ "longestApexExecutionNano": 134150590
+ },
+ {
+ "batchNumber": 188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150449363,
+ "shortestRoundTripNano": 79962252,
+ "longestRoundTripNano": 176755501,
+ "averageApexExecutionNano": 70257581,
+ "shortestApexExecutionNano": 11083474,
+ "longestApexExecutionNano": 126898813
+ },
+ {
+ "batchNumber": 189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148032471,
+ "shortestRoundTripNano": 57830194,
+ "longestRoundTripNano": 186190543,
+ "averageApexExecutionNano": 50419835,
+ "shortestApexExecutionNano": 6725482,
+ "longestApexExecutionNano": 130853271
+ },
+ {
+ "batchNumber": 190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150471631,
+ "shortestRoundTripNano": 71973366,
+ "longestRoundTripNano": 183429944,
+ "averageApexExecutionNano": 51783389,
+ "shortestApexExecutionNano": 5664873,
+ "longestApexExecutionNano": 111641166
+ },
+ {
+ "batchNumber": 191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123205384,
+ "shortestRoundTripNano": 59547214,
+ "longestRoundTripNano": 158678754,
+ "averageApexExecutionNano": 59188199,
+ "shortestApexExecutionNano": 5250111,
+ "longestApexExecutionNano": 121018131
+ },
+ {
+ "batchNumber": 192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143579107,
+ "shortestRoundTripNano": 83888857,
+ "longestRoundTripNano": 173350609,
+ "averageApexExecutionNano": 63864654,
+ "shortestApexExecutionNano": 12057316,
+ "longestApexExecutionNano": 117251617
+ },
+ {
+ "batchNumber": 193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145309274,
+ "shortestRoundTripNano": 62113431,
+ "longestRoundTripNano": 184895085,
+ "averageApexExecutionNano": 58564550,
+ "shortestApexExecutionNano": 9526552,
+ "longestApexExecutionNano": 118550541
+ },
+ {
+ "batchNumber": 194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164358275,
+ "shortestRoundTripNano": 61412626,
+ "longestRoundTripNano": 192666340,
+ "averageApexExecutionNano": 79209865,
+ "shortestApexExecutionNano": 5830009,
+ "longestApexExecutionNano": 140367218
+ },
+ {
+ "batchNumber": 195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140371464,
+ "shortestRoundTripNano": 42987112,
+ "longestRoundTripNano": 166833174,
+ "averageApexExecutionNano": 57293760,
+ "shortestApexExecutionNano": 8044830,
+ "longestApexExecutionNano": 107249553
+ },
+ {
+ "batchNumber": 196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142362004,
+ "shortestRoundTripNano": 82876568,
+ "longestRoundTripNano": 169333031,
+ "averageApexExecutionNano": 62305230,
+ "shortestApexExecutionNano": 7305849,
+ "longestApexExecutionNano": 129755286
+ },
+ {
+ "batchNumber": 197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139810910,
+ "shortestRoundTripNano": 54278417,
+ "longestRoundTripNano": 168807521,
+ "averageApexExecutionNano": 63862477,
+ "shortestApexExecutionNano": 10717520,
+ "longestApexExecutionNano": 126038439
+ },
+ {
+ "batchNumber": 198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142814519,
+ "shortestRoundTripNano": 69324424,
+ "longestRoundTripNano": 169253946,
+ "averageApexExecutionNano": 57864012,
+ "shortestApexExecutionNano": 5301719,
+ "longestApexExecutionNano": 127855866
+ },
+ {
+ "batchNumber": 199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172438955,
+ "shortestRoundTripNano": 101960682,
+ "longestRoundTripNano": 200542494,
+ "averageApexExecutionNano": 60401072,
+ "shortestApexExecutionNano": 11044473,
+ "longestApexExecutionNano": 132712277
+ },
+ {
+ "batchNumber": 200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154330581,
+ "shortestRoundTripNano": 52035508,
+ "longestRoundTripNano": 188494178,
+ "averageApexExecutionNano": 52566366,
+ "shortestApexExecutionNano": 6091126,
+ "longestApexExecutionNano": 117811465
+ },
+ {
+ "batchNumber": 201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137611353,
+ "shortestRoundTripNano": 67283458,
+ "longestRoundTripNano": 164200746,
+ "averageApexExecutionNano": 69177400,
+ "shortestApexExecutionNano": 8872502,
+ "longestApexExecutionNano": 115863444
+ },
+ {
+ "batchNumber": 202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137167897,
+ "shortestRoundTripNano": 68891360,
+ "longestRoundTripNano": 169862779,
+ "averageApexExecutionNano": 43733892,
+ "shortestApexExecutionNano": 7352770,
+ "longestApexExecutionNano": 101697426
+ },
+ {
+ "batchNumber": 203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140088504,
+ "shortestRoundTripNano": 68960975,
+ "longestRoundTripNano": 173030335,
+ "averageApexExecutionNano": 62422816,
+ "shortestApexExecutionNano": 11114496,
+ "longestApexExecutionNano": 109948443
+ },
+ {
+ "batchNumber": 204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136029514,
+ "shortestRoundTripNano": 78941522,
+ "longestRoundTripNano": 162919998,
+ "averageApexExecutionNano": 59111611,
+ "shortestApexExecutionNano": 9105456,
+ "longestApexExecutionNano": 119288900
+ },
+ {
+ "batchNumber": 205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159104587,
+ "shortestRoundTripNano": 57772718,
+ "longestRoundTripNano": 198694693,
+ "averageApexExecutionNano": 79532769,
+ "shortestApexExecutionNano": 10857570,
+ "longestApexExecutionNano": 150235857
+ },
+ {
+ "batchNumber": 206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165791467,
+ "shortestRoundTripNano": 84081019,
+ "longestRoundTripNano": 190835063,
+ "averageApexExecutionNano": 86106927,
+ "shortestApexExecutionNano": 16596054,
+ "longestApexExecutionNano": 150716200
+ },
+ {
+ "batchNumber": 207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161174842,
+ "shortestRoundTripNano": 88867483,
+ "longestRoundTripNano": 188531686,
+ "averageApexExecutionNano": 70515764,
+ "shortestApexExecutionNano": 11311825,
+ "longestApexExecutionNano": 139118343
+ },
+ {
+ "batchNumber": 208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150240431,
+ "shortestRoundTripNano": 44090324,
+ "longestRoundTripNano": 184718845,
+ "averageApexExecutionNano": 53279094,
+ "shortestApexExecutionNano": 11094271,
+ "longestApexExecutionNano": 125490367
+ },
+ {
+ "batchNumber": 209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174429501,
+ "shortestRoundTripNano": 88750846,
+ "longestRoundTripNano": 196953326,
+ "averageApexExecutionNano": 73863024,
+ "shortestApexExecutionNano": 11291146,
+ "longestApexExecutionNano": 132930532
+ },
+ {
+ "batchNumber": 210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155750689,
+ "shortestRoundTripNano": 83870039,
+ "longestRoundTripNano": 192417495,
+ "averageApexExecutionNano": 59729852,
+ "shortestApexExecutionNano": 10645449,
+ "longestApexExecutionNano": 113241322
+ },
+ {
+ "batchNumber": 211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158109282,
+ "shortestRoundTripNano": 79812778,
+ "longestRoundTripNano": 196282724,
+ "averageApexExecutionNano": 75275887,
+ "shortestApexExecutionNano": 15408424,
+ "longestApexExecutionNano": 129417787
+ },
+ {
+ "batchNumber": 212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142001664,
+ "shortestRoundTripNano": 67452943,
+ "longestRoundTripNano": 166546529,
+ "averageApexExecutionNano": 40372019,
+ "shortestApexExecutionNano": 9749552,
+ "longestApexExecutionNano": 91573111
+ },
+ {
+ "batchNumber": 213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127468327,
+ "shortestRoundTripNano": 59790077,
+ "longestRoundTripNano": 154163076,
+ "averageApexExecutionNano": 57301150,
+ "shortestApexExecutionNano": 9252060,
+ "longestApexExecutionNano": 103917289
+ },
+ {
+ "batchNumber": 214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173742832,
+ "shortestRoundTripNano": 75739451,
+ "longestRoundTripNano": 204718301,
+ "averageApexExecutionNano": 75206740,
+ "shortestApexExecutionNano": 7934152,
+ "longestApexExecutionNano": 151636400
+ },
+ {
+ "batchNumber": 215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153413711,
+ "shortestRoundTripNano": 65734890,
+ "longestRoundTripNano": 177073095,
+ "averageApexExecutionNano": 71832331,
+ "shortestApexExecutionNano": 8888345,
+ "longestApexExecutionNano": 115199710
+ },
+ {
+ "batchNumber": 216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154975246,
+ "shortestRoundTripNano": 86032164,
+ "longestRoundTripNano": 186562765,
+ "averageApexExecutionNano": 81347812,
+ "shortestApexExecutionNano": 10310615,
+ "longestApexExecutionNano": 145887623
+ },
+ {
+ "batchNumber": 217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168975687,
+ "shortestRoundTripNano": 48758500,
+ "longestRoundTripNano": 200921441,
+ "averageApexExecutionNano": 72608598,
+ "shortestApexExecutionNano": 8149515,
+ "longestApexExecutionNano": 154082129
+ },
+ {
+ "batchNumber": 218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146623695,
+ "shortestRoundTripNano": 70474603,
+ "longestRoundTripNano": 173896219,
+ "averageApexExecutionNano": 47695499,
+ "shortestApexExecutionNano": 7288435,
+ "longestApexExecutionNano": 117081207
+ },
+ {
+ "batchNumber": 219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135317905,
+ "shortestRoundTripNano": 61921463,
+ "longestRoundTripNano": 163221329,
+ "averageApexExecutionNano": 62951539,
+ "shortestApexExecutionNano": 8104257,
+ "longestApexExecutionNano": 120299774
+ },
+ {
+ "batchNumber": 220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145344792,
+ "shortestRoundTripNano": 65653478,
+ "longestRoundTripNano": 174430525,
+ "averageApexExecutionNano": 64148238,
+ "shortestApexExecutionNano": 11647467,
+ "longestApexExecutionNano": 129553606
+ },
+ {
+ "batchNumber": 221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163465103,
+ "shortestRoundTripNano": 75265033,
+ "longestRoundTripNano": 200594281,
+ "averageApexExecutionNano": 76524775,
+ "shortestApexExecutionNano": 9955905,
+ "longestApexExecutionNano": 168538030
+ },
+ {
+ "batchNumber": 222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143865286,
+ "shortestRoundTripNano": 71415269,
+ "longestRoundTripNano": 171276868,
+ "averageApexExecutionNano": 64419532,
+ "shortestApexExecutionNano": 8505563,
+ "longestApexExecutionNano": 116560109
+ },
+ {
+ "batchNumber": 223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167016225,
+ "shortestRoundTripNano": 84273438,
+ "longestRoundTripNano": 198803942,
+ "averageApexExecutionNano": 60329394,
+ "shortestApexExecutionNano": 10125133,
+ "longestApexExecutionNano": 132500128
+ },
+ {
+ "batchNumber": 224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157091138,
+ "shortestRoundTripNano": 42765436,
+ "longestRoundTripNano": 195849545,
+ "averageApexExecutionNano": 78784404,
+ "shortestApexExecutionNano": 11449686,
+ "longestApexExecutionNano": 159375446
+ },
+ {
+ "batchNumber": 225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149875670,
+ "shortestRoundTripNano": 57424429,
+ "longestRoundTripNano": 182059007,
+ "averageApexExecutionNano": 63110182,
+ "shortestApexExecutionNano": 6519194,
+ "longestApexExecutionNano": 116321936
+ },
+ {
+ "batchNumber": 226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173333981,
+ "shortestRoundTripNano": 81808319,
+ "longestRoundTripNano": 205844113,
+ "averageApexExecutionNano": 60454160,
+ "shortestApexExecutionNano": 12871461,
+ "longestApexExecutionNano": 137614515
+ },
+ {
+ "batchNumber": 227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166224217,
+ "shortestRoundTripNano": 61720468,
+ "longestRoundTripNano": 199476892,
+ "averageApexExecutionNano": 64611763,
+ "shortestApexExecutionNano": 4331577,
+ "longestApexExecutionNano": 128069414
+ },
+ {
+ "batchNumber": 228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145077716,
+ "shortestRoundTripNano": 64948665,
+ "longestRoundTripNano": 171772794,
+ "averageApexExecutionNano": 57456909,
+ "shortestApexExecutionNano": 10860943,
+ "longestApexExecutionNano": 114295670
+ },
+ {
+ "batchNumber": 229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142811596,
+ "shortestRoundTripNano": 72955292,
+ "longestRoundTripNano": 165809819,
+ "averageApexExecutionNano": 59111061,
+ "shortestApexExecutionNano": 6885196,
+ "longestApexExecutionNano": 120284961
+ },
+ {
+ "batchNumber": 230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156854809,
+ "shortestRoundTripNano": 65278404,
+ "longestRoundTripNano": 196199334,
+ "averageApexExecutionNano": 60019983,
+ "shortestApexExecutionNano": 8359029,
+ "longestApexExecutionNano": 113996413
+ },
+ {
+ "batchNumber": 231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146092187,
+ "shortestRoundTripNano": 76272308,
+ "longestRoundTripNano": 187441105,
+ "averageApexExecutionNano": 58108617,
+ "shortestApexExecutionNano": 13523508,
+ "longestApexExecutionNano": 111245055
+ },
+ {
+ "batchNumber": 232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166478835,
+ "shortestRoundTripNano": 67690608,
+ "longestRoundTripNano": 194267211,
+ "averageApexExecutionNano": 78809794,
+ "shortestApexExecutionNano": 11363332,
+ "longestApexExecutionNano": 136720234
+ },
+ {
+ "batchNumber": 233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170793248,
+ "shortestRoundTripNano": 58052203,
+ "longestRoundTripNano": 196605529,
+ "averageApexExecutionNano": 76227912,
+ "shortestApexExecutionNano": 11669108,
+ "longestApexExecutionNano": 138819322
+ },
+ {
+ "batchNumber": 234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143633461,
+ "shortestRoundTripNano": 54944107,
+ "longestRoundTripNano": 173233525,
+ "averageApexExecutionNano": 60606476,
+ "shortestApexExecutionNano": 7691466,
+ "longestApexExecutionNano": 119429689
+ },
+ {
+ "batchNumber": 235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138151290,
+ "shortestRoundTripNano": 51751982,
+ "longestRoundTripNano": 170089168,
+ "averageApexExecutionNano": 51371303,
+ "shortestApexExecutionNano": 6033286,
+ "longestApexExecutionNano": 108691060
+ },
+ {
+ "batchNumber": 236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143935661,
+ "shortestRoundTripNano": 70418070,
+ "longestRoundTripNano": 164838273,
+ "averageApexExecutionNano": 67803545,
+ "shortestApexExecutionNano": 21291938,
+ "longestApexExecutionNano": 123166643
+ },
+ {
+ "batchNumber": 237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144929963,
+ "shortestRoundTripNano": 74609671,
+ "longestRoundTripNano": 172902351,
+ "averageApexExecutionNano": 64838658,
+ "shortestApexExecutionNano": 8935959,
+ "longestApexExecutionNano": 128761865
+ },
+ {
+ "batchNumber": 238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145014169,
+ "shortestRoundTripNano": 75231995,
+ "longestRoundTripNano": 171473261,
+ "averageApexExecutionNano": 61014743,
+ "shortestApexExecutionNano": 6600325,
+ "longestApexExecutionNano": 119780608
+ },
+ {
+ "batchNumber": 239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136091944,
+ "shortestRoundTripNano": 72526226,
+ "longestRoundTripNano": 166070863,
+ "averageApexExecutionNano": 65862682,
+ "shortestApexExecutionNano": 7740551,
+ "longestApexExecutionNano": 126037894
+ },
+ {
+ "batchNumber": 240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177246284,
+ "shortestRoundTripNano": 59646567,
+ "longestRoundTripNano": 216074738,
+ "averageApexExecutionNano": 75214511,
+ "shortestApexExecutionNano": 12975498,
+ "longestApexExecutionNano": 163515341
+ },
+ {
+ "batchNumber": 241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154474142,
+ "shortestRoundTripNano": 70200945,
+ "longestRoundTripNano": 195845352,
+ "averageApexExecutionNano": 61682305,
+ "shortestApexExecutionNano": 11423921,
+ "longestApexExecutionNano": 119681972
+ },
+ {
+ "batchNumber": 242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137986399,
+ "shortestRoundTripNano": 48067943,
+ "longestRoundTripNano": 169079167,
+ "averageApexExecutionNano": 60405033,
+ "shortestApexExecutionNano": 4962358,
+ "longestApexExecutionNano": 132731330
+ },
+ {
+ "batchNumber": 243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139491462,
+ "shortestRoundTripNano": 64870409,
+ "longestRoundTripNano": 176830212,
+ "averageApexExecutionNano": 56503527,
+ "shortestApexExecutionNano": 5477174,
+ "longestApexExecutionNano": 116514999
+ },
+ {
+ "batchNumber": 244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134906290,
+ "shortestRoundTripNano": 63674651,
+ "longestRoundTripNano": 174627553,
+ "averageApexExecutionNano": 55544516,
+ "shortestApexExecutionNano": 8740561,
+ "longestApexExecutionNano": 116669627
+ },
+ {
+ "batchNumber": 245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158754361,
+ "shortestRoundTripNano": 69395154,
+ "longestRoundTripNano": 191696981,
+ "averageApexExecutionNano": 63650271,
+ "shortestApexExecutionNano": 11463266,
+ "longestApexExecutionNano": 146022487
+ },
+ {
+ "batchNumber": 246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137723819,
+ "shortestRoundTripNano": 54905749,
+ "longestRoundTripNano": 168734020,
+ "averageApexExecutionNano": 52050077,
+ "shortestApexExecutionNano": 6876048,
+ "longestApexExecutionNano": 128032918
+ },
+ {
+ "batchNumber": 247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133677195,
+ "shortestRoundTripNano": 66651674,
+ "longestRoundTripNano": 159285707,
+ "averageApexExecutionNano": 53572584,
+ "shortestApexExecutionNano": 8348266,
+ "longestApexExecutionNano": 108428861
+ },
+ {
+ "batchNumber": 248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174279439,
+ "shortestRoundTripNano": 63139377,
+ "longestRoundTripNano": 217225632,
+ "averageApexExecutionNano": 78847685,
+ "shortestApexExecutionNano": 11340186,
+ "longestApexExecutionNano": 129744976
+ },
+ {
+ "batchNumber": 249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137771471,
+ "shortestRoundTripNano": 60920922,
+ "longestRoundTripNano": 174740239,
+ "averageApexExecutionNano": 52315344,
+ "shortestApexExecutionNano": 10344751,
+ "longestApexExecutionNano": 112513129
+ },
+ {
+ "batchNumber": 250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156711338,
+ "shortestRoundTripNano": 63620305,
+ "longestRoundTripNano": 186027957,
+ "averageApexExecutionNano": 66136619,
+ "shortestApexExecutionNano": 12725732,
+ "longestApexExecutionNano": 117020540
+ },
+ {
+ "batchNumber": 251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141061805,
+ "shortestRoundTripNano": 64595251,
+ "longestRoundTripNano": 174003997,
+ "averageApexExecutionNano": 47074960,
+ "shortestApexExecutionNano": 10035072,
+ "longestApexExecutionNano": 122459530
+ },
+ {
+ "batchNumber": 252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138920990,
+ "shortestRoundTripNano": 64621587,
+ "longestRoundTripNano": 165405533,
+ "averageApexExecutionNano": 56372202,
+ "shortestApexExecutionNano": 6502381,
+ "longestApexExecutionNano": 106871816
+ },
+ {
+ "batchNumber": 253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128014768,
+ "shortestRoundTripNano": 29344496,
+ "longestRoundTripNano": 159282424,
+ "averageApexExecutionNano": 47244277,
+ "shortestApexExecutionNano": 7745340,
+ "longestApexExecutionNano": 110091396
+ },
+ {
+ "batchNumber": 254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145143282,
+ "shortestRoundTripNano": 67898753,
+ "longestRoundTripNano": 170930136,
+ "averageApexExecutionNano": 62021123,
+ "shortestApexExecutionNano": 9839758,
+ "longestApexExecutionNano": 122891285
+ },
+ {
+ "batchNumber": 255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132701064,
+ "shortestRoundTripNano": 58212840,
+ "longestRoundTripNano": 160684263,
+ "averageApexExecutionNano": 59951204,
+ "shortestApexExecutionNano": 11359235,
+ "longestApexExecutionNano": 107916929
+ },
+ {
+ "batchNumber": 256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123111967,
+ "shortestRoundTripNano": 69331467,
+ "longestRoundTripNano": 145579660,
+ "averageApexExecutionNano": 55254072,
+ "shortestApexExecutionNano": 11764064,
+ "longestApexExecutionNano": 97290915
+ },
+ {
+ "batchNumber": 257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141098471,
+ "shortestRoundTripNano": 48872278,
+ "longestRoundTripNano": 181166183,
+ "averageApexExecutionNano": 48725983,
+ "shortestApexExecutionNano": 13054362,
+ "longestApexExecutionNano": 108360778
+ },
+ {
+ "batchNumber": 258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124743093,
+ "shortestRoundTripNano": 64801867,
+ "longestRoundTripNano": 149293676,
+ "averageApexExecutionNano": 57452834,
+ "shortestApexExecutionNano": 6894552,
+ "longestApexExecutionNano": 96692465
+ },
+ {
+ "batchNumber": 259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157917172,
+ "shortestRoundTripNano": 62401718,
+ "longestRoundTripNano": 189710909,
+ "averageApexExecutionNano": 59049237,
+ "shortestApexExecutionNano": 11707616,
+ "longestApexExecutionNano": 132989404
+ },
+ {
+ "batchNumber": 260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155748618,
+ "shortestRoundTripNano": 64836648,
+ "longestRoundTripNano": 180610070,
+ "averageApexExecutionNano": 76773986,
+ "shortestApexExecutionNano": 15836486,
+ "longestApexExecutionNano": 128042215
+ },
+ {
+ "batchNumber": 261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140593910,
+ "shortestRoundTripNano": 62292185,
+ "longestRoundTripNano": 168632908,
+ "averageApexExecutionNano": 50575656,
+ "shortestApexExecutionNano": 5922883,
+ "longestApexExecutionNano": 116094861
+ },
+ {
+ "batchNumber": 262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129086271,
+ "shortestRoundTripNano": 52715813,
+ "longestRoundTripNano": 152159752,
+ "averageApexExecutionNano": 56169478,
+ "shortestApexExecutionNano": 12272347,
+ "longestApexExecutionNano": 109613642
+ },
+ {
+ "batchNumber": 263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152623646,
+ "shortestRoundTripNano": 74216733,
+ "longestRoundTripNano": 179944726,
+ "averageApexExecutionNano": 69754885,
+ "shortestApexExecutionNano": 17041403,
+ "longestApexExecutionNano": 119311076
+ },
+ {
+ "batchNumber": 264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160122024,
+ "shortestRoundTripNano": 81301196,
+ "longestRoundTripNano": 187925459,
+ "averageApexExecutionNano": 58677181,
+ "shortestApexExecutionNano": 11776998,
+ "longestApexExecutionNano": 145493362
+ },
+ {
+ "batchNumber": 265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145307906,
+ "shortestRoundTripNano": 56870325,
+ "longestRoundTripNano": 182849624,
+ "averageApexExecutionNano": 58239318,
+ "shortestApexExecutionNano": 9563800,
+ "longestApexExecutionNano": 108739128
+ },
+ {
+ "batchNumber": 266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178197610,
+ "shortestRoundTripNano": 85318143,
+ "longestRoundTripNano": 208516411,
+ "averageApexExecutionNano": 75299517,
+ "shortestApexExecutionNano": 13853452,
+ "longestApexExecutionNano": 152518698
+ },
+ {
+ "batchNumber": 267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150334769,
+ "shortestRoundTripNano": 64166999,
+ "longestRoundTripNano": 184377101,
+ "averageApexExecutionNano": 65139879,
+ "shortestApexExecutionNano": 7102910,
+ "longestApexExecutionNano": 140200165
+ },
+ {
+ "batchNumber": 268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146557904,
+ "shortestRoundTripNano": 41695351,
+ "longestRoundTripNano": 185483639,
+ "averageApexExecutionNano": 80730891,
+ "shortestApexExecutionNano": 9459479,
+ "longestApexExecutionNano": 131137937
+ },
+ {
+ "batchNumber": 269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143763562,
+ "shortestRoundTripNano": 60848029,
+ "longestRoundTripNano": 180063737,
+ "averageApexExecutionNano": 67738981,
+ "shortestApexExecutionNano": 10236572,
+ "longestApexExecutionNano": 121494506
+ },
+ {
+ "batchNumber": 270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130862242,
+ "shortestRoundTripNano": 40441751,
+ "longestRoundTripNano": 159461289,
+ "averageApexExecutionNano": 54181461,
+ "shortestApexExecutionNano": 11785331,
+ "longestApexExecutionNano": 117245993
+ },
+ {
+ "batchNumber": 271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123239173,
+ "shortestRoundTripNano": 55769837,
+ "longestRoundTripNano": 150758087,
+ "averageApexExecutionNano": 45447167,
+ "shortestApexExecutionNano": 6569165,
+ "longestApexExecutionNano": 106475742
+ },
+ {
+ "batchNumber": 272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139901258,
+ "shortestRoundTripNano": 68468484,
+ "longestRoundTripNano": 173445635,
+ "averageApexExecutionNano": 53625295,
+ "shortestApexExecutionNano": 7957182,
+ "longestApexExecutionNano": 105981262
+ },
+ {
+ "batchNumber": 273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140159234,
+ "shortestRoundTripNano": 50774545,
+ "longestRoundTripNano": 189025672,
+ "averageApexExecutionNano": 57867264,
+ "shortestApexExecutionNano": 9356348,
+ "longestApexExecutionNano": 121772648
+ },
+ {
+ "batchNumber": 274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144272619,
+ "shortestRoundTripNano": 38733240,
+ "longestRoundTripNano": 183276057,
+ "averageApexExecutionNano": 67655938,
+ "shortestApexExecutionNano": 7481109,
+ "longestApexExecutionNano": 133506905
+ },
+ {
+ "batchNumber": 275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154883924,
+ "shortestRoundTripNano": 74698208,
+ "longestRoundTripNano": 183039375,
+ "averageApexExecutionNano": 68578012,
+ "shortestApexExecutionNano": 7558937,
+ "longestApexExecutionNano": 127507856
+ },
+ {
+ "batchNumber": 276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141945520,
+ "shortestRoundTripNano": 64372268,
+ "longestRoundTripNano": 174511466,
+ "averageApexExecutionNano": 56231809,
+ "shortestApexExecutionNano": 11658111,
+ "longestApexExecutionNano": 98627613
+ },
+ {
+ "batchNumber": 277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147429674,
+ "shortestRoundTripNano": 69134066,
+ "longestRoundTripNano": 179262218,
+ "averageApexExecutionNano": 70895709,
+ "shortestApexExecutionNano": 7147193,
+ "longestApexExecutionNano": 132118298
+ },
+ {
+ "batchNumber": 278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147751003,
+ "shortestRoundTripNano": 76112849,
+ "longestRoundTripNano": 173217690,
+ "averageApexExecutionNano": 62112436,
+ "shortestApexExecutionNano": 6861098,
+ "longestApexExecutionNano": 126305666
+ },
+ {
+ "batchNumber": 279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166233840,
+ "shortestRoundTripNano": 67049646,
+ "longestRoundTripNano": 191103454,
+ "averageApexExecutionNano": 75878343,
+ "shortestApexExecutionNano": 11048626,
+ "longestApexExecutionNano": 119900506
+ },
+ {
+ "batchNumber": 280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147773913,
+ "shortestRoundTripNano": 29593880,
+ "longestRoundTripNano": 181463890,
+ "averageApexExecutionNano": 67229534,
+ "shortestApexExecutionNano": 10156953,
+ "longestApexExecutionNano": 142859026
+ },
+ {
+ "batchNumber": 281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125526232,
+ "shortestRoundTripNano": 60468504,
+ "longestRoundTripNano": 147958047,
+ "averageApexExecutionNano": 42668231,
+ "shortestApexExecutionNano": 6079446,
+ "longestApexExecutionNano": 103581042
+ },
+ {
+ "batchNumber": 282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142517453,
+ "shortestRoundTripNano": 62552686,
+ "longestRoundTripNano": 165025698,
+ "averageApexExecutionNano": 52980816,
+ "shortestApexExecutionNano": 7056260,
+ "longestApexExecutionNano": 110050134
+ },
+ {
+ "batchNumber": 283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162314404,
+ "shortestRoundTripNano": 57989101,
+ "longestRoundTripNano": 197487313,
+ "averageApexExecutionNano": 66724832,
+ "shortestApexExecutionNano": 9291713,
+ "longestApexExecutionNano": 140013260
+ },
+ {
+ "batchNumber": 284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34742",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158405605,
+ "shortestRoundTripNano": 71056710,
+ "longestRoundTripNano": 191269296,
+ "averageApexExecutionNano": 58700412,
+ "shortestApexExecutionNano": 8069279,
+ "longestApexExecutionNano": 133099375
+ },
+ {
+ "batchNumber": 285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34742",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141449170,
+ "shortestRoundTripNano": 41551529,
+ "longestRoundTripNano": 174404677,
+ "averageApexExecutionNano": 75900971,
+ "shortestApexExecutionNano": 16288594,
+ "longestApexExecutionNano": 135327915
+ },
+ {
+ "batchNumber": 286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135338687,
+ "shortestRoundTripNano": 57095443,
+ "longestRoundTripNano": 167063831,
+ "averageApexExecutionNano": 68052260,
+ "shortestApexExecutionNano": 9085209,
+ "longestApexExecutionNano": 115742872
+ },
+ {
+ "batchNumber": 287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161315112,
+ "shortestRoundTripNano": 73625950,
+ "longestRoundTripNano": 187183301,
+ "averageApexExecutionNano": 41448910,
+ "shortestApexExecutionNano": 9944404,
+ "longestApexExecutionNano": 116706026
+ },
+ {
+ "batchNumber": 288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114749730,
+ "shortestRoundTripNano": 47173570,
+ "longestRoundTripNano": 146256350,
+ "averageApexExecutionNano": 42781564,
+ "shortestApexExecutionNano": 8774942,
+ "longestApexExecutionNano": 114542900
+ },
+ {
+ "batchNumber": 289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120508175,
+ "shortestRoundTripNano": 55872183,
+ "longestRoundTripNano": 151496457,
+ "averageApexExecutionNano": 51978822,
+ "shortestApexExecutionNano": 6865725,
+ "longestApexExecutionNano": 116214837
+ },
+ {
+ "batchNumber": 290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34742",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132436750,
+ "shortestRoundTripNano": 58566057,
+ "longestRoundTripNano": 161193664,
+ "averageApexExecutionNano": 52370286,
+ "shortestApexExecutionNano": 8259370,
+ "longestApexExecutionNano": 97737598
+ },
+ {
+ "batchNumber": 291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156516893,
+ "shortestRoundTripNano": 60712711,
+ "longestRoundTripNano": 186872916,
+ "averageApexExecutionNano": 70108316,
+ "shortestApexExecutionNano": 8430912,
+ "longestApexExecutionNano": 122850207
+ },
+ {
+ "batchNumber": 292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140966984,
+ "shortestRoundTripNano": 61219741,
+ "longestRoundTripNano": 170696633,
+ "averageApexExecutionNano": 49109240,
+ "shortestApexExecutionNano": 6307395,
+ "longestApexExecutionNano": 128980138
+ },
+ {
+ "batchNumber": 293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124538168,
+ "shortestRoundTripNano": 34744339,
+ "longestRoundTripNano": 154604816,
+ "averageApexExecutionNano": 49065980,
+ "shortestApexExecutionNano": 6939414,
+ "longestApexExecutionNano": 116639772
+ },
+ {
+ "batchNumber": 294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174364030,
+ "shortestRoundTripNano": 52264355,
+ "longestRoundTripNano": 211274732,
+ "averageApexExecutionNano": 71950897,
+ "shortestApexExecutionNano": 7280499,
+ "longestApexExecutionNano": 123616018
+ },
+ {
+ "batchNumber": 295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153851477,
+ "shortestRoundTripNano": 57039694,
+ "longestRoundTripNano": 185664209,
+ "averageApexExecutionNano": 68579794,
+ "shortestApexExecutionNano": 17883406,
+ "longestApexExecutionNano": 121191735
+ },
+ {
+ "batchNumber": 296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133546465,
+ "shortestRoundTripNano": 50902432,
+ "longestRoundTripNano": 166191747,
+ "averageApexExecutionNano": 47577868,
+ "shortestApexExecutionNano": 5530802,
+ "longestApexExecutionNano": 128101939
+ },
+ {
+ "batchNumber": 297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135044394,
+ "shortestRoundTripNano": 58682460,
+ "longestRoundTripNano": 157686800,
+ "averageApexExecutionNano": 56821517,
+ "shortestApexExecutionNano": 6724545,
+ "longestApexExecutionNano": 111110778
+ },
+ {
+ "batchNumber": 298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143064407,
+ "shortestRoundTripNano": 60895247,
+ "longestRoundTripNano": 166514688,
+ "averageApexExecutionNano": 54123646,
+ "shortestApexExecutionNano": 8997019,
+ "longestApexExecutionNano": 101655828
+ },
+ {
+ "batchNumber": 299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130710358,
+ "shortestRoundTripNano": 55190652,
+ "longestRoundTripNano": 156540038,
+ "averageApexExecutionNano": 51032689,
+ "shortestApexExecutionNano": 8656251,
+ "longestApexExecutionNano": 108506797
+ },
+ {
+ "batchNumber": 300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163122867,
+ "shortestRoundTripNano": 88053619,
+ "longestRoundTripNano": 188899285,
+ "averageApexExecutionNano": 75157308,
+ "shortestApexExecutionNano": 18398876,
+ "longestApexExecutionNano": 130654177
+ },
+ {
+ "batchNumber": 301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149999220,
+ "shortestRoundTripNano": 76062332,
+ "longestRoundTripNano": 173776668,
+ "averageApexExecutionNano": 52516482,
+ "shortestApexExecutionNano": 7156645,
+ "longestApexExecutionNano": 108075281
+ },
+ {
+ "batchNumber": 302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158687096,
+ "shortestRoundTripNano": 74821489,
+ "longestRoundTripNano": 180643620,
+ "averageApexExecutionNano": 73005345,
+ "shortestApexExecutionNano": 15561076,
+ "longestApexExecutionNano": 125603445
+ },
+ {
+ "batchNumber": 303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137849992,
+ "shortestRoundTripNano": 78525132,
+ "longestRoundTripNano": 169735820,
+ "averageApexExecutionNano": 62399991,
+ "shortestApexExecutionNano": 8845937,
+ "longestApexExecutionNano": 123687272
+ },
+ {
+ "batchNumber": 304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156512281,
+ "shortestRoundTripNano": 85499585,
+ "longestRoundTripNano": 189243345,
+ "averageApexExecutionNano": 58407521,
+ "shortestApexExecutionNano": 9749891,
+ "longestApexExecutionNano": 124181950
+ },
+ {
+ "batchNumber": 305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137272887,
+ "shortestRoundTripNano": 75679089,
+ "longestRoundTripNano": 161306426,
+ "averageApexExecutionNano": 59100247,
+ "shortestApexExecutionNano": 11488542,
+ "longestApexExecutionNano": 112091302
+ },
+ {
+ "batchNumber": 306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151927505,
+ "shortestRoundTripNano": 89778639,
+ "longestRoundTripNano": 174063337,
+ "averageApexExecutionNano": 64145420,
+ "shortestApexExecutionNano": 9860834,
+ "longestApexExecutionNano": 110091754
+ },
+ {
+ "batchNumber": 307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139545326,
+ "shortestRoundTripNano": 68398540,
+ "longestRoundTripNano": 166736456,
+ "averageApexExecutionNano": 66080322,
+ "shortestApexExecutionNano": 14413066,
+ "longestApexExecutionNano": 126807751
+ },
+ {
+ "batchNumber": 308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154933555,
+ "shortestRoundTripNano": 65033431,
+ "longestRoundTripNano": 191979170,
+ "averageApexExecutionNano": 67022340,
+ "shortestApexExecutionNano": 5160158,
+ "longestApexExecutionNano": 119629339
+ },
+ {
+ "batchNumber": 309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163756783,
+ "shortestRoundTripNano": 81011748,
+ "longestRoundTripNano": 201582301,
+ "averageApexExecutionNano": 80852156,
+ "shortestApexExecutionNano": 9341018,
+ "longestApexExecutionNano": 148227264
+ },
+ {
+ "batchNumber": 310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126677320,
+ "shortestRoundTripNano": 28288314,
+ "longestRoundTripNano": 155908373,
+ "averageApexExecutionNano": 58108889,
+ "shortestApexExecutionNano": 4940055,
+ "longestApexExecutionNano": 106494146
+ },
+ {
+ "batchNumber": 311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174655600,
+ "shortestRoundTripNano": 55100485,
+ "longestRoundTripNano": 201799677,
+ "averageApexExecutionNano": 74610792,
+ "shortestApexExecutionNano": 8517936,
+ "longestApexExecutionNano": 139227521
+ },
+ {
+ "batchNumber": 312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142056818,
+ "shortestRoundTripNano": 81572837,
+ "longestRoundTripNano": 167741285,
+ "averageApexExecutionNano": 58489492,
+ "shortestApexExecutionNano": 6463394,
+ "longestApexExecutionNano": 121272980
+ },
+ {
+ "batchNumber": 313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139844103,
+ "shortestRoundTripNano": 57359168,
+ "longestRoundTripNano": 178890193,
+ "averageApexExecutionNano": 55726985,
+ "shortestApexExecutionNano": 6636592,
+ "longestApexExecutionNano": 124714961
+ },
+ {
+ "batchNumber": 314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147437331,
+ "shortestRoundTripNano": 61679932,
+ "longestRoundTripNano": 177885146,
+ "averageApexExecutionNano": 54755403,
+ "shortestApexExecutionNano": 7427664,
+ "longestApexExecutionNano": 111790550
+ },
+ {
+ "batchNumber": 315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153559325,
+ "shortestRoundTripNano": 78324589,
+ "longestRoundTripNano": 189603844,
+ "averageApexExecutionNano": 60936391,
+ "shortestApexExecutionNano": 6045539,
+ "longestApexExecutionNano": 121169630
+ },
+ {
+ "batchNumber": 316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147392173,
+ "shortestRoundTripNano": 77871755,
+ "longestRoundTripNano": 173364157,
+ "averageApexExecutionNano": 48576344,
+ "shortestApexExecutionNano": 8039992,
+ "longestApexExecutionNano": 108697678
+ },
+ {
+ "batchNumber": 317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172896102,
+ "shortestRoundTripNano": 67802738,
+ "longestRoundTripNano": 220022081,
+ "averageApexExecutionNano": 84137026,
+ "shortestApexExecutionNano": 13919746,
+ "longestApexExecutionNano": 157152048
+ },
+ {
+ "batchNumber": 318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147077674,
+ "shortestRoundTripNano": 33291314,
+ "longestRoundTripNano": 178316363,
+ "averageApexExecutionNano": 67915674,
+ "shortestApexExecutionNano": 7431701,
+ "longestApexExecutionNano": 130491709
+ },
+ {
+ "batchNumber": 319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144582192,
+ "shortestRoundTripNano": 68986827,
+ "longestRoundTripNano": 172678350,
+ "averageApexExecutionNano": 51232771,
+ "shortestApexExecutionNano": 8449769,
+ "longestApexExecutionNano": 107619405
+ },
+ {
+ "batchNumber": 320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142157160,
+ "shortestRoundTripNano": 78333333,
+ "longestRoundTripNano": 170119883,
+ "averageApexExecutionNano": 51136697,
+ "shortestApexExecutionNano": 6425231,
+ "longestApexExecutionNano": 104188697
+ },
+ {
+ "batchNumber": 321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141137549,
+ "shortestRoundTripNano": 80446356,
+ "longestRoundTripNano": 168268016,
+ "averageApexExecutionNano": 71669601,
+ "shortestApexExecutionNano": 5813820,
+ "longestApexExecutionNano": 129104657
+ },
+ {
+ "batchNumber": 322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148336946,
+ "shortestRoundTripNano": 48187063,
+ "longestRoundTripNano": 197915666,
+ "averageApexExecutionNano": 54408882,
+ "shortestApexExecutionNano": 6587468,
+ "longestApexExecutionNano": 153079029
+ },
+ {
+ "batchNumber": 323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149845114,
+ "shortestRoundTripNano": 84877082,
+ "longestRoundTripNano": 180154485,
+ "averageApexExecutionNano": 72571631,
+ "shortestApexExecutionNano": 6528016,
+ "longestApexExecutionNano": 131084838
+ },
+ {
+ "batchNumber": 324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123662331,
+ "shortestRoundTripNano": 63396295,
+ "longestRoundTripNano": 146591641,
+ "averageApexExecutionNano": 51313839,
+ "shortestApexExecutionNano": 19990799,
+ "longestApexExecutionNano": 105235925
+ },
+ {
+ "batchNumber": 325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142252795,
+ "shortestRoundTripNano": 52089084,
+ "longestRoundTripNano": 183818387,
+ "averageApexExecutionNano": 60283553,
+ "shortestApexExecutionNano": 7970202,
+ "longestApexExecutionNano": 137390835
+ },
+ {
+ "batchNumber": 326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139723055,
+ "shortestRoundTripNano": 66977497,
+ "longestRoundTripNano": 164109078,
+ "averageApexExecutionNano": 68348481,
+ "shortestApexExecutionNano": 11773171,
+ "longestApexExecutionNano": 125130604
+ },
+ {
+ "batchNumber": 327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138592725,
+ "shortestRoundTripNano": 84261521,
+ "longestRoundTripNano": 159818028,
+ "averageApexExecutionNano": 58663791,
+ "shortestApexExecutionNano": 20247554,
+ "longestApexExecutionNano": 110095484
+ },
+ {
+ "batchNumber": 328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146910646,
+ "shortestRoundTripNano": 69421487,
+ "longestRoundTripNano": 173021451,
+ "averageApexExecutionNano": 58732649,
+ "shortestApexExecutionNano": 7177607,
+ "longestApexExecutionNano": 115133281
+ },
+ {
+ "batchNumber": 329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175375958,
+ "shortestRoundTripNano": 51555795,
+ "longestRoundTripNano": 199574427,
+ "averageApexExecutionNano": 88054784,
+ "shortestApexExecutionNano": 8733588,
+ "longestApexExecutionNano": 158291484
+ },
+ {
+ "batchNumber": 330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140388714,
+ "shortestRoundTripNano": 68702639,
+ "longestRoundTripNano": 168885092,
+ "averageApexExecutionNano": 54883191,
+ "shortestApexExecutionNano": 7270511,
+ "longestApexExecutionNano": 123699749
+ },
+ {
+ "batchNumber": 331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125908492,
+ "shortestRoundTripNano": 59131498,
+ "longestRoundTripNano": 160317845,
+ "averageApexExecutionNano": 51387459,
+ "shortestApexExecutionNano": 7615228,
+ "longestApexExecutionNano": 110287854
+ },
+ {
+ "batchNumber": 332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150106463,
+ "shortestRoundTripNano": 65622389,
+ "longestRoundTripNano": 187172483,
+ "averageApexExecutionNano": 65306809,
+ "shortestApexExecutionNano": 5134464,
+ "longestApexExecutionNano": 131107679
+ },
+ {
+ "batchNumber": 333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134411771,
+ "shortestRoundTripNano": 71315858,
+ "longestRoundTripNano": 154629680,
+ "averageApexExecutionNano": 60806049,
+ "shortestApexExecutionNano": 8597147,
+ "longestApexExecutionNano": 109811371
+ },
+ {
+ "batchNumber": 334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132687071,
+ "shortestRoundTripNano": 50839735,
+ "longestRoundTripNano": 160368378,
+ "averageApexExecutionNano": 44389405,
+ "shortestApexExecutionNano": 6749527,
+ "longestApexExecutionNano": 101315538
+ },
+ {
+ "batchNumber": 335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136208091,
+ "shortestRoundTripNano": 78858232,
+ "longestRoundTripNano": 163462157,
+ "averageApexExecutionNano": 56523629,
+ "shortestApexExecutionNano": 6970334,
+ "longestApexExecutionNano": 103597347
+ },
+ {
+ "batchNumber": 336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133597929,
+ "shortestRoundTripNano": 60962306,
+ "longestRoundTripNano": 161965662,
+ "averageApexExecutionNano": 52896521,
+ "shortestApexExecutionNano": 5440766,
+ "longestApexExecutionNano": 106257229
+ },
+ {
+ "batchNumber": 337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133626948,
+ "shortestRoundTripNano": 62792855,
+ "longestRoundTripNano": 165720966,
+ "averageApexExecutionNano": 55147865,
+ "shortestApexExecutionNano": 7361932,
+ "longestApexExecutionNano": 122327675
+ },
+ {
+ "batchNumber": 338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131076235,
+ "shortestRoundTripNano": 63900859,
+ "longestRoundTripNano": 157677439,
+ "averageApexExecutionNano": 58906405,
+ "shortestApexExecutionNano": 8181654,
+ "longestApexExecutionNano": 106929069
+ },
+ {
+ "batchNumber": 339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155829051,
+ "shortestRoundTripNano": 54208426,
+ "longestRoundTripNano": 181507589,
+ "averageApexExecutionNano": 61473515,
+ "shortestApexExecutionNano": 10859559,
+ "longestApexExecutionNano": 134127224
+ },
+ {
+ "batchNumber": 340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34764",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136167159,
+ "shortestRoundTripNano": 58074461,
+ "longestRoundTripNano": 165971498,
+ "averageApexExecutionNano": 47638850,
+ "shortestApexExecutionNano": 8055848,
+ "longestApexExecutionNano": 109815041
+ },
+ {
+ "batchNumber": 341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166756423,
+ "shortestRoundTripNano": 65116790,
+ "longestRoundTripNano": 204549191,
+ "averageApexExecutionNano": 66111741,
+ "shortestApexExecutionNano": 10129243,
+ "longestApexExecutionNano": 149021324
+ },
+ {
+ "batchNumber": 342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145766452,
+ "shortestRoundTripNano": 68370696,
+ "longestRoundTripNano": 182086366,
+ "averageApexExecutionNano": 46512534,
+ "shortestApexExecutionNano": 10748347,
+ "longestApexExecutionNano": 102067963
+ },
+ {
+ "batchNumber": 343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129147591,
+ "shortestRoundTripNano": 49207570,
+ "longestRoundTripNano": 169130908,
+ "averageApexExecutionNano": 65454597,
+ "shortestApexExecutionNano": 9344349,
+ "longestApexExecutionNano": 117783598
+ },
+ {
+ "batchNumber": 344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122960513,
+ "shortestRoundTripNano": 57370239,
+ "longestRoundTripNano": 153501625,
+ "averageApexExecutionNano": 54968764,
+ "shortestApexExecutionNano": 8521182,
+ "longestApexExecutionNano": 116365458
+ },
+ {
+ "batchNumber": 345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116217306,
+ "shortestRoundTripNano": 49060932,
+ "longestRoundTripNano": 142795418,
+ "averageApexExecutionNano": 48785262,
+ "shortestApexExecutionNano": 6041231,
+ "longestApexExecutionNano": 106316340
+ },
+ {
+ "batchNumber": 346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122578726,
+ "shortestRoundTripNano": 60548943,
+ "longestRoundTripNano": 147426926,
+ "averageApexExecutionNano": 41934823,
+ "shortestApexExecutionNano": 5906852,
+ "longestApexExecutionNano": 95414278
+ },
+ {
+ "batchNumber": 347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146910127,
+ "shortestRoundTripNano": 63996172,
+ "longestRoundTripNano": 175082181,
+ "averageApexExecutionNano": 54103124,
+ "shortestApexExecutionNano": 9972734,
+ "longestApexExecutionNano": 124466491
+ },
+ {
+ "batchNumber": 348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 250936483,
+ "shortestRoundTripNano": 48436258,
+ "longestRoundTripNano": 292652120,
+ "averageApexExecutionNano": 123815248,
+ "shortestApexExecutionNano": 6984882,
+ "longestApexExecutionNano": 253664264
+ },
+ {
+ "batchNumber": 349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121850088,
+ "shortestRoundTripNano": 45917124,
+ "longestRoundTripNano": 149770195,
+ "averageApexExecutionNano": 41185348,
+ "shortestApexExecutionNano": 6452987,
+ "longestApexExecutionNano": 83768299
+ },
+ {
+ "batchNumber": 350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136306294,
+ "shortestRoundTripNano": 68832297,
+ "longestRoundTripNano": 165674755,
+ "averageApexExecutionNano": 62720260,
+ "shortestApexExecutionNano": 6206731,
+ "longestApexExecutionNano": 129522726
+ },
+ {
+ "batchNumber": 351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138349432,
+ "shortestRoundTripNano": 65398806,
+ "longestRoundTripNano": 176421684,
+ "averageApexExecutionNano": 61700903,
+ "shortestApexExecutionNano": 7774584,
+ "longestApexExecutionNano": 126473130
+ },
+ {
+ "batchNumber": 352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126848358,
+ "shortestRoundTripNano": 46231552,
+ "longestRoundTripNano": 152114804,
+ "averageApexExecutionNano": 57795630,
+ "shortestApexExecutionNano": 11114342,
+ "longestApexExecutionNano": 111511259
+ },
+ {
+ "batchNumber": 353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126292354,
+ "shortestRoundTripNano": 48611964,
+ "longestRoundTripNano": 149526618,
+ "averageApexExecutionNano": 45675581,
+ "shortestApexExecutionNano": 8294304,
+ "longestApexExecutionNano": 98531751
+ },
+ {
+ "batchNumber": 354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138860789,
+ "shortestRoundTripNano": 62038627,
+ "longestRoundTripNano": 167558588,
+ "averageApexExecutionNano": 58088214,
+ "shortestApexExecutionNano": 7789168,
+ "longestApexExecutionNano": 103972337
+ },
+ {
+ "batchNumber": 355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120805701,
+ "shortestRoundTripNano": 58409318,
+ "longestRoundTripNano": 148386473,
+ "averageApexExecutionNano": 36334297,
+ "shortestApexExecutionNano": 7469501,
+ "longestApexExecutionNano": 90540836
+ },
+ {
+ "batchNumber": 356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118437914,
+ "shortestRoundTripNano": 53562798,
+ "longestRoundTripNano": 148666238,
+ "averageApexExecutionNano": 44328536,
+ "shortestApexExecutionNano": 6202777,
+ "longestApexExecutionNano": 105157590
+ },
+ {
+ "batchNumber": 357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137848050,
+ "shortestRoundTripNano": 68396217,
+ "longestRoundTripNano": 176112585,
+ "averageApexExecutionNano": 48424403,
+ "shortestApexExecutionNano": 11438478,
+ "longestApexExecutionNano": 98408288
+ },
+ {
+ "batchNumber": 358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156240730,
+ "shortestRoundTripNano": 86483071,
+ "longestRoundTripNano": 176452541,
+ "averageApexExecutionNano": 79483012,
+ "shortestApexExecutionNano": 13199531,
+ "longestApexExecutionNano": 128805965
+ },
+ {
+ "batchNumber": 359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137580695,
+ "shortestRoundTripNano": 43971481,
+ "longestRoundTripNano": 166888244,
+ "averageApexExecutionNano": 55080619,
+ "shortestApexExecutionNano": 5429697,
+ "longestApexExecutionNano": 128823247
+ },
+ {
+ "batchNumber": 360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124740325,
+ "shortestRoundTripNano": 47645218,
+ "longestRoundTripNano": 158117143,
+ "averageApexExecutionNano": 45846316,
+ "shortestApexExecutionNano": 5655027,
+ "longestApexExecutionNano": 102086007
+ },
+ {
+ "batchNumber": 361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138978177,
+ "shortestRoundTripNano": 74893617,
+ "longestRoundTripNano": 158906850,
+ "averageApexExecutionNano": 59361773,
+ "shortestApexExecutionNano": 12938662,
+ "longestApexExecutionNano": 109801111
+ },
+ {
+ "batchNumber": 362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158183340,
+ "shortestRoundTripNano": 75621413,
+ "longestRoundTripNano": 180571019,
+ "averageApexExecutionNano": 55624877,
+ "shortestApexExecutionNano": 11696453,
+ "longestApexExecutionNano": 130821110
+ },
+ {
+ "batchNumber": 363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126417807,
+ "shortestRoundTripNano": 45573768,
+ "longestRoundTripNano": 157375833,
+ "averageApexExecutionNano": 52620968,
+ "shortestApexExecutionNano": 9286562,
+ "longestApexExecutionNano": 109326620
+ },
+ {
+ "batchNumber": 364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153885590,
+ "shortestRoundTripNano": 65716916,
+ "longestRoundTripNano": 189667465,
+ "averageApexExecutionNano": 67803817,
+ "shortestApexExecutionNano": 14203998,
+ "longestApexExecutionNano": 141758160
+ },
+ {
+ "batchNumber": 365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151067843,
+ "shortestRoundTripNano": 55921903,
+ "longestRoundTripNano": 177861495,
+ "averageApexExecutionNano": 67452885,
+ "shortestApexExecutionNano": 8726176,
+ "longestApexExecutionNano": 114273926
+ },
+ {
+ "batchNumber": 366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147006113,
+ "shortestRoundTripNano": 55480865,
+ "longestRoundTripNano": 186324250,
+ "averageApexExecutionNano": 53735531,
+ "shortestApexExecutionNano": 8897672,
+ "longestApexExecutionNano": 132434620
+ },
+ {
+ "batchNumber": 367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130029345,
+ "shortestRoundTripNano": 44081538,
+ "longestRoundTripNano": 164037166,
+ "averageApexExecutionNano": 52647651,
+ "shortestApexExecutionNano": 6578029,
+ "longestApexExecutionNano": 105842910
+ },
+ {
+ "batchNumber": 368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124279741,
+ "shortestRoundTripNano": 56694811,
+ "longestRoundTripNano": 147476251,
+ "averageApexExecutionNano": 54811326,
+ "shortestApexExecutionNano": 7713353,
+ "longestApexExecutionNano": 105157655
+ },
+ {
+ "batchNumber": 369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160458917,
+ "shortestRoundTripNano": 61722435,
+ "longestRoundTripNano": 188827076,
+ "averageApexExecutionNano": 69625932,
+ "shortestApexExecutionNano": 8106348,
+ "longestApexExecutionNano": 120418955
+ },
+ {
+ "batchNumber": 370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127097094,
+ "shortestRoundTripNano": 66857266,
+ "longestRoundTripNano": 165151645,
+ "averageApexExecutionNano": 47852678,
+ "shortestApexExecutionNano": 7831108,
+ "longestApexExecutionNano": 133097585
+ },
+ {
+ "batchNumber": 371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157720172,
+ "shortestRoundTripNano": 62462988,
+ "longestRoundTripNano": 197768646,
+ "averageApexExecutionNano": 73258622,
+ "shortestApexExecutionNano": 12299952,
+ "longestApexExecutionNano": 135263943
+ },
+ {
+ "batchNumber": 372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163683035,
+ "shortestRoundTripNano": 45431641,
+ "longestRoundTripNano": 194210056,
+ "averageApexExecutionNano": 60422795,
+ "shortestApexExecutionNano": 7833429,
+ "longestApexExecutionNano": 141150762
+ },
+ {
+ "batchNumber": 373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133795358,
+ "shortestRoundTripNano": 69082907,
+ "longestRoundTripNano": 156787316,
+ "averageApexExecutionNano": 55385688,
+ "shortestApexExecutionNano": 7326480,
+ "longestApexExecutionNano": 120132907
+ },
+ {
+ "batchNumber": 374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155544526,
+ "shortestRoundTripNano": 64152161,
+ "longestRoundTripNano": 184337447,
+ "averageApexExecutionNano": 71024134,
+ "shortestApexExecutionNano": 9111927,
+ "longestApexExecutionNano": 123028306
+ },
+ {
+ "batchNumber": 375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169890889,
+ "shortestRoundTripNano": 100690068,
+ "longestRoundTripNano": 196005871,
+ "averageApexExecutionNano": 61194837,
+ "shortestApexExecutionNano": 6585818,
+ "longestApexExecutionNano": 133205610
+ },
+ {
+ "batchNumber": 376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160447641,
+ "shortestRoundTripNano": 55883045,
+ "longestRoundTripNano": 198685284,
+ "averageApexExecutionNano": 66860901,
+ "shortestApexExecutionNano": 10576698,
+ "longestApexExecutionNano": 157745794
+ },
+ {
+ "batchNumber": 377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148941621,
+ "shortestRoundTripNano": 41676201,
+ "longestRoundTripNano": 172179437,
+ "averageApexExecutionNano": 67514386,
+ "shortestApexExecutionNano": 6769663,
+ "longestApexExecutionNano": 127263834
+ },
+ {
+ "batchNumber": 378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172482595,
+ "shortestRoundTripNano": 53006323,
+ "longestRoundTripNano": 244329565,
+ "averageApexExecutionNano": 64581938,
+ "shortestApexExecutionNano": 9673786,
+ "longestApexExecutionNano": 159953357
+ },
+ {
+ "batchNumber": 379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185291176,
+ "shortestRoundTripNano": 99934548,
+ "longestRoundTripNano": 214434728,
+ "averageApexExecutionNano": 84356102,
+ "shortestApexExecutionNano": 10913177,
+ "longestApexExecutionNano": 164945892
+ },
+ {
+ "batchNumber": 380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150283063,
+ "shortestRoundTripNano": 75147430,
+ "longestRoundTripNano": 182995960,
+ "averageApexExecutionNano": 63010924,
+ "shortestApexExecutionNano": 12252438,
+ "longestApexExecutionNano": 139329213
+ },
+ {
+ "batchNumber": 381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125450476,
+ "shortestRoundTripNano": 29849780,
+ "longestRoundTripNano": 158310664,
+ "averageApexExecutionNano": 47662267,
+ "shortestApexExecutionNano": 8102104,
+ "longestApexExecutionNano": 114718531
+ },
+ {
+ "batchNumber": 382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 201726709,
+ "shortestRoundTripNano": 89691534,
+ "longestRoundTripNano": 238017253,
+ "averageApexExecutionNano": 77875160,
+ "shortestApexExecutionNano": 6278359,
+ "longestApexExecutionNano": 153416978
+ },
+ {
+ "batchNumber": 383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131716978,
+ "shortestRoundTripNano": 66201174,
+ "longestRoundTripNano": 158872419,
+ "averageApexExecutionNano": 63300682,
+ "shortestApexExecutionNano": 17925113,
+ "longestApexExecutionNano": 108274105
+ },
+ {
+ "batchNumber": 384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138673823,
+ "shortestRoundTripNano": 62545177,
+ "longestRoundTripNano": 165400641,
+ "averageApexExecutionNano": 49533622,
+ "shortestApexExecutionNano": 10235299,
+ "longestApexExecutionNano": 105296778
+ },
+ {
+ "batchNumber": 385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133160152,
+ "shortestRoundTripNano": 45104665,
+ "longestRoundTripNano": 158359459,
+ "averageApexExecutionNano": 63291152,
+ "shortestApexExecutionNano": 12890296,
+ "longestApexExecutionNano": 115030208
+ },
+ {
+ "batchNumber": 386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131856630,
+ "shortestRoundTripNano": 48750813,
+ "longestRoundTripNano": 156622544,
+ "averageApexExecutionNano": 54226250,
+ "shortestApexExecutionNano": 9804015,
+ "longestApexExecutionNano": 99281166
+ },
+ {
+ "batchNumber": 387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142818533,
+ "shortestRoundTripNano": 51051710,
+ "longestRoundTripNano": 179877914,
+ "averageApexExecutionNano": 61344008,
+ "shortestApexExecutionNano": 14415822,
+ "longestApexExecutionNano": 134271847
+ },
+ {
+ "batchNumber": 388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135765633,
+ "shortestRoundTripNano": 58080787,
+ "longestRoundTripNano": 168914498,
+ "averageApexExecutionNano": 61128740,
+ "shortestApexExecutionNano": 7888871,
+ "longestApexExecutionNano": 140506976
+ },
+ {
+ "batchNumber": 389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134092242,
+ "shortestRoundTripNano": 70555023,
+ "longestRoundTripNano": 164140382,
+ "averageApexExecutionNano": 54647700,
+ "shortestApexExecutionNano": 6826434,
+ "longestApexExecutionNano": 105777790
+ },
+ {
+ "batchNumber": 390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150576751,
+ "shortestRoundTripNano": 62211598,
+ "longestRoundTripNano": 181116616,
+ "averageApexExecutionNano": 74561212,
+ "shortestApexExecutionNano": 20322440,
+ "longestApexExecutionNano": 133683853
+ },
+ {
+ "batchNumber": 391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138993421,
+ "shortestRoundTripNano": 72763061,
+ "longestRoundTripNano": 175404736,
+ "averageApexExecutionNano": 63831634,
+ "shortestApexExecutionNano": 7501775,
+ "longestApexExecutionNano": 124883088
+ },
+ {
+ "batchNumber": 392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127697340,
+ "shortestRoundTripNano": 46754749,
+ "longestRoundTripNano": 158819928,
+ "averageApexExecutionNano": 49317766,
+ "shortestApexExecutionNano": 7405239,
+ "longestApexExecutionNano": 100911256
+ },
+ {
+ "batchNumber": 393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138532968,
+ "shortestRoundTripNano": 57924392,
+ "longestRoundTripNano": 167346831,
+ "averageApexExecutionNano": 62597938,
+ "shortestApexExecutionNano": 12966008,
+ "longestApexExecutionNano": 116133026
+ },
+ {
+ "batchNumber": 394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141131249,
+ "shortestRoundTripNano": 57456657,
+ "longestRoundTripNano": 168134292,
+ "averageApexExecutionNano": 57350523,
+ "shortestApexExecutionNano": 7249526,
+ "longestApexExecutionNano": 109792418
+ },
+ {
+ "batchNumber": 395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145758786,
+ "shortestRoundTripNano": 50036869,
+ "longestRoundTripNano": 183470205,
+ "averageApexExecutionNano": 61607291,
+ "shortestApexExecutionNano": 5312428,
+ "longestApexExecutionNano": 137555151
+ },
+ {
+ "batchNumber": 396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141281533,
+ "shortestRoundTripNano": 72426544,
+ "longestRoundTripNano": 171730842,
+ "averageApexExecutionNano": 60352993,
+ "shortestApexExecutionNano": 4821873,
+ "longestApexExecutionNano": 133775312
+ },
+ {
+ "batchNumber": 397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151207106,
+ "shortestRoundTripNano": 60895295,
+ "longestRoundTripNano": 182860192,
+ "averageApexExecutionNano": 62084635,
+ "shortestApexExecutionNano": 10623186,
+ "longestApexExecutionNano": 134422273
+ },
+ {
+ "batchNumber": 398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166703584,
+ "shortestRoundTripNano": 81974278,
+ "longestRoundTripNano": 195833441,
+ "averageApexExecutionNano": 82616886,
+ "shortestApexExecutionNano": 12592343,
+ "longestApexExecutionNano": 144461310
+ },
+ {
+ "batchNumber": 399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159218541,
+ "shortestRoundTripNano": 57607229,
+ "longestRoundTripNano": 203012070,
+ "averageApexExecutionNano": 73775310,
+ "shortestApexExecutionNano": 8291120,
+ "longestApexExecutionNano": 125876160
+ },
+ {
+ "batchNumber": 400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145645900,
+ "shortestRoundTripNano": 77042769,
+ "longestRoundTripNano": 173966082,
+ "averageApexExecutionNano": 54458888,
+ "shortestApexExecutionNano": 7329466,
+ "longestApexExecutionNano": 133841704
+ },
+ {
+ "batchNumber": 401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135693288,
+ "shortestRoundTripNano": 59236885,
+ "longestRoundTripNano": 162910854,
+ "averageApexExecutionNano": 59805061,
+ "shortestApexExecutionNano": 19287931,
+ "longestApexExecutionNano": 115197349
+ },
+ {
+ "batchNumber": 402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136623481,
+ "shortestRoundTripNano": 53990552,
+ "longestRoundTripNano": 165178000,
+ "averageApexExecutionNano": 53978554,
+ "shortestApexExecutionNano": 12718284,
+ "longestApexExecutionNano": 105997121
+ },
+ {
+ "batchNumber": 403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170238645,
+ "shortestRoundTripNano": 85939970,
+ "longestRoundTripNano": 198436819,
+ "averageApexExecutionNano": 78428663,
+ "shortestApexExecutionNano": 16217403,
+ "longestApexExecutionNano": 137207322
+ },
+ {
+ "batchNumber": 404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162271122,
+ "shortestRoundTripNano": 67209619,
+ "longestRoundTripNano": 201129491,
+ "averageApexExecutionNano": 61007945,
+ "shortestApexExecutionNano": 13284193,
+ "longestApexExecutionNano": 144338638
+ },
+ {
+ "batchNumber": 405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172891448,
+ "shortestRoundTripNano": 82080984,
+ "longestRoundTripNano": 201722136,
+ "averageApexExecutionNano": 76232909,
+ "shortestApexExecutionNano": 8320549,
+ "longestApexExecutionNano": 139072602
+ },
+ {
+ "batchNumber": 406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151396166,
+ "shortestRoundTripNano": 90897475,
+ "longestRoundTripNano": 184263224,
+ "averageApexExecutionNano": 66734968,
+ "shortestApexExecutionNano": 9898408,
+ "longestApexExecutionNano": 125456808
+ },
+ {
+ "batchNumber": 407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146119567,
+ "shortestRoundTripNano": 79674877,
+ "longestRoundTripNano": 171701014,
+ "averageApexExecutionNano": 55238538,
+ "shortestApexExecutionNano": 7075682,
+ "longestApexExecutionNano": 126106607
+ },
+ {
+ "batchNumber": 408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143850433,
+ "shortestRoundTripNano": 70677522,
+ "longestRoundTripNano": 172103954,
+ "averageApexExecutionNano": 56714910,
+ "shortestApexExecutionNano": 7516007,
+ "longestApexExecutionNano": 112154735
+ },
+ {
+ "batchNumber": 409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133174650,
+ "shortestRoundTripNano": 61631683,
+ "longestRoundTripNano": 160927263,
+ "averageApexExecutionNano": 52717034,
+ "shortestApexExecutionNano": 10938728,
+ "longestApexExecutionNano": 121171445
+ },
+ {
+ "batchNumber": 410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136451039,
+ "shortestRoundTripNano": 66323077,
+ "longestRoundTripNano": 168071910,
+ "averageApexExecutionNano": 68384653,
+ "shortestApexExecutionNano": 12574330,
+ "longestApexExecutionNano": 106890383
+ },
+ {
+ "batchNumber": 411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136836780,
+ "shortestRoundTripNano": 66188526,
+ "longestRoundTripNano": 163426046,
+ "averageApexExecutionNano": 61705376,
+ "shortestApexExecutionNano": 6102389,
+ "longestApexExecutionNano": 110029665
+ },
+ {
+ "batchNumber": 412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122641942,
+ "shortestRoundTripNano": 47051244,
+ "longestRoundTripNano": 156424513,
+ "averageApexExecutionNano": 41253329,
+ "shortestApexExecutionNano": 4212220,
+ "longestApexExecutionNano": 113559325
+ },
+ {
+ "batchNumber": 413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136076350,
+ "shortestRoundTripNano": 37816074,
+ "longestRoundTripNano": 167183894,
+ "averageApexExecutionNano": 62686173,
+ "shortestApexExecutionNano": 13846344,
+ "longestApexExecutionNano": 121839814
+ },
+ {
+ "batchNumber": 414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141016246,
+ "shortestRoundTripNano": 56895021,
+ "longestRoundTripNano": 174031508,
+ "averageApexExecutionNano": 61050172,
+ "shortestApexExecutionNano": 6108899,
+ "longestApexExecutionNano": 116593248
+ },
+ {
+ "batchNumber": 415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159667826,
+ "shortestRoundTripNano": 79989621,
+ "longestRoundTripNano": 185159054,
+ "averageApexExecutionNano": 62527267,
+ "shortestApexExecutionNano": 10992061,
+ "longestApexExecutionNano": 133184127
+ },
+ {
+ "batchNumber": 416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171678589,
+ "shortestRoundTripNano": 88866409,
+ "longestRoundTripNano": 201851124,
+ "averageApexExecutionNano": 71745896,
+ "shortestApexExecutionNano": 11830535,
+ "longestApexExecutionNano": 135795378
+ },
+ {
+ "batchNumber": 417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141359348,
+ "shortestRoundTripNano": 72179896,
+ "longestRoundTripNano": 169147832,
+ "averageApexExecutionNano": 53048683,
+ "shortestApexExecutionNano": 9103416,
+ "longestApexExecutionNano": 113291226
+ },
+ {
+ "batchNumber": 418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119884346,
+ "shortestRoundTripNano": 55103543,
+ "longestRoundTripNano": 149734093,
+ "averageApexExecutionNano": 55571400,
+ "shortestApexExecutionNano": 7922524,
+ "longestApexExecutionNano": 108528770
+ },
+ {
+ "batchNumber": 419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153286344,
+ "shortestRoundTripNano": 52512967,
+ "longestRoundTripNano": 190274179,
+ "averageApexExecutionNano": 61850695,
+ "shortestApexExecutionNano": 10052895,
+ "longestApexExecutionNano": 119694657
+ },
+ {
+ "batchNumber": 420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151250766,
+ "shortestRoundTripNano": 43234561,
+ "longestRoundTripNano": 179941892,
+ "averageApexExecutionNano": 67889494,
+ "shortestApexExecutionNano": 10111113,
+ "longestApexExecutionNano": 141600372
+ },
+ {
+ "batchNumber": 421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147410025,
+ "shortestRoundTripNano": 58290862,
+ "longestRoundTripNano": 176517492,
+ "averageApexExecutionNano": 58417009,
+ "shortestApexExecutionNano": 12338774,
+ "longestApexExecutionNano": 119236301
+ },
+ {
+ "batchNumber": 422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129311828,
+ "shortestRoundTripNano": 45611546,
+ "longestRoundTripNano": 156944474,
+ "averageApexExecutionNano": 56376977,
+ "shortestApexExecutionNano": 19263340,
+ "longestApexExecutionNano": 105041559
+ },
+ {
+ "batchNumber": 423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124581472,
+ "shortestRoundTripNano": 53858920,
+ "longestRoundTripNano": 167141972,
+ "averageApexExecutionNano": 40892717,
+ "shortestApexExecutionNano": 7329005,
+ "longestApexExecutionNano": 90508144
+ },
+ {
+ "batchNumber": 424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159500530,
+ "shortestRoundTripNano": 41436312,
+ "longestRoundTripNano": 190091955,
+ "averageApexExecutionNano": 64713088,
+ "shortestApexExecutionNano": 9742855,
+ "longestApexExecutionNano": 136876630
+ },
+ {
+ "batchNumber": 425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141927220,
+ "shortestRoundTripNano": 63423038,
+ "longestRoundTripNano": 175551305,
+ "averageApexExecutionNano": 67035052,
+ "shortestApexExecutionNano": 13305648,
+ "longestApexExecutionNano": 132860492
+ },
+ {
+ "batchNumber": 426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143703881,
+ "shortestRoundTripNano": 70679548,
+ "longestRoundTripNano": 171707948,
+ "averageApexExecutionNano": 57997477,
+ "shortestApexExecutionNano": 12538144,
+ "longestApexExecutionNano": 124224282
+ },
+ {
+ "batchNumber": 427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139930230,
+ "shortestRoundTripNano": 49933460,
+ "longestRoundTripNano": 170914202,
+ "averageApexExecutionNano": 62193807,
+ "shortestApexExecutionNano": 12120859,
+ "longestApexExecutionNano": 113135808
+ },
+ {
+ "batchNumber": 428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133305008,
+ "shortestRoundTripNano": 42833793,
+ "longestRoundTripNano": 162876363,
+ "averageApexExecutionNano": 47973096,
+ "shortestApexExecutionNano": 7918327,
+ "longestApexExecutionNano": 109043919
+ },
+ {
+ "batchNumber": 429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140137954,
+ "shortestRoundTripNano": 63128233,
+ "longestRoundTripNano": 182723880,
+ "averageApexExecutionNano": 63635541,
+ "shortestApexExecutionNano": 7091388,
+ "longestApexExecutionNano": 126857463
+ },
+ {
+ "batchNumber": 430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134244614,
+ "shortestRoundTripNano": 61922605,
+ "longestRoundTripNano": 184451959,
+ "averageApexExecutionNano": 62368682,
+ "shortestApexExecutionNano": 11214448,
+ "longestApexExecutionNano": 134323744
+ },
+ {
+ "batchNumber": 431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168110727,
+ "shortestRoundTripNano": 55759314,
+ "longestRoundTripNano": 203881690,
+ "averageApexExecutionNano": 83704250,
+ "shortestApexExecutionNano": 20447396,
+ "longestApexExecutionNano": 136090766
+ },
+ {
+ "batchNumber": 432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146221274,
+ "shortestRoundTripNano": 64058963,
+ "longestRoundTripNano": 173369343,
+ "averageApexExecutionNano": 59930043,
+ "shortestApexExecutionNano": 9241948,
+ "longestApexExecutionNano": 127617758
+ },
+ {
+ "batchNumber": 433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175049739,
+ "shortestRoundTripNano": 107802998,
+ "longestRoundTripNano": 207281334,
+ "averageApexExecutionNano": 74574710,
+ "shortestApexExecutionNano": 25821078,
+ "longestApexExecutionNano": 134420485
+ },
+ {
+ "batchNumber": 434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151081098,
+ "shortestRoundTripNano": 82411891,
+ "longestRoundTripNano": 183614179,
+ "averageApexExecutionNano": 52985803,
+ "shortestApexExecutionNano": 8574158,
+ "longestApexExecutionNano": 131136126
+ },
+ {
+ "batchNumber": 435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150346236,
+ "shortestRoundTripNano": 70668052,
+ "longestRoundTripNano": 190751877,
+ "averageApexExecutionNano": 64267277,
+ "shortestApexExecutionNano": 8829391,
+ "longestApexExecutionNano": 134369046
+ },
+ {
+ "batchNumber": 436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139751677,
+ "shortestRoundTripNano": 40907090,
+ "longestRoundTripNano": 167403051,
+ "averageApexExecutionNano": 53465817,
+ "shortestApexExecutionNano": 8534017,
+ "longestApexExecutionNano": 115905669
+ },
+ {
+ "batchNumber": 437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134499878,
+ "shortestRoundTripNano": 70129764,
+ "longestRoundTripNano": 170271603,
+ "averageApexExecutionNano": 52707367,
+ "shortestApexExecutionNano": 9090553,
+ "longestApexExecutionNano": 119222115
+ },
+ {
+ "batchNumber": 438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159689927,
+ "shortestRoundTripNano": 56850984,
+ "longestRoundTripNano": 196299413,
+ "averageApexExecutionNano": 73736835,
+ "shortestApexExecutionNano": 8803898,
+ "longestApexExecutionNano": 155278363
+ },
+ {
+ "batchNumber": 439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157864482,
+ "shortestRoundTripNano": 71389029,
+ "longestRoundTripNano": 189841212,
+ "averageApexExecutionNano": 65618419,
+ "shortestApexExecutionNano": 9875620,
+ "longestApexExecutionNano": 133697122
+ },
+ {
+ "batchNumber": 440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158582035,
+ "shortestRoundTripNano": 73185412,
+ "longestRoundTripNano": 188406470,
+ "averageApexExecutionNano": 76550409,
+ "shortestApexExecutionNano": 14081732,
+ "longestApexExecutionNano": 136751266
+ },
+ {
+ "batchNumber": 441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140081768,
+ "shortestRoundTripNano": 63688301,
+ "longestRoundTripNano": 172929719,
+ "averageApexExecutionNano": 59722548,
+ "shortestApexExecutionNano": 8037039,
+ "longestApexExecutionNano": 124694785
+ },
+ {
+ "batchNumber": 442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148701931,
+ "shortestRoundTripNano": 86294069,
+ "longestRoundTripNano": 169800083,
+ "averageApexExecutionNano": 64089857,
+ "shortestApexExecutionNano": 4697078,
+ "longestApexExecutionNano": 121072509
+ },
+ {
+ "batchNumber": 443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151896203,
+ "shortestRoundTripNano": 65126637,
+ "longestRoundTripNano": 181014900,
+ "averageApexExecutionNano": 63095732,
+ "shortestApexExecutionNano": 8764293,
+ "longestApexExecutionNano": 125672699
+ },
+ {
+ "batchNumber": 444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146106883,
+ "shortestRoundTripNano": 75111139,
+ "longestRoundTripNano": 175022176,
+ "averageApexExecutionNano": 64426424,
+ "shortestApexExecutionNano": 12757178,
+ "longestApexExecutionNano": 127037236
+ },
+ {
+ "batchNumber": 445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160624489,
+ "shortestRoundTripNano": 61843514,
+ "longestRoundTripNano": 188901406,
+ "averageApexExecutionNano": 61812340,
+ "shortestApexExecutionNano": 13977651,
+ "longestApexExecutionNano": 124052342
+ },
+ {
+ "batchNumber": 446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170622711,
+ "shortestRoundTripNano": 58579673,
+ "longestRoundTripNano": 203741598,
+ "averageApexExecutionNano": 77826622,
+ "shortestApexExecutionNano": 14581280,
+ "longestApexExecutionNano": 151909226
+ },
+ {
+ "batchNumber": 447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178248610,
+ "shortestRoundTripNano": 124308078,
+ "longestRoundTripNano": 201100633,
+ "averageApexExecutionNano": 71360151,
+ "shortestApexExecutionNano": 6396157,
+ "longestApexExecutionNano": 140195976
+ },
+ {
+ "batchNumber": 448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153976346,
+ "shortestRoundTripNano": 72112598,
+ "longestRoundTripNano": 188203053,
+ "averageApexExecutionNano": 63633036,
+ "shortestApexExecutionNano": 9047875,
+ "longestApexExecutionNano": 131509106
+ },
+ {
+ "batchNumber": 449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153698129,
+ "shortestRoundTripNano": 77976799,
+ "longestRoundTripNano": 182916646,
+ "averageApexExecutionNano": 52062294,
+ "shortestApexExecutionNano": 6745366,
+ "longestApexExecutionNano": 120226181
+ },
+ {
+ "batchNumber": 450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168432828,
+ "shortestRoundTripNano": 55811544,
+ "longestRoundTripNano": 204507373,
+ "averageApexExecutionNano": 66167015,
+ "shortestApexExecutionNano": 5452685,
+ "longestApexExecutionNano": 142642017
+ },
+ {
+ "batchNumber": 451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184235560,
+ "shortestRoundTripNano": 65199676,
+ "longestRoundTripNano": 217352175,
+ "averageApexExecutionNano": 88542995,
+ "shortestApexExecutionNano": 6033300,
+ "longestApexExecutionNano": 177495383
+ },
+ {
+ "batchNumber": 452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159549095,
+ "shortestRoundTripNano": 61362251,
+ "longestRoundTripNano": 215554661,
+ "averageApexExecutionNano": 54539796,
+ "shortestApexExecutionNano": 7212855,
+ "longestApexExecutionNano": 149408318
+ },
+ {
+ "batchNumber": 453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168885159,
+ "shortestRoundTripNano": 58438966,
+ "longestRoundTripNano": 202330184,
+ "averageApexExecutionNano": 74270798,
+ "shortestApexExecutionNano": 11080651,
+ "longestApexExecutionNano": 141641719
+ },
+ {
+ "batchNumber": 454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152673027,
+ "shortestRoundTripNano": 71123398,
+ "longestRoundTripNano": 181013778,
+ "averageApexExecutionNano": 74171483,
+ "shortestApexExecutionNano": 9817708,
+ "longestApexExecutionNano": 133448338
+ },
+ {
+ "batchNumber": 455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145963574,
+ "shortestRoundTripNano": 88584464,
+ "longestRoundTripNano": 175512023,
+ "averageApexExecutionNano": 57462399,
+ "shortestApexExecutionNano": 8568825,
+ "longestApexExecutionNano": 94766682
+ },
+ {
+ "batchNumber": 456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159013233,
+ "shortestRoundTripNano": 69669134,
+ "longestRoundTripNano": 188484792,
+ "averageApexExecutionNano": 83769419,
+ "shortestApexExecutionNano": 28142621,
+ "longestApexExecutionNano": 130341706
+ },
+ {
+ "batchNumber": 457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136373032,
+ "shortestRoundTripNano": 64863086,
+ "longestRoundTripNano": 160275118,
+ "averageApexExecutionNano": 47820382,
+ "shortestApexExecutionNano": 7945893,
+ "longestApexExecutionNano": 112084047
+ },
+ {
+ "batchNumber": 458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142729919,
+ "shortestRoundTripNano": 69934330,
+ "longestRoundTripNano": 172719078,
+ "averageApexExecutionNano": 58475328,
+ "shortestApexExecutionNano": 12954019,
+ "longestApexExecutionNano": 124051293
+ },
+ {
+ "batchNumber": 459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149223207,
+ "shortestRoundTripNano": 72119663,
+ "longestRoundTripNano": 173020871,
+ "averageApexExecutionNano": 68773335,
+ "shortestApexExecutionNano": 8080351,
+ "longestApexExecutionNano": 120494180
+ },
+ {
+ "batchNumber": 460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155114189,
+ "shortestRoundTripNano": 63793250,
+ "longestRoundTripNano": 181245255,
+ "averageApexExecutionNano": 53048328,
+ "shortestApexExecutionNano": 7708178,
+ "longestApexExecutionNano": 131517430
+ },
+ {
+ "batchNumber": 461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150120339,
+ "shortestRoundTripNano": 82264856,
+ "longestRoundTripNano": 183599945,
+ "averageApexExecutionNano": 74917500,
+ "shortestApexExecutionNano": 17843557,
+ "longestApexExecutionNano": 140556088
+ },
+ {
+ "batchNumber": 462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136999403,
+ "shortestRoundTripNano": 56238611,
+ "longestRoundTripNano": 167238687,
+ "averageApexExecutionNano": 64271110,
+ "shortestApexExecutionNano": 11033856,
+ "longestApexExecutionNano": 124371586
+ },
+ {
+ "batchNumber": 463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170497819,
+ "shortestRoundTripNano": 97548602,
+ "longestRoundTripNano": 214016783,
+ "averageApexExecutionNano": 63213994,
+ "shortestApexExecutionNano": 7243519,
+ "longestApexExecutionNano": 150714797
+ },
+ {
+ "batchNumber": 464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150152997,
+ "shortestRoundTripNano": 78311933,
+ "longestRoundTripNano": 185381367,
+ "averageApexExecutionNano": 73278691,
+ "shortestApexExecutionNano": 7590541,
+ "longestApexExecutionNano": 125416113
+ },
+ {
+ "batchNumber": 465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146227900,
+ "shortestRoundTripNano": 62729741,
+ "longestRoundTripNano": 178235542,
+ "averageApexExecutionNano": 52978358,
+ "shortestApexExecutionNano": 6499299,
+ "longestApexExecutionNano": 125273996
+ },
+ {
+ "batchNumber": 466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138395455,
+ "shortestRoundTripNano": 64891544,
+ "longestRoundTripNano": 166376636,
+ "averageApexExecutionNano": 54103558,
+ "shortestApexExecutionNano": 9207894,
+ "longestApexExecutionNano": 98896735
+ },
+ {
+ "batchNumber": 467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158632705,
+ "shortestRoundTripNano": 81823075,
+ "longestRoundTripNano": 182663753,
+ "averageApexExecutionNano": 67017829,
+ "shortestApexExecutionNano": 9653635,
+ "longestApexExecutionNano": 137625805
+ },
+ {
+ "batchNumber": 468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156015930,
+ "shortestRoundTripNano": 49063763,
+ "longestRoundTripNano": 190127925,
+ "averageApexExecutionNano": 72019611,
+ "shortestApexExecutionNano": 12145828,
+ "longestApexExecutionNano": 139533914
+ },
+ {
+ "batchNumber": 469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150113201,
+ "shortestRoundTripNano": 71553835,
+ "longestRoundTripNano": 184698105,
+ "averageApexExecutionNano": 61562467,
+ "shortestApexExecutionNano": 7177222,
+ "longestApexExecutionNano": 139031912
+ },
+ {
+ "batchNumber": 470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171957796,
+ "shortestRoundTripNano": 67122835,
+ "longestRoundTripNano": 201340638,
+ "averageApexExecutionNano": 74066175,
+ "shortestApexExecutionNano": 6500146,
+ "longestApexExecutionNano": 135151304
+ },
+ {
+ "batchNumber": 471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146887627,
+ "shortestRoundTripNano": 74475155,
+ "longestRoundTripNano": 180509005,
+ "averageApexExecutionNano": 55505344,
+ "shortestApexExecutionNano": 7013723,
+ "longestApexExecutionNano": 123106244
+ },
+ {
+ "batchNumber": 472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150631352,
+ "shortestRoundTripNano": 59099915,
+ "longestRoundTripNano": 190033553,
+ "averageApexExecutionNano": 72706961,
+ "shortestApexExecutionNano": 11052206,
+ "longestApexExecutionNano": 140595144
+ },
+ {
+ "batchNumber": 473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150618333,
+ "shortestRoundTripNano": 68385519,
+ "longestRoundTripNano": 177328107,
+ "averageApexExecutionNano": 52752191,
+ "shortestApexExecutionNano": 7949791,
+ "longestApexExecutionNano": 121007808
+ },
+ {
+ "batchNumber": 474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145300093,
+ "shortestRoundTripNano": 88460396,
+ "longestRoundTripNano": 172624646,
+ "averageApexExecutionNano": 53468753,
+ "shortestApexExecutionNano": 6777716,
+ "longestApexExecutionNano": 101886725
+ },
+ {
+ "batchNumber": 475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136019842,
+ "shortestRoundTripNano": 49835840,
+ "longestRoundTripNano": 164959488,
+ "averageApexExecutionNano": 52619674,
+ "shortestApexExecutionNano": 7111708,
+ "longestApexExecutionNano": 123297540
+ },
+ {
+ "batchNumber": 476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125934264,
+ "shortestRoundTripNano": 39191451,
+ "longestRoundTripNano": 158070581,
+ "averageApexExecutionNano": 53662460,
+ "shortestApexExecutionNano": 5632441,
+ "longestApexExecutionNano": 108559056
+ },
+ {
+ "batchNumber": 477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150439996,
+ "shortestRoundTripNano": 56232797,
+ "longestRoundTripNano": 180897400,
+ "averageApexExecutionNano": 65071031,
+ "shortestApexExecutionNano": 21759711,
+ "longestApexExecutionNano": 134269590
+ },
+ {
+ "batchNumber": 478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170747935,
+ "shortestRoundTripNano": 63884857,
+ "longestRoundTripNano": 216201619,
+ "averageApexExecutionNano": 72100067,
+ "shortestApexExecutionNano": 11339224,
+ "longestApexExecutionNano": 136399520
+ },
+ {
+ "batchNumber": 479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154354080,
+ "shortestRoundTripNano": 40193337,
+ "longestRoundTripNano": 175858508,
+ "averageApexExecutionNano": 64004480,
+ "shortestApexExecutionNano": 5378436,
+ "longestApexExecutionNano": 115460123
+ },
+ {
+ "batchNumber": 480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149661803,
+ "shortestRoundTripNano": 53580150,
+ "longestRoundTripNano": 175952127,
+ "averageApexExecutionNano": 52357780,
+ "shortestApexExecutionNano": 8472061,
+ "longestApexExecutionNano": 109259918
+ },
+ {
+ "batchNumber": 481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154910845,
+ "shortestRoundTripNano": 79277711,
+ "longestRoundTripNano": 181358211,
+ "averageApexExecutionNano": 56001494,
+ "shortestApexExecutionNano": 7599246,
+ "longestApexExecutionNano": 116835807
+ },
+ {
+ "batchNumber": 482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 272959903,
+ "shortestRoundTripNano": 55110634,
+ "longestRoundTripNano": 324033718,
+ "averageApexExecutionNano": 101845797,
+ "shortestApexExecutionNano": 7059894,
+ "longestApexExecutionNano": 288674525
+ },
+ {
+ "batchNumber": 483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152295584,
+ "shortestRoundTripNano": 69063947,
+ "longestRoundTripNano": 185440204,
+ "averageApexExecutionNano": 75198687,
+ "shortestApexExecutionNano": 8675238,
+ "longestApexExecutionNano": 136975992
+ },
+ {
+ "batchNumber": 484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136724883,
+ "shortestRoundTripNano": 55067482,
+ "longestRoundTripNano": 172404474,
+ "averageApexExecutionNano": 60065848,
+ "shortestApexExecutionNano": 5702494,
+ "longestApexExecutionNano": 130951697
+ },
+ {
+ "batchNumber": 485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146729903,
+ "shortestRoundTripNano": 61981658,
+ "longestRoundTripNano": 173254552,
+ "averageApexExecutionNano": 59386408,
+ "shortestApexExecutionNano": 8129363,
+ "longestApexExecutionNano": 125060806
+ },
+ {
+ "batchNumber": 486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139770654,
+ "shortestRoundTripNano": 58073803,
+ "longestRoundTripNano": 168244441,
+ "averageApexExecutionNano": 49708769,
+ "shortestApexExecutionNano": 12621457,
+ "longestApexExecutionNano": 97255511
+ },
+ {
+ "batchNumber": 487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142159132,
+ "shortestRoundTripNano": 63612691,
+ "longestRoundTripNano": 170625944,
+ "averageApexExecutionNano": 70006835,
+ "shortestApexExecutionNano": 5878247,
+ "longestApexExecutionNano": 119861989
+ },
+ {
+ "batchNumber": 488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145634700,
+ "shortestRoundTripNano": 58379571,
+ "longestRoundTripNano": 179380556,
+ "averageApexExecutionNano": 69044476,
+ "shortestApexExecutionNano": 8134661,
+ "longestApexExecutionNano": 130990526
+ },
+ {
+ "batchNumber": 489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148146967,
+ "shortestRoundTripNano": 51172640,
+ "longestRoundTripNano": 180238130,
+ "averageApexExecutionNano": 65580902,
+ "shortestApexExecutionNano": 6198395,
+ "longestApexExecutionNano": 130597618
+ },
+ {
+ "batchNumber": 490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153774455,
+ "shortestRoundTripNano": 64779634,
+ "longestRoundTripNano": 197166945,
+ "averageApexExecutionNano": 65617696,
+ "shortestApexExecutionNano": 7791392,
+ "longestApexExecutionNano": 123809463
+ },
+ {
+ "batchNumber": 491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153815141,
+ "shortestRoundTripNano": 58922401,
+ "longestRoundTripNano": 183098181,
+ "averageApexExecutionNano": 66748341,
+ "shortestApexExecutionNano": 12924562,
+ "longestApexExecutionNano": 123378977
+ },
+ {
+ "batchNumber": 492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173299356,
+ "shortestRoundTripNano": 56092029,
+ "longestRoundTripNano": 204477596,
+ "averageApexExecutionNano": 71610076,
+ "shortestApexExecutionNano": 20567953,
+ "longestApexExecutionNano": 161725059
+ },
+ {
+ "batchNumber": 493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127279684,
+ "shortestRoundTripNano": 66206527,
+ "longestRoundTripNano": 150948282,
+ "averageApexExecutionNano": 37573077,
+ "shortestApexExecutionNano": 4887244,
+ "longestApexExecutionNano": 94155945
+ },
+ {
+ "batchNumber": 494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153582060,
+ "shortestRoundTripNano": 64531324,
+ "longestRoundTripNano": 182112286,
+ "averageApexExecutionNano": 73306971,
+ "shortestApexExecutionNano": 9437884,
+ "longestApexExecutionNano": 126597162
+ },
+ {
+ "batchNumber": 495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149071874,
+ "shortestRoundTripNano": 49422895,
+ "longestRoundTripNano": 177947581,
+ "averageApexExecutionNano": 69373312,
+ "shortestApexExecutionNano": 8111532,
+ "longestApexExecutionNano": 117197752
+ },
+ {
+ "batchNumber": 496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149477490,
+ "shortestRoundTripNano": 54585286,
+ "longestRoundTripNano": 183704685,
+ "averageApexExecutionNano": 67386067,
+ "shortestApexExecutionNano": 7591206,
+ "longestApexExecutionNano": 124902395
+ },
+ {
+ "batchNumber": 497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151600704,
+ "shortestRoundTripNano": 94608671,
+ "longestRoundTripNano": 181304910,
+ "averageApexExecutionNano": 70620832,
+ "shortestApexExecutionNano": 6377110,
+ "longestApexExecutionNano": 137403974
+ },
+ {
+ "batchNumber": 498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160789905,
+ "shortestRoundTripNano": 65803309,
+ "longestRoundTripNano": 189563066,
+ "averageApexExecutionNano": 72586761,
+ "shortestApexExecutionNano": 9339249,
+ "longestApexExecutionNano": 136808179
+ },
+ {
+ "batchNumber": 499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143691889,
+ "shortestRoundTripNano": 69691849,
+ "longestRoundTripNano": 178194083,
+ "averageApexExecutionNano": 55449409,
+ "shortestApexExecutionNano": 12740754,
+ "longestApexExecutionNano": 97400766
+ },
+ {
+ "batchNumber": 500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128537758,
+ "shortestRoundTripNano": 46389395,
+ "longestRoundTripNano": 153538736,
+ "averageApexExecutionNano": 47408995,
+ "shortestApexExecutionNano": 6150222,
+ "longestApexExecutionNano": 106068786
+ },
+ {
+ "batchNumber": 501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148419383,
+ "shortestRoundTripNano": 74924265,
+ "longestRoundTripNano": 178194415,
+ "averageApexExecutionNano": 65865385,
+ "shortestApexExecutionNano": 12402589,
+ "longestApexExecutionNano": 118202468
+ },
+ {
+ "batchNumber": 502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148957401,
+ "shortestRoundTripNano": 65854820,
+ "longestRoundTripNano": 193348502,
+ "averageApexExecutionNano": 65534814,
+ "shortestApexExecutionNano": 9770147,
+ "longestApexExecutionNano": 153554256
+ },
+ {
+ "batchNumber": 503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151058121,
+ "shortestRoundTripNano": 78426742,
+ "longestRoundTripNano": 184923788,
+ "averageApexExecutionNano": 77708244,
+ "shortestApexExecutionNano": 11731827,
+ "longestApexExecutionNano": 141616670
+ },
+ {
+ "batchNumber": 504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154375344,
+ "shortestRoundTripNano": 59606042,
+ "longestRoundTripNano": 182711828,
+ "averageApexExecutionNano": 61657291,
+ "shortestApexExecutionNano": 8078699,
+ "longestApexExecutionNano": 146743901
+ },
+ {
+ "batchNumber": 505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137485583,
+ "shortestRoundTripNano": 65966728,
+ "longestRoundTripNano": 160047937,
+ "averageApexExecutionNano": 65487438,
+ "shortestApexExecutionNano": 9563214,
+ "longestApexExecutionNano": 113401914
+ },
+ {
+ "batchNumber": 506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176893391,
+ "shortestRoundTripNano": 62165294,
+ "longestRoundTripNano": 209038202,
+ "averageApexExecutionNano": 73151016,
+ "shortestApexExecutionNano": 9110711,
+ "longestApexExecutionNano": 145039722
+ },
+ {
+ "batchNumber": 507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157654448,
+ "shortestRoundTripNano": 52976651,
+ "longestRoundTripNano": 188622092,
+ "averageApexExecutionNano": 71046395,
+ "shortestApexExecutionNano": 9511677,
+ "longestApexExecutionNano": 141484735
+ },
+ {
+ "batchNumber": 508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132396025,
+ "shortestRoundTripNano": 60564453,
+ "longestRoundTripNano": 161082346,
+ "averageApexExecutionNano": 54843973,
+ "shortestApexExecutionNano": 4674565,
+ "longestApexExecutionNano": 105844635
+ },
+ {
+ "batchNumber": 509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157077467,
+ "shortestRoundTripNano": 68265938,
+ "longestRoundTripNano": 209194541,
+ "averageApexExecutionNano": 65227165,
+ "shortestApexExecutionNano": 6277295,
+ "longestApexExecutionNano": 124170166
+ },
+ {
+ "batchNumber": 510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145596662,
+ "shortestRoundTripNano": 82050674,
+ "longestRoundTripNano": 169270860,
+ "averageApexExecutionNano": 64136444,
+ "shortestApexExecutionNano": 15375823,
+ "longestApexExecutionNano": 110068826
+ },
+ {
+ "batchNumber": 511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138165591,
+ "shortestRoundTripNano": 80258118,
+ "longestRoundTripNano": 161562480,
+ "averageApexExecutionNano": 65757756,
+ "shortestApexExecutionNano": 6297909,
+ "longestApexExecutionNano": 113963439
+ },
+ {
+ "batchNumber": 512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151335147,
+ "shortestRoundTripNano": 86232428,
+ "longestRoundTripNano": 181747965,
+ "averageApexExecutionNano": 77554622,
+ "shortestApexExecutionNano": 11316350,
+ "longestApexExecutionNano": 131582804
+ },
+ {
+ "batchNumber": 513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155830486,
+ "shortestRoundTripNano": 82518128,
+ "longestRoundTripNano": 192058890,
+ "averageApexExecutionNano": 61606198,
+ "shortestApexExecutionNano": 7661748,
+ "longestApexExecutionNano": 153057977
+ },
+ {
+ "batchNumber": 514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161432038,
+ "shortestRoundTripNano": 66611368,
+ "longestRoundTripNano": 203698781,
+ "averageApexExecutionNano": 76087430,
+ "shortestApexExecutionNano": 10283686,
+ "longestApexExecutionNano": 144550878
+ },
+ {
+ "batchNumber": 515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137183715,
+ "shortestRoundTripNano": 70524638,
+ "longestRoundTripNano": 171525411,
+ "averageApexExecutionNano": 60657165,
+ "shortestApexExecutionNano": 11520462,
+ "longestApexExecutionNano": 111404965
+ },
+ {
+ "batchNumber": 516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135891826,
+ "shortestRoundTripNano": 63907572,
+ "longestRoundTripNano": 165349654,
+ "averageApexExecutionNano": 56153342,
+ "shortestApexExecutionNano": 8986450,
+ "longestApexExecutionNano": 110106883
+ },
+ {
+ "batchNumber": 517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143935544,
+ "shortestRoundTripNano": 76009148,
+ "longestRoundTripNano": 173193402,
+ "averageApexExecutionNano": 55865119,
+ "shortestApexExecutionNano": 8032540,
+ "longestApexExecutionNano": 120416783
+ },
+ {
+ "batchNumber": 518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146512647,
+ "shortestRoundTripNano": 45056657,
+ "longestRoundTripNano": 187027751,
+ "averageApexExecutionNano": 43655209,
+ "shortestApexExecutionNano": 6022932,
+ "longestApexExecutionNano": 107965933
+ },
+ {
+ "batchNumber": 519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142560843,
+ "shortestRoundTripNano": 66217613,
+ "longestRoundTripNano": 175567199,
+ "averageApexExecutionNano": 52216619,
+ "shortestApexExecutionNano": 9695415,
+ "longestApexExecutionNano": 112449239
+ },
+ {
+ "batchNumber": 520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140108223,
+ "shortestRoundTripNano": 41234008,
+ "longestRoundTripNano": 168900388,
+ "averageApexExecutionNano": 60690558,
+ "shortestApexExecutionNano": 7547502,
+ "longestApexExecutionNano": 117403155
+ },
+ {
+ "batchNumber": 521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175223269,
+ "shortestRoundTripNano": 74898556,
+ "longestRoundTripNano": 204323340,
+ "averageApexExecutionNano": 73457301,
+ "shortestApexExecutionNano": 19513344,
+ "longestApexExecutionNano": 134230355
+ },
+ {
+ "batchNumber": 522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146848326,
+ "shortestRoundTripNano": 43224235,
+ "longestRoundTripNano": 172126086,
+ "averageApexExecutionNano": 66594090,
+ "shortestApexExecutionNano": 8998032,
+ "longestApexExecutionNano": 123197392
+ },
+ {
+ "batchNumber": 523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148012525,
+ "shortestRoundTripNano": 43821933,
+ "longestRoundTripNano": 199128389,
+ "averageApexExecutionNano": 61631458,
+ "shortestApexExecutionNano": 6856832,
+ "longestApexExecutionNano": 130991871
+ },
+ {
+ "batchNumber": 524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152419507,
+ "shortestRoundTripNano": 67432031,
+ "longestRoundTripNano": 181555126,
+ "averageApexExecutionNano": 56451440,
+ "shortestApexExecutionNano": 13618195,
+ "longestApexExecutionNano": 101130373
+ },
+ {
+ "batchNumber": 525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126156294,
+ "shortestRoundTripNano": 50698493,
+ "longestRoundTripNano": 155279596,
+ "averageApexExecutionNano": 46545551,
+ "shortestApexExecutionNano": 7153677,
+ "longestApexExecutionNano": 107467416
+ },
+ {
+ "batchNumber": 526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146209692,
+ "shortestRoundTripNano": 71723727,
+ "longestRoundTripNano": 178470101,
+ "averageApexExecutionNano": 64837343,
+ "shortestApexExecutionNano": 9389989,
+ "longestApexExecutionNano": 134620465
+ },
+ {
+ "batchNumber": 527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168195941,
+ "shortestRoundTripNano": 58296474,
+ "longestRoundTripNano": 201634899,
+ "averageApexExecutionNano": 77685233,
+ "shortestApexExecutionNano": 7965556,
+ "longestApexExecutionNano": 148536961
+ },
+ {
+ "batchNumber": 528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139603200,
+ "shortestRoundTripNano": 83993164,
+ "longestRoundTripNano": 165166153,
+ "averageApexExecutionNano": 78900216,
+ "shortestApexExecutionNano": 27295496,
+ "longestApexExecutionNano": 123549260
+ },
+ {
+ "batchNumber": 529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150315497,
+ "shortestRoundTripNano": 68193862,
+ "longestRoundTripNano": 177453538,
+ "averageApexExecutionNano": 47191769,
+ "shortestApexExecutionNano": 9263850,
+ "longestApexExecutionNano": 118075729
+ },
+ {
+ "batchNumber": 530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161457283,
+ "shortestRoundTripNano": 45997475,
+ "longestRoundTripNano": 196453423,
+ "averageApexExecutionNano": 74939420,
+ "shortestApexExecutionNano": 9445410,
+ "longestApexExecutionNano": 130638578
+ },
+ {
+ "batchNumber": 531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155488595,
+ "shortestRoundTripNano": 93388522,
+ "longestRoundTripNano": 182842454,
+ "averageApexExecutionNano": 57373913,
+ "shortestApexExecutionNano": 7165776,
+ "longestApexExecutionNano": 128614887
+ },
+ {
+ "batchNumber": 532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143602099,
+ "shortestRoundTripNano": 76235603,
+ "longestRoundTripNano": 173159481,
+ "averageApexExecutionNano": 64066997,
+ "shortestApexExecutionNano": 11259873,
+ "longestApexExecutionNano": 123761110
+ },
+ {
+ "batchNumber": 533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134818964,
+ "shortestRoundTripNano": 65137162,
+ "longestRoundTripNano": 167157474,
+ "averageApexExecutionNano": 52664614,
+ "shortestApexExecutionNano": 6158273,
+ "longestApexExecutionNano": 102576041
+ },
+ {
+ "batchNumber": 534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117797548,
+ "shortestRoundTripNano": 45415610,
+ "longestRoundTripNano": 153368144,
+ "averageApexExecutionNano": 36334073,
+ "shortestApexExecutionNano": 4956469,
+ "longestApexExecutionNano": 100709325
+ },
+ {
+ "batchNumber": 535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145269529,
+ "shortestRoundTripNano": 99658452,
+ "longestRoundTripNano": 169689932,
+ "averageApexExecutionNano": 77539994,
+ "shortestApexExecutionNano": 14179412,
+ "longestApexExecutionNano": 129786271
+ },
+ {
+ "batchNumber": 536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157392740,
+ "shortestRoundTripNano": 74282071,
+ "longestRoundTripNano": 185288911,
+ "averageApexExecutionNano": 67820964,
+ "shortestApexExecutionNano": 8332523,
+ "longestApexExecutionNano": 119736465
+ },
+ {
+ "batchNumber": 537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154755559,
+ "shortestRoundTripNano": 57376582,
+ "longestRoundTripNano": 192839452,
+ "averageApexExecutionNano": 67795695,
+ "shortestApexExecutionNano": 6284054,
+ "longestApexExecutionNano": 117704040
+ },
+ {
+ "batchNumber": 538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175702666,
+ "shortestRoundTripNano": 65990448,
+ "longestRoundTripNano": 226731595,
+ "averageApexExecutionNano": 59763701,
+ "shortestApexExecutionNano": 9947669,
+ "longestApexExecutionNano": 137503093
+ },
+ {
+ "batchNumber": 539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153642980,
+ "shortestRoundTripNano": 63671768,
+ "longestRoundTripNano": 179256001,
+ "averageApexExecutionNano": 73502641,
+ "shortestApexExecutionNano": 29647939,
+ "longestApexExecutionNano": 136402686
+ },
+ {
+ "batchNumber": 540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139647673,
+ "shortestRoundTripNano": 68863398,
+ "longestRoundTripNano": 174140914,
+ "averageApexExecutionNano": 57219310,
+ "shortestApexExecutionNano": 14144684,
+ "longestApexExecutionNano": 93735999
+ },
+ {
+ "batchNumber": 541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150862927,
+ "shortestRoundTripNano": 52820503,
+ "longestRoundTripNano": 181862940,
+ "averageApexExecutionNano": 73451315,
+ "shortestApexExecutionNano": 21326747,
+ "longestApexExecutionNano": 128788851
+ },
+ {
+ "batchNumber": 542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128731536,
+ "shortestRoundTripNano": 74819874,
+ "longestRoundTripNano": 154333797,
+ "averageApexExecutionNano": 61878379,
+ "shortestApexExecutionNano": 14414630,
+ "longestApexExecutionNano": 116648620
+ },
+ {
+ "batchNumber": 543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153918324,
+ "shortestRoundTripNano": 74075406,
+ "longestRoundTripNano": 178232460,
+ "averageApexExecutionNano": 53874448,
+ "shortestApexExecutionNano": 8281383,
+ "longestApexExecutionNano": 107745709
+ },
+ {
+ "batchNumber": 544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133056371,
+ "shortestRoundTripNano": 70611290,
+ "longestRoundTripNano": 159055797,
+ "averageApexExecutionNano": 50678229,
+ "shortestApexExecutionNano": 7813148,
+ "longestApexExecutionNano": 98171058
+ },
+ {
+ "batchNumber": 545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152530333,
+ "shortestRoundTripNano": 65162974,
+ "longestRoundTripNano": 185057509,
+ "averageApexExecutionNano": 61006443,
+ "shortestApexExecutionNano": 9969800,
+ "longestApexExecutionNano": 119964947
+ },
+ {
+ "batchNumber": 546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157125116,
+ "shortestRoundTripNano": 79814750,
+ "longestRoundTripNano": 184833951,
+ "averageApexExecutionNano": 55964740,
+ "shortestApexExecutionNano": 6876385,
+ "longestApexExecutionNano": 115996948
+ },
+ {
+ "batchNumber": 547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144723483,
+ "shortestRoundTripNano": 77949428,
+ "longestRoundTripNano": 171835626,
+ "averageApexExecutionNano": 74045904,
+ "shortestApexExecutionNano": 10906147,
+ "longestApexExecutionNano": 122669435
+ },
+ {
+ "batchNumber": 548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138059125,
+ "shortestRoundTripNano": 59686954,
+ "longestRoundTripNano": 167121356,
+ "averageApexExecutionNano": 54051226,
+ "shortestApexExecutionNano": 7061972,
+ "longestApexExecutionNano": 115808788
+ },
+ {
+ "batchNumber": 549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161859449,
+ "shortestRoundTripNano": 63755250,
+ "longestRoundTripNano": 211526313,
+ "averageApexExecutionNano": 71080666,
+ "shortestApexExecutionNano": 10870714,
+ "longestApexExecutionNano": 143941607
+ },
+ {
+ "batchNumber": 550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141485554,
+ "shortestRoundTripNano": 67590190,
+ "longestRoundTripNano": 167981464,
+ "averageApexExecutionNano": 59111265,
+ "shortestApexExecutionNano": 6147660,
+ "longestApexExecutionNano": 121291019
+ },
+ {
+ "batchNumber": 551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133782607,
+ "shortestRoundTripNano": 57909256,
+ "longestRoundTripNano": 166907384,
+ "averageApexExecutionNano": 56418440,
+ "shortestApexExecutionNano": 7076338,
+ "longestApexExecutionNano": 112551677
+ },
+ {
+ "batchNumber": 552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163016474,
+ "shortestRoundTripNano": 60579892,
+ "longestRoundTripNano": 203439101,
+ "averageApexExecutionNano": 76889744,
+ "shortestApexExecutionNano": 9212878,
+ "longestApexExecutionNano": 151966243
+ },
+ {
+ "batchNumber": 553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162224106,
+ "shortestRoundTripNano": 60169050,
+ "longestRoundTripNano": 193977301,
+ "averageApexExecutionNano": 49712204,
+ "shortestApexExecutionNano": 8178887,
+ "longestApexExecutionNano": 116968262
+ },
+ {
+ "batchNumber": 554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149582033,
+ "shortestRoundTripNano": 42040249,
+ "longestRoundTripNano": 185305758,
+ "averageApexExecutionNano": 57126441,
+ "shortestApexExecutionNano": 5048584,
+ "longestApexExecutionNano": 128033707
+ },
+ {
+ "batchNumber": 555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34858",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144672777,
+ "shortestRoundTripNano": 68323574,
+ "longestRoundTripNano": 168453739,
+ "averageApexExecutionNano": 67848617,
+ "shortestApexExecutionNano": 5371947,
+ "longestApexExecutionNano": 119565900
+ },
+ {
+ "batchNumber": 556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34858",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141260366,
+ "shortestRoundTripNano": 67172996,
+ "longestRoundTripNano": 166691856,
+ "averageApexExecutionNano": 50807338,
+ "shortestApexExecutionNano": 8270270,
+ "longestApexExecutionNano": 101980991
+ },
+ {
+ "batchNumber": 557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129582299,
+ "shortestRoundTripNano": 37906371,
+ "longestRoundTripNano": 153490143,
+ "averageApexExecutionNano": 53398274,
+ "shortestApexExecutionNano": 9727900,
+ "longestApexExecutionNano": 112504774
+ },
+ {
+ "batchNumber": 558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129042653,
+ "shortestRoundTripNano": 58198587,
+ "longestRoundTripNano": 161134073,
+ "averageApexExecutionNano": 58146362,
+ "shortestApexExecutionNano": 12437528,
+ "longestApexExecutionNano": 104583306
+ },
+ {
+ "batchNumber": 559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141477880,
+ "shortestRoundTripNano": 62706395,
+ "longestRoundTripNano": 168765338,
+ "averageApexExecutionNano": 62171259,
+ "shortestApexExecutionNano": 7934565,
+ "longestApexExecutionNano": 115004774
+ },
+ {
+ "batchNumber": 560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167168523,
+ "shortestRoundTripNano": 67471323,
+ "longestRoundTripNano": 213950005,
+ "averageApexExecutionNano": 47114661,
+ "shortestApexExecutionNano": 5270036,
+ "longestApexExecutionNano": 134582700
+ },
+ {
+ "batchNumber": 561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145360369,
+ "shortestRoundTripNano": 53515257,
+ "longestRoundTripNano": 176423637,
+ "averageApexExecutionNano": 73467442,
+ "shortestApexExecutionNano": 16976054,
+ "longestApexExecutionNano": 133501640
+ },
+ {
+ "batchNumber": 562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125346095,
+ "shortestRoundTripNano": 28350184,
+ "longestRoundTripNano": 156556794,
+ "averageApexExecutionNano": 57251264,
+ "shortestApexExecutionNano": 6650695,
+ "longestApexExecutionNano": 110934293
+ },
+ {
+ "batchNumber": 563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135376306,
+ "shortestRoundTripNano": 46322450,
+ "longestRoundTripNano": 156782248,
+ "averageApexExecutionNano": 47295520,
+ "shortestApexExecutionNano": 7968689,
+ "longestApexExecutionNano": 113718746
+ },
+ {
+ "batchNumber": 564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145957554,
+ "shortestRoundTripNano": 67882520,
+ "longestRoundTripNano": 172416928,
+ "averageApexExecutionNano": 50400424,
+ "shortestApexExecutionNano": 9011062,
+ "longestApexExecutionNano": 89933930
+ },
+ {
+ "batchNumber": 565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154914816,
+ "shortestRoundTripNano": 67661670,
+ "longestRoundTripNano": 185902655,
+ "averageApexExecutionNano": 70525040,
+ "shortestApexExecutionNano": 8276808,
+ "longestApexExecutionNano": 140122524
+ },
+ {
+ "batchNumber": 566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143818301,
+ "shortestRoundTripNano": 84828629,
+ "longestRoundTripNano": 177615360,
+ "averageApexExecutionNano": 81367621,
+ "shortestApexExecutionNano": 10140917,
+ "longestApexExecutionNano": 124620695
+ },
+ {
+ "batchNumber": 567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142566692,
+ "shortestRoundTripNano": 73347655,
+ "longestRoundTripNano": 170336879,
+ "averageApexExecutionNano": 61960432,
+ "shortestApexExecutionNano": 10910227,
+ "longestApexExecutionNano": 126118575
+ },
+ {
+ "batchNumber": 568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161757063,
+ "shortestRoundTripNano": 64561442,
+ "longestRoundTripNano": 198410688,
+ "averageApexExecutionNano": 83396783,
+ "shortestApexExecutionNano": 10190492,
+ "longestApexExecutionNano": 137784904
+ },
+ {
+ "batchNumber": 569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128893887,
+ "shortestRoundTripNano": 73637936,
+ "longestRoundTripNano": 152377408,
+ "averageApexExecutionNano": 57478497,
+ "shortestApexExecutionNano": 9859413,
+ "longestApexExecutionNano": 106246694
+ },
+ {
+ "batchNumber": 570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144424697,
+ "shortestRoundTripNano": 61101421,
+ "longestRoundTripNano": 170642373,
+ "averageApexExecutionNano": 59608966,
+ "shortestApexExecutionNano": 16429140,
+ "longestApexExecutionNano": 112361397
+ },
+ {
+ "batchNumber": 571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153646517,
+ "shortestRoundTripNano": 56825341,
+ "longestRoundTripNano": 182125495,
+ "averageApexExecutionNano": 50254062,
+ "shortestApexExecutionNano": 6746153,
+ "longestApexExecutionNano": 130079256
+ },
+ {
+ "batchNumber": 572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188157824,
+ "shortestRoundTripNano": 57431056,
+ "longestRoundTripNano": 218067527,
+ "averageApexExecutionNano": 93392779,
+ "shortestApexExecutionNano": 16610546,
+ "longestApexExecutionNano": 175145943
+ },
+ {
+ "batchNumber": 573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135840225,
+ "shortestRoundTripNano": 64904992,
+ "longestRoundTripNano": 165899044,
+ "averageApexExecutionNano": 59300092,
+ "shortestApexExecutionNano": 7791261,
+ "longestApexExecutionNano": 111456808
+ },
+ {
+ "batchNumber": 574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159060524,
+ "shortestRoundTripNano": 66360249,
+ "longestRoundTripNano": 190081025,
+ "averageApexExecutionNano": 64486792,
+ "shortestApexExecutionNano": 9676639,
+ "longestApexExecutionNano": 136836697
+ },
+ {
+ "batchNumber": 575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136300664,
+ "shortestRoundTripNano": 64543587,
+ "longestRoundTripNano": 163482912,
+ "averageApexExecutionNano": 58085411,
+ "shortestApexExecutionNano": 6823287,
+ "longestApexExecutionNano": 116312114
+ },
+ {
+ "batchNumber": 576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136456599,
+ "shortestRoundTripNano": 55488921,
+ "longestRoundTripNano": 167797855,
+ "averageApexExecutionNano": 59898223,
+ "shortestApexExecutionNano": 9453699,
+ "longestApexExecutionNano": 126573657
+ },
+ {
+ "batchNumber": 577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141046119,
+ "shortestRoundTripNano": 68316771,
+ "longestRoundTripNano": 167397153,
+ "averageApexExecutionNano": 43818709,
+ "shortestApexExecutionNano": 8611162,
+ "longestApexExecutionNano": 115644877
+ },
+ {
+ "batchNumber": 578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125255680,
+ "shortestRoundTripNano": 54163601,
+ "longestRoundTripNano": 151790806,
+ "averageApexExecutionNano": 45074408,
+ "shortestApexExecutionNano": 7704525,
+ "longestApexExecutionNano": 109264296
+ },
+ {
+ "batchNumber": 579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143155863,
+ "shortestRoundTripNano": 69166969,
+ "longestRoundTripNano": 169455445,
+ "averageApexExecutionNano": 52969029,
+ "shortestApexExecutionNano": 10574835,
+ "longestApexExecutionNano": 109039299
+ },
+ {
+ "batchNumber": 580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156557736,
+ "shortestRoundTripNano": 70129920,
+ "longestRoundTripNano": 185155142,
+ "averageApexExecutionNano": 67433224,
+ "shortestApexExecutionNano": 20603278,
+ "longestApexExecutionNano": 114676855
+ },
+ {
+ "batchNumber": 581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128584365,
+ "shortestRoundTripNano": 84343391,
+ "longestRoundTripNano": 147276995,
+ "averageApexExecutionNano": 51665425,
+ "shortestApexExecutionNano": 7281853,
+ "longestApexExecutionNano": 96834444
+ },
+ {
+ "batchNumber": 582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143112452,
+ "shortestRoundTripNano": 72910918,
+ "longestRoundTripNano": 169154699,
+ "averageApexExecutionNano": 62165441,
+ "shortestApexExecutionNano": 7398931,
+ "longestApexExecutionNano": 123191467
+ },
+ {
+ "batchNumber": 583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164863399,
+ "shortestRoundTripNano": 51886247,
+ "longestRoundTripNano": 198065449,
+ "averageApexExecutionNano": 74623339,
+ "shortestApexExecutionNano": 11251456,
+ "longestApexExecutionNano": 130080975
+ },
+ {
+ "batchNumber": 584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148808306,
+ "shortestRoundTripNano": 39617853,
+ "longestRoundTripNano": 178333114,
+ "averageApexExecutionNano": 74562510,
+ "shortestApexExecutionNano": 8071926,
+ "longestApexExecutionNano": 125624355
+ },
+ {
+ "batchNumber": 585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147275425,
+ "shortestRoundTripNano": 78567444,
+ "longestRoundTripNano": 174539695,
+ "averageApexExecutionNano": 71221792,
+ "shortestApexExecutionNano": 11697875,
+ "longestApexExecutionNano": 124418192
+ },
+ {
+ "batchNumber": 586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139320962,
+ "shortestRoundTripNano": 66652219,
+ "longestRoundTripNano": 165055612,
+ "averageApexExecutionNano": 60379817,
+ "shortestApexExecutionNano": 8549819,
+ "longestApexExecutionNano": 114752854
+ },
+ {
+ "batchNumber": 587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125329000,
+ "shortestRoundTripNano": 62353092,
+ "longestRoundTripNano": 161743451,
+ "averageApexExecutionNano": 53841472,
+ "shortestApexExecutionNano": 6674494,
+ "longestApexExecutionNano": 103131929
+ },
+ {
+ "batchNumber": 588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147640980,
+ "shortestRoundTripNano": 78101573,
+ "longestRoundTripNano": 175950779,
+ "averageApexExecutionNano": 64399144,
+ "shortestApexExecutionNano": 8151567,
+ "longestApexExecutionNano": 135668412
+ },
+ {
+ "batchNumber": 589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137213055,
+ "shortestRoundTripNano": 74569021,
+ "longestRoundTripNano": 167419598,
+ "averageApexExecutionNano": 62835978,
+ "shortestApexExecutionNano": 5955417,
+ "longestApexExecutionNano": 115441316
+ },
+ {
+ "batchNumber": 590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139258247,
+ "shortestRoundTripNano": 80243450,
+ "longestRoundTripNano": 165392753,
+ "averageApexExecutionNano": 66996613,
+ "shortestApexExecutionNano": 12331308,
+ "longestApexExecutionNano": 116876871
+ },
+ {
+ "batchNumber": 591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145424274,
+ "shortestRoundTripNano": 59807039,
+ "longestRoundTripNano": 189282349,
+ "averageApexExecutionNano": 68035361,
+ "shortestApexExecutionNano": 16656077,
+ "longestApexExecutionNano": 120244082
+ },
+ {
+ "batchNumber": 592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137712796,
+ "shortestRoundTripNano": 40764234,
+ "longestRoundTripNano": 163668958,
+ "averageApexExecutionNano": 52074490,
+ "shortestApexExecutionNano": 8062015,
+ "longestApexExecutionNano": 121521893
+ },
+ {
+ "batchNumber": 593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158765608,
+ "shortestRoundTripNano": 49986278,
+ "longestRoundTripNano": 188632858,
+ "averageApexExecutionNano": 69342888,
+ "shortestApexExecutionNano": 8774046,
+ "longestApexExecutionNano": 134898227
+ },
+ {
+ "batchNumber": 594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168321040,
+ "shortestRoundTripNano": 67008715,
+ "longestRoundTripNano": 207972242,
+ "averageApexExecutionNano": 63571461,
+ "shortestApexExecutionNano": 10591448,
+ "longestApexExecutionNano": 140742021
+ },
+ {
+ "batchNumber": 595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152336862,
+ "shortestRoundTripNano": 49040510,
+ "longestRoundTripNano": 186718920,
+ "averageApexExecutionNano": 61733697,
+ "shortestApexExecutionNano": 7775430,
+ "longestApexExecutionNano": 125836507
+ },
+ {
+ "batchNumber": 596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156426636,
+ "shortestRoundTripNano": 73924199,
+ "longestRoundTripNano": 194135784,
+ "averageApexExecutionNano": 70211592,
+ "shortestApexExecutionNano": 15919819,
+ "longestApexExecutionNano": 131323505
+ },
+ {
+ "batchNumber": 597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128984540,
+ "shortestRoundTripNano": 61965208,
+ "longestRoundTripNano": 164145841,
+ "averageApexExecutionNano": 49654700,
+ "shortestApexExecutionNano": 7646297,
+ "longestApexExecutionNano": 112583297
+ },
+ {
+ "batchNumber": 598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133164871,
+ "shortestRoundTripNano": 51838758,
+ "longestRoundTripNano": 158454855,
+ "averageApexExecutionNano": 69307962,
+ "shortestApexExecutionNano": 8663433,
+ "longestApexExecutionNano": 127501284
+ },
+ {
+ "batchNumber": 599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162058296,
+ "shortestRoundTripNano": 78760449,
+ "longestRoundTripNano": 189810612,
+ "averageApexExecutionNano": 72412473,
+ "shortestApexExecutionNano": 15117048,
+ "longestApexExecutionNano": 130866044
+ },
+ {
+ "batchNumber": 600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152575846,
+ "shortestRoundTripNano": 78920983,
+ "longestRoundTripNano": 177819317,
+ "averageApexExecutionNano": 65984157,
+ "shortestApexExecutionNano": 12077472,
+ "longestApexExecutionNano": 136422263
+ },
+ {
+ "batchNumber": 601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 251711570,
+ "shortestRoundTripNano": 48596666,
+ "longestRoundTripNano": 291199783,
+ "averageApexExecutionNano": 98334193,
+ "shortestApexExecutionNano": 10548630,
+ "longestApexExecutionNano": 234701863
+ },
+ {
+ "batchNumber": 602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155826472,
+ "shortestRoundTripNano": 68963435,
+ "longestRoundTripNano": 189732796,
+ "averageApexExecutionNano": 65753673,
+ "shortestApexExecutionNano": 8522548,
+ "longestApexExecutionNano": 133846227
+ },
+ {
+ "batchNumber": 603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131913981,
+ "shortestRoundTripNano": 65312891,
+ "longestRoundTripNano": 158981397,
+ "averageApexExecutionNano": 56332026,
+ "shortestApexExecutionNano": 8426877,
+ "longestApexExecutionNano": 114459114
+ },
+ {
+ "batchNumber": 604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136260977,
+ "shortestRoundTripNano": 56907521,
+ "longestRoundTripNano": 178035403,
+ "averageApexExecutionNano": 51252570,
+ "shortestApexExecutionNano": 10672756,
+ "longestApexExecutionNano": 106935420
+ },
+ {
+ "batchNumber": 605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145960046,
+ "shortestRoundTripNano": 47662656,
+ "longestRoundTripNano": 169865828,
+ "averageApexExecutionNano": 64651430,
+ "shortestApexExecutionNano": 10315075,
+ "longestApexExecutionNano": 125699094
+ },
+ {
+ "batchNumber": 606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121024301,
+ "shortestRoundTripNano": 28352493,
+ "longestRoundTripNano": 149452232,
+ "averageApexExecutionNano": 51798026,
+ "shortestApexExecutionNano": 8487190,
+ "longestApexExecutionNano": 107535223
+ },
+ {
+ "batchNumber": 607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182538258,
+ "shortestRoundTripNano": 80716662,
+ "longestRoundTripNano": 221706832,
+ "averageApexExecutionNano": 91800677,
+ "shortestApexExecutionNano": 26909289,
+ "longestApexExecutionNano": 164013131
+ },
+ {
+ "batchNumber": 608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166413453,
+ "shortestRoundTripNano": 72607368,
+ "longestRoundTripNano": 193687588,
+ "averageApexExecutionNano": 64952618,
+ "shortestApexExecutionNano": 7886667,
+ "longestApexExecutionNano": 133782194
+ },
+ {
+ "batchNumber": 609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182287537,
+ "shortestRoundTripNano": 66195411,
+ "longestRoundTripNano": 206834239,
+ "averageApexExecutionNano": 67522159,
+ "shortestApexExecutionNano": 10458891,
+ "longestApexExecutionNano": 127995564
+ },
+ {
+ "batchNumber": 610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146074880,
+ "shortestRoundTripNano": 67085461,
+ "longestRoundTripNano": 174952700,
+ "averageApexExecutionNano": 57875298,
+ "shortestApexExecutionNano": 5060575,
+ "longestApexExecutionNano": 134130962
+ },
+ {
+ "batchNumber": 611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156973757,
+ "shortestRoundTripNano": 74509041,
+ "longestRoundTripNano": 196965978,
+ "averageApexExecutionNano": 68249219,
+ "shortestApexExecutionNano": 9209876,
+ "longestApexExecutionNano": 123008060
+ },
+ {
+ "batchNumber": 612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150767319,
+ "shortestRoundTripNano": 67457479,
+ "longestRoundTripNano": 180394361,
+ "averageApexExecutionNano": 73432250,
+ "shortestApexExecutionNano": 6714856,
+ "longestApexExecutionNano": 150496667
+ },
+ {
+ "batchNumber": 613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166579722,
+ "shortestRoundTripNano": 56016204,
+ "longestRoundTripNano": 192590348,
+ "averageApexExecutionNano": 74690756,
+ "shortestApexExecutionNano": 6855659,
+ "longestApexExecutionNano": 141289153
+ },
+ {
+ "batchNumber": 614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148880064,
+ "shortestRoundTripNano": 61657224,
+ "longestRoundTripNano": 176600509,
+ "averageApexExecutionNano": 56953419,
+ "shortestApexExecutionNano": 6613647,
+ "longestApexExecutionNano": 125623275
+ },
+ {
+ "batchNumber": 615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148458332,
+ "shortestRoundTripNano": 54645905,
+ "longestRoundTripNano": 206669204,
+ "averageApexExecutionNano": 51626535,
+ "shortestApexExecutionNano": 7562747,
+ "longestApexExecutionNano": 136122076
+ },
+ {
+ "batchNumber": 616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160550819,
+ "shortestRoundTripNano": 94622416,
+ "longestRoundTripNano": 189798324,
+ "averageApexExecutionNano": 79841204,
+ "shortestApexExecutionNano": 17143919,
+ "longestApexExecutionNano": 147663649
+ },
+ {
+ "batchNumber": 617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164306033,
+ "shortestRoundTripNano": 70056334,
+ "longestRoundTripNano": 198159668,
+ "averageApexExecutionNano": 61961647,
+ "shortestApexExecutionNano": 8162175,
+ "longestApexExecutionNano": 132500365
+ },
+ {
+ "batchNumber": 618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170155513,
+ "shortestRoundTripNano": 79465591,
+ "longestRoundTripNano": 196574028,
+ "averageApexExecutionNano": 79177822,
+ "shortestApexExecutionNano": 14290390,
+ "longestApexExecutionNano": 145040871
+ },
+ {
+ "batchNumber": 619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144948183,
+ "shortestRoundTripNano": 52880963,
+ "longestRoundTripNano": 174577403,
+ "averageApexExecutionNano": 72548102,
+ "shortestApexExecutionNano": 9735566,
+ "longestApexExecutionNano": 116142199
+ },
+ {
+ "batchNumber": 620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130615030,
+ "shortestRoundTripNano": 61063212,
+ "longestRoundTripNano": 159557348,
+ "averageApexExecutionNano": 57310016,
+ "shortestApexExecutionNano": 11316788,
+ "longestApexExecutionNano": 107517425
+ },
+ {
+ "batchNumber": 621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153686840,
+ "shortestRoundTripNano": 83199015,
+ "longestRoundTripNano": 177702709,
+ "averageApexExecutionNano": 55768022,
+ "shortestApexExecutionNano": 7824069,
+ "longestApexExecutionNano": 136622514
+ },
+ {
+ "batchNumber": 622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159580191,
+ "shortestRoundTripNano": 51051511,
+ "longestRoundTripNano": 198345618,
+ "averageApexExecutionNano": 68336243,
+ "shortestApexExecutionNano": 5851932,
+ "longestApexExecutionNano": 132727275
+ },
+ {
+ "batchNumber": 623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182089553,
+ "shortestRoundTripNano": 95253577,
+ "longestRoundTripNano": 207871096,
+ "averageApexExecutionNano": 85167707,
+ "shortestApexExecutionNano": 17210149,
+ "longestApexExecutionNano": 152720565
+ },
+ {
+ "batchNumber": 624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140121800,
+ "shortestRoundTripNano": 74290175,
+ "longestRoundTripNano": 167783489,
+ "averageApexExecutionNano": 62341715,
+ "shortestApexExecutionNano": 10289985,
+ "longestApexExecutionNano": 127739188
+ },
+ {
+ "batchNumber": 625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138610427,
+ "shortestRoundTripNano": 46059298,
+ "longestRoundTripNano": 163295210,
+ "averageApexExecutionNano": 60946638,
+ "shortestApexExecutionNano": 6498209,
+ "longestApexExecutionNano": 117010178
+ },
+ {
+ "batchNumber": 626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126149125,
+ "shortestRoundTripNano": 71005435,
+ "longestRoundTripNano": 156085343,
+ "averageApexExecutionNano": 52349228,
+ "shortestApexExecutionNano": 5859312,
+ "longestApexExecutionNano": 109600555
+ },
+ {
+ "batchNumber": 627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134414336,
+ "shortestRoundTripNano": 61606894,
+ "longestRoundTripNano": 167096224,
+ "averageApexExecutionNano": 56570348,
+ "shortestApexExecutionNano": 6625618,
+ "longestApexExecutionNano": 111804423
+ },
+ {
+ "batchNumber": 628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156387312,
+ "shortestRoundTripNano": 89264630,
+ "longestRoundTripNano": 184627644,
+ "averageApexExecutionNano": 79283935,
+ "shortestApexExecutionNano": 13957058,
+ "longestApexExecutionNano": 131762278
+ },
+ {
+ "batchNumber": 629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145166355,
+ "shortestRoundTripNano": 47507017,
+ "longestRoundTripNano": 173866022,
+ "averageApexExecutionNano": 60705314,
+ "shortestApexExecutionNano": 10483819,
+ "longestApexExecutionNano": 114453106
+ },
+ {
+ "batchNumber": 630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146426798,
+ "shortestRoundTripNano": 75973072,
+ "longestRoundTripNano": 179763756,
+ "averageApexExecutionNano": 59993809,
+ "shortestApexExecutionNano": 6460483,
+ "longestApexExecutionNano": 124490688
+ },
+ {
+ "batchNumber": 631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131675681,
+ "shortestRoundTripNano": 66071211,
+ "longestRoundTripNano": 157460394,
+ "averageApexExecutionNano": 52400115,
+ "shortestApexExecutionNano": 5795769,
+ "longestApexExecutionNano": 109285101
+ },
+ {
+ "batchNumber": 632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166154628,
+ "shortestRoundTripNano": 69675419,
+ "longestRoundTripNano": 198832707,
+ "averageApexExecutionNano": 76456824,
+ "shortestApexExecutionNano": 13348990,
+ "longestApexExecutionNano": 159734857
+ },
+ {
+ "batchNumber": 633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141885994,
+ "shortestRoundTripNano": 61008718,
+ "longestRoundTripNano": 172501370,
+ "averageApexExecutionNano": 58233696,
+ "shortestApexExecutionNano": 9135329,
+ "longestApexExecutionNano": 116277476
+ },
+ {
+ "batchNumber": 634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156200102,
+ "shortestRoundTripNano": 56905957,
+ "longestRoundTripNano": 185673619,
+ "averageApexExecutionNano": 85959210,
+ "shortestApexExecutionNano": 15632879,
+ "longestApexExecutionNano": 140420856
+ },
+ {
+ "batchNumber": 635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136838324,
+ "shortestRoundTripNano": 50290723,
+ "longestRoundTripNano": 170820227,
+ "averageApexExecutionNano": 54291681,
+ "shortestApexExecutionNano": 6274771,
+ "longestApexExecutionNano": 112839089
+ },
+ {
+ "batchNumber": 636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127922965,
+ "shortestRoundTripNano": 60553012,
+ "longestRoundTripNano": 157928396,
+ "averageApexExecutionNano": 50965364,
+ "shortestApexExecutionNano": 13312692,
+ "longestApexExecutionNano": 98033898
+ },
+ {
+ "batchNumber": 637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135721600,
+ "shortestRoundTripNano": 58974542,
+ "longestRoundTripNano": 170805478,
+ "averageApexExecutionNano": 60683244,
+ "shortestApexExecutionNano": 8449905,
+ "longestApexExecutionNano": 115712769
+ },
+ {
+ "batchNumber": 638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151727385,
+ "shortestRoundTripNano": 43493003,
+ "longestRoundTripNano": 187369959,
+ "averageApexExecutionNano": 89218432,
+ "shortestApexExecutionNano": 7320881,
+ "longestApexExecutionNano": 148651245
+ },
+ {
+ "batchNumber": 639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 110768827,
+ "shortestRoundTripNano": 58905136,
+ "longestRoundTripNano": 140741347,
+ "averageApexExecutionNano": 42016480,
+ "shortestApexExecutionNano": 6685580,
+ "longestApexExecutionNano": 92487484
+ },
+ {
+ "batchNumber": 640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171542628,
+ "shortestRoundTripNano": 72637022,
+ "longestRoundTripNano": 207087027,
+ "averageApexExecutionNano": 68957514,
+ "shortestApexExecutionNano": 7962333,
+ "longestApexExecutionNano": 138749743
+ },
+ {
+ "batchNumber": 641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150255001,
+ "shortestRoundTripNano": 78202725,
+ "longestRoundTripNano": 174348595,
+ "averageApexExecutionNano": 63482405,
+ "shortestApexExecutionNano": 12692774,
+ "longestApexExecutionNano": 116142859
+ },
+ {
+ "batchNumber": 642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117554864,
+ "shortestRoundTripNano": 64768109,
+ "longestRoundTripNano": 146431605,
+ "averageApexExecutionNano": 43768054,
+ "shortestApexExecutionNano": 8646554,
+ "longestApexExecutionNano": 95538986
+ },
+ {
+ "batchNumber": 643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142682206,
+ "shortestRoundTripNano": 64444429,
+ "longestRoundTripNano": 173171628,
+ "averageApexExecutionNano": 52121737,
+ "shortestApexExecutionNano": 11077092,
+ "longestApexExecutionNano": 117430061
+ },
+ {
+ "batchNumber": 644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145345220,
+ "shortestRoundTripNano": 67560591,
+ "longestRoundTripNano": 180242101,
+ "averageApexExecutionNano": 56622478,
+ "shortestApexExecutionNano": 6897879,
+ "longestApexExecutionNano": 119799537
+ },
+ {
+ "batchNumber": 645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143230712,
+ "shortestRoundTripNano": 72009443,
+ "longestRoundTripNano": 171146735,
+ "averageApexExecutionNano": 59068964,
+ "shortestApexExecutionNano": 8775586,
+ "longestApexExecutionNano": 125190372
+ },
+ {
+ "batchNumber": 646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124664864,
+ "shortestRoundTripNano": 73510360,
+ "longestRoundTripNano": 148583051,
+ "averageApexExecutionNano": 54436475,
+ "shortestApexExecutionNano": 9093082,
+ "longestApexExecutionNano": 99917400
+ },
+ {
+ "batchNumber": 647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149205090,
+ "shortestRoundTripNano": 87161016,
+ "longestRoundTripNano": 175139043,
+ "averageApexExecutionNano": 58496677,
+ "shortestApexExecutionNano": 9619011,
+ "longestApexExecutionNano": 130280511
+ },
+ {
+ "batchNumber": 648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147512997,
+ "shortestRoundTripNano": 61207655,
+ "longestRoundTripNano": 181902314,
+ "averageApexExecutionNano": 64537151,
+ "shortestApexExecutionNano": 7287617,
+ "longestApexExecutionNano": 129726976
+ },
+ {
+ "batchNumber": 649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153040717,
+ "shortestRoundTripNano": 83460345,
+ "longestRoundTripNano": 192038811,
+ "averageApexExecutionNano": 69073940,
+ "shortestApexExecutionNano": 7049175,
+ "longestApexExecutionNano": 125083060
+ },
+ {
+ "batchNumber": 650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133766540,
+ "shortestRoundTripNano": 49960966,
+ "longestRoundTripNano": 164822159,
+ "averageApexExecutionNano": 51466190,
+ "shortestApexExecutionNano": 11081762,
+ "longestApexExecutionNano": 105105063
+ },
+ {
+ "batchNumber": 651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120205684,
+ "shortestRoundTripNano": 35051056,
+ "longestRoundTripNano": 156119647,
+ "averageApexExecutionNano": 51393081,
+ "shortestApexExecutionNano": 6716767,
+ "longestApexExecutionNano": 122548959
+ },
+ {
+ "batchNumber": 652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165485445,
+ "shortestRoundTripNano": 68401787,
+ "longestRoundTripNano": 190330070,
+ "averageApexExecutionNano": 65230318,
+ "shortestApexExecutionNano": 16244275,
+ "longestApexExecutionNano": 114106770
+ },
+ {
+ "batchNumber": 653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133821729,
+ "shortestRoundTripNano": 60794168,
+ "longestRoundTripNano": 157077974,
+ "averageApexExecutionNano": 48607169,
+ "shortestApexExecutionNano": 8015998,
+ "longestApexExecutionNano": 115150450
+ },
+ {
+ "batchNumber": 654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132484019,
+ "shortestRoundTripNano": 45623780,
+ "longestRoundTripNano": 158558605,
+ "averageApexExecutionNano": 49620591,
+ "shortestApexExecutionNano": 7278357,
+ "longestApexExecutionNano": 102727306
+ },
+ {
+ "batchNumber": 655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154605824,
+ "shortestRoundTripNano": 74286998,
+ "longestRoundTripNano": 179627253,
+ "averageApexExecutionNano": 66250673,
+ "shortestApexExecutionNano": 9628216,
+ "longestApexExecutionNano": 125414461
+ },
+ {
+ "batchNumber": 656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162278794,
+ "shortestRoundTripNano": 75820151,
+ "longestRoundTripNano": 189475771,
+ "averageApexExecutionNano": 60918243,
+ "shortestApexExecutionNano": 6507469,
+ "longestApexExecutionNano": 131728996
+ },
+ {
+ "batchNumber": 657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159934824,
+ "shortestRoundTripNano": 77898545,
+ "longestRoundTripNano": 189426004,
+ "averageApexExecutionNano": 57915114,
+ "shortestApexExecutionNano": 8118434,
+ "longestApexExecutionNano": 106436963
+ },
+ {
+ "batchNumber": 658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157661241,
+ "shortestRoundTripNano": 46073450,
+ "longestRoundTripNano": 186744692,
+ "averageApexExecutionNano": 70681039,
+ "shortestApexExecutionNano": 10103394,
+ "longestApexExecutionNano": 139557744
+ },
+ {
+ "batchNumber": 659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158681834,
+ "shortestRoundTripNano": 66124108,
+ "longestRoundTripNano": 189952915,
+ "averageApexExecutionNano": 83991672,
+ "shortestApexExecutionNano": 10507817,
+ "longestApexExecutionNano": 147994559
+ },
+ {
+ "batchNumber": 660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141632211,
+ "shortestRoundTripNano": 55734958,
+ "longestRoundTripNano": 173936804,
+ "averageApexExecutionNano": 68982834,
+ "shortestApexExecutionNano": 7616943,
+ "longestApexExecutionNano": 133864230
+ },
+ {
+ "batchNumber": 661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148886528,
+ "shortestRoundTripNano": 46082998,
+ "longestRoundTripNano": 175948753,
+ "averageApexExecutionNano": 65065864,
+ "shortestApexExecutionNano": 15179828,
+ "longestApexExecutionNano": 130607401
+ },
+ {
+ "batchNumber": 662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157050503,
+ "shortestRoundTripNano": 51853509,
+ "longestRoundTripNano": 194114864,
+ "averageApexExecutionNano": 69028671,
+ "shortestApexExecutionNano": 10595208,
+ "longestApexExecutionNano": 132673248
+ },
+ {
+ "batchNumber": 663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152870734,
+ "shortestRoundTripNano": 82552244,
+ "longestRoundTripNano": 186067006,
+ "averageApexExecutionNano": 65908917,
+ "shortestApexExecutionNano": 6871203,
+ "longestApexExecutionNano": 130681705
+ },
+ {
+ "batchNumber": 664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155884130,
+ "shortestRoundTripNano": 67278505,
+ "longestRoundTripNano": 184323453,
+ "averageApexExecutionNano": 54087260,
+ "shortestApexExecutionNano": 7794674,
+ "longestApexExecutionNano": 139187806
+ },
+ {
+ "batchNumber": 665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138703576,
+ "shortestRoundTripNano": 81999099,
+ "longestRoundTripNano": 168937665,
+ "averageApexExecutionNano": 70315245,
+ "shortestApexExecutionNano": 7044417,
+ "longestApexExecutionNano": 125206602
+ },
+ {
+ "batchNumber": 666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142701610,
+ "shortestRoundTripNano": 52168285,
+ "longestRoundTripNano": 176927883,
+ "averageApexExecutionNano": 60652974,
+ "shortestApexExecutionNano": 9003940,
+ "longestApexExecutionNano": 141505007
+ },
+ {
+ "batchNumber": 667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136984310,
+ "shortestRoundTripNano": 60000807,
+ "longestRoundTripNano": 173338066,
+ "averageApexExecutionNano": 43828625,
+ "shortestApexExecutionNano": 6674960,
+ "longestApexExecutionNano": 85155654
+ },
+ {
+ "batchNumber": 668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150847159,
+ "shortestRoundTripNano": 45202337,
+ "longestRoundTripNano": 186042467,
+ "averageApexExecutionNano": 73268722,
+ "shortestApexExecutionNano": 13187747,
+ "longestApexExecutionNano": 152588599
+ },
+ {
+ "batchNumber": 669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142450656,
+ "shortestRoundTripNano": 85435906,
+ "longestRoundTripNano": 176596221,
+ "averageApexExecutionNano": 68142854,
+ "shortestApexExecutionNano": 8222496,
+ "longestApexExecutionNano": 134886677
+ },
+ {
+ "batchNumber": 670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139836485,
+ "shortestRoundTripNano": 62411250,
+ "longestRoundTripNano": 192326140,
+ "averageApexExecutionNano": 54302109,
+ "shortestApexExecutionNano": 8015384,
+ "longestApexExecutionNano": 101824419
+ },
+ {
+ "batchNumber": 671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143815678,
+ "shortestRoundTripNano": 79541122,
+ "longestRoundTripNano": 169394137,
+ "averageApexExecutionNano": 59808146,
+ "shortestApexExecutionNano": 7963854,
+ "longestApexExecutionNano": 121544935
+ },
+ {
+ "batchNumber": 672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135554612,
+ "shortestRoundTripNano": 41661839,
+ "longestRoundTripNano": 165116008,
+ "averageApexExecutionNano": 51241706,
+ "shortestApexExecutionNano": 6778960,
+ "longestApexExecutionNano": 117617476
+ },
+ {
+ "batchNumber": 673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122206436,
+ "shortestRoundTripNano": 69861435,
+ "longestRoundTripNano": 149046487,
+ "averageApexExecutionNano": 57904462,
+ "shortestApexExecutionNano": 6462585,
+ "longestApexExecutionNano": 110926700
+ },
+ {
+ "batchNumber": 674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134277660,
+ "shortestRoundTripNano": 51609286,
+ "longestRoundTripNano": 170527719,
+ "averageApexExecutionNano": 47136746,
+ "shortestApexExecutionNano": 5802659,
+ "longestApexExecutionNano": 117450952
+ },
+ {
+ "batchNumber": 675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149057500,
+ "shortestRoundTripNano": 39647806,
+ "longestRoundTripNano": 184931954,
+ "averageApexExecutionNano": 67314610,
+ "shortestApexExecutionNano": 5718227,
+ "longestApexExecutionNano": 131766418
+ },
+ {
+ "batchNumber": 676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152545722,
+ "shortestRoundTripNano": 73104552,
+ "longestRoundTripNano": 182876913,
+ "averageApexExecutionNano": 62758521,
+ "shortestApexExecutionNano": 8990952,
+ "longestApexExecutionNano": 126317652
+ },
+ {
+ "batchNumber": 677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140391859,
+ "shortestRoundTripNano": 70118346,
+ "longestRoundTripNano": 173286748,
+ "averageApexExecutionNano": 36231249,
+ "shortestApexExecutionNano": 6603402,
+ "longestApexExecutionNano": 90324027
+ },
+ {
+ "batchNumber": 678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147216439,
+ "shortestRoundTripNano": 25057607,
+ "longestRoundTripNano": 179858956,
+ "averageApexExecutionNano": 64323397,
+ "shortestApexExecutionNano": 5185411,
+ "longestApexExecutionNano": 113166912
+ },
+ {
+ "batchNumber": 679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151946915,
+ "shortestRoundTripNano": 85394637,
+ "longestRoundTripNano": 175406408,
+ "averageApexExecutionNano": 69744879,
+ "shortestApexExecutionNano": 8694760,
+ "longestApexExecutionNano": 133114379
+ },
+ {
+ "batchNumber": 680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133908793,
+ "shortestRoundTripNano": 57917935,
+ "longestRoundTripNano": 172198264,
+ "averageApexExecutionNano": 42465940,
+ "shortestApexExecutionNano": 7073831,
+ "longestApexExecutionNano": 118191802
+ },
+ {
+ "batchNumber": 681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139864631,
+ "shortestRoundTripNano": 45345094,
+ "longestRoundTripNano": 173499775,
+ "averageApexExecutionNano": 57380281,
+ "shortestApexExecutionNano": 8012487,
+ "longestApexExecutionNano": 123939326
+ },
+ {
+ "batchNumber": 682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135130745,
+ "shortestRoundTripNano": 72199571,
+ "longestRoundTripNano": 164375596,
+ "averageApexExecutionNano": 53491118,
+ "shortestApexExecutionNano": 8500428,
+ "longestApexExecutionNano": 119568964
+ },
+ {
+ "batchNumber": 683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157756861,
+ "shortestRoundTripNano": 93636833,
+ "longestRoundTripNano": 191617150,
+ "averageApexExecutionNano": 63478723,
+ "shortestApexExecutionNano": 9297093,
+ "longestApexExecutionNano": 145180096
+ },
+ {
+ "batchNumber": 684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177119929,
+ "shortestRoundTripNano": 96724815,
+ "longestRoundTripNano": 210010746,
+ "averageApexExecutionNano": 73524366,
+ "shortestApexExecutionNano": 9536259,
+ "longestApexExecutionNano": 156392002
+ },
+ {
+ "batchNumber": 685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152613997,
+ "shortestRoundTripNano": 59722397,
+ "longestRoundTripNano": 186542180,
+ "averageApexExecutionNano": 68933059,
+ "shortestApexExecutionNano": 7858787,
+ "longestApexExecutionNano": 124277635
+ },
+ {
+ "batchNumber": 686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149191446,
+ "shortestRoundTripNano": 85613259,
+ "longestRoundTripNano": 174777940,
+ "averageApexExecutionNano": 59154144,
+ "shortestApexExecutionNano": 8101484,
+ "longestApexExecutionNano": 119945788
+ },
+ {
+ "batchNumber": 687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149491525,
+ "shortestRoundTripNano": 71048815,
+ "longestRoundTripNano": 174813910,
+ "averageApexExecutionNano": 70267359,
+ "shortestApexExecutionNano": 12073957,
+ "longestApexExecutionNano": 117323266
+ },
+ {
+ "batchNumber": 688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139678835,
+ "shortestRoundTripNano": 46224265,
+ "longestRoundTripNano": 177592964,
+ "averageApexExecutionNano": 43405495,
+ "shortestApexExecutionNano": 4287281,
+ "longestApexExecutionNano": 90925906
+ },
+ {
+ "batchNumber": 689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119804004,
+ "shortestRoundTripNano": 44245005,
+ "longestRoundTripNano": 151702913,
+ "averageApexExecutionNano": 54746199,
+ "shortestApexExecutionNano": 8028264,
+ "longestApexExecutionNano": 117610508
+ },
+ {
+ "batchNumber": 690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136689511,
+ "shortestRoundTripNano": 68602788,
+ "longestRoundTripNano": 162536456,
+ "averageApexExecutionNano": 50286129,
+ "shortestApexExecutionNano": 7970931,
+ "longestApexExecutionNano": 121467173
+ },
+ {
+ "batchNumber": 691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150869145,
+ "shortestRoundTripNano": 67904739,
+ "longestRoundTripNano": 187983460,
+ "averageApexExecutionNano": 46088349,
+ "shortestApexExecutionNano": 7061305,
+ "longestApexExecutionNano": 133699751
+ },
+ {
+ "batchNumber": 692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143484206,
+ "shortestRoundTripNano": 61795688,
+ "longestRoundTripNano": 169182263,
+ "averageApexExecutionNano": 57800619,
+ "shortestApexExecutionNano": 6100451,
+ "longestApexExecutionNano": 124110985
+ },
+ {
+ "batchNumber": 693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131805557,
+ "shortestRoundTripNano": 53935958,
+ "longestRoundTripNano": 166757076,
+ "averageApexExecutionNano": 41289650,
+ "shortestApexExecutionNano": 6046434,
+ "longestApexExecutionNano": 118599538
+ },
+ {
+ "batchNumber": 694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134150538,
+ "shortestRoundTripNano": 70105416,
+ "longestRoundTripNano": 175879555,
+ "averageApexExecutionNano": 59710509,
+ "shortestApexExecutionNano": 6793294,
+ "longestApexExecutionNano": 112635429
+ },
+ {
+ "batchNumber": 695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178696452,
+ "shortestRoundTripNano": 70370073,
+ "longestRoundTripNano": 215265912,
+ "averageApexExecutionNano": 86545645,
+ "shortestApexExecutionNano": 10960879,
+ "longestApexExecutionNano": 153151347
+ },
+ {
+ "batchNumber": 696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156315696,
+ "shortestRoundTripNano": 91519322,
+ "longestRoundTripNano": 185011203,
+ "averageApexExecutionNano": 76016548,
+ "shortestApexExecutionNano": 7623615,
+ "longestApexExecutionNano": 129674314
+ },
+ {
+ "batchNumber": 697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158884406,
+ "shortestRoundTripNano": 70173284,
+ "longestRoundTripNano": 188579322,
+ "averageApexExecutionNano": 71992607,
+ "shortestApexExecutionNano": 9208077,
+ "longestApexExecutionNano": 142113499
+ },
+ {
+ "batchNumber": 698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140133848,
+ "shortestRoundTripNano": 78871049,
+ "longestRoundTripNano": 169851094,
+ "averageApexExecutionNano": 43873585,
+ "shortestApexExecutionNano": 8370706,
+ "longestApexExecutionNano": 119803280
+ },
+ {
+ "batchNumber": 699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144911886,
+ "shortestRoundTripNano": 66338346,
+ "longestRoundTripNano": 180437731,
+ "averageApexExecutionNano": 60702472,
+ "shortestApexExecutionNano": 9959761,
+ "longestApexExecutionNano": 132819585
+ },
+ {
+ "batchNumber": 700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174958449,
+ "shortestRoundTripNano": 80546649,
+ "longestRoundTripNano": 198222478,
+ "averageApexExecutionNano": 89384663,
+ "shortestApexExecutionNano": 20787360,
+ "longestApexExecutionNano": 146651821
+ },
+ {
+ "batchNumber": 701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173876905,
+ "shortestRoundTripNano": 57882810,
+ "longestRoundTripNano": 210103001,
+ "averageApexExecutionNano": 78121801,
+ "shortestApexExecutionNano": 11279691,
+ "longestApexExecutionNano": 163266803
+ },
+ {
+ "batchNumber": 702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142646975,
+ "shortestRoundTripNano": 75386172,
+ "longestRoundTripNano": 167860204,
+ "averageApexExecutionNano": 63550424,
+ "shortestApexExecutionNano": 9354171,
+ "longestApexExecutionNano": 122048153
+ },
+ {
+ "batchNumber": 703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134993408,
+ "shortestRoundTripNano": 70096632,
+ "longestRoundTripNano": 160607925,
+ "averageApexExecutionNano": 53260986,
+ "shortestApexExecutionNano": 4964474,
+ "longestApexExecutionNano": 104139150
+ },
+ {
+ "batchNumber": 704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128736662,
+ "shortestRoundTripNano": 77534169,
+ "longestRoundTripNano": 155093978,
+ "averageApexExecutionNano": 68572609,
+ "shortestApexExecutionNano": 5852028,
+ "longestApexExecutionNano": 112601726
+ },
+ {
+ "batchNumber": 705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141160648,
+ "shortestRoundTripNano": 57497877,
+ "longestRoundTripNano": 167429612,
+ "averageApexExecutionNano": 60658407,
+ "shortestApexExecutionNano": 7013651,
+ "longestApexExecutionNano": 121899462
+ },
+ {
+ "batchNumber": 706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142497729,
+ "shortestRoundTripNano": 60689674,
+ "longestRoundTripNano": 173727371,
+ "averageApexExecutionNano": 53432714,
+ "shortestApexExecutionNano": 7785028,
+ "longestApexExecutionNano": 114726140
+ },
+ {
+ "batchNumber": 707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137662424,
+ "shortestRoundTripNano": 64065670,
+ "longestRoundTripNano": 168335618,
+ "averageApexExecutionNano": 64814750,
+ "shortestApexExecutionNano": 7445260,
+ "longestApexExecutionNano": 119790591
+ },
+ {
+ "batchNumber": 708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151681274,
+ "shortestRoundTripNano": 64873002,
+ "longestRoundTripNano": 185308769,
+ "averageApexExecutionNano": 60796191,
+ "shortestApexExecutionNano": 8378409,
+ "longestApexExecutionNano": 124034302
+ },
+ {
+ "batchNumber": 709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158185206,
+ "shortestRoundTripNano": 75391060,
+ "longestRoundTripNano": 184328059,
+ "averageApexExecutionNano": 70172952,
+ "shortestApexExecutionNano": 8000828,
+ "longestApexExecutionNano": 139372336
+ },
+ {
+ "batchNumber": 710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141009800,
+ "shortestRoundTripNano": 56433175,
+ "longestRoundTripNano": 164412497,
+ "averageApexExecutionNano": 53352602,
+ "shortestApexExecutionNano": 8012933,
+ "longestApexExecutionNano": 121589795
+ },
+ {
+ "batchNumber": 711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129793428,
+ "shortestRoundTripNano": 53178556,
+ "longestRoundTripNano": 155059899,
+ "averageApexExecutionNano": 47558062,
+ "shortestApexExecutionNano": 7026694,
+ "longestApexExecutionNano": 102814420
+ },
+ {
+ "batchNumber": 712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137335928,
+ "shortestRoundTripNano": 78879171,
+ "longestRoundTripNano": 160747529,
+ "averageApexExecutionNano": 56206913,
+ "shortestApexExecutionNano": 7831770,
+ "longestApexExecutionNano": 112727045
+ },
+ {
+ "batchNumber": 713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122667753,
+ "shortestRoundTripNano": 48578153,
+ "longestRoundTripNano": 160770252,
+ "averageApexExecutionNano": 58257396,
+ "shortestApexExecutionNano": 5445168,
+ "longestApexExecutionNano": 118894956
+ },
+ {
+ "batchNumber": 714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155523792,
+ "shortestRoundTripNano": 66726202,
+ "longestRoundTripNano": 187703546,
+ "averageApexExecutionNano": 71168835,
+ "shortestApexExecutionNano": 8952278,
+ "longestApexExecutionNano": 128716771
+ },
+ {
+ "batchNumber": 715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145168812,
+ "shortestRoundTripNano": 45108383,
+ "longestRoundTripNano": 177061705,
+ "averageApexExecutionNano": 62494443,
+ "shortestApexExecutionNano": 6140497,
+ "longestApexExecutionNano": 131832652
+ },
+ {
+ "batchNumber": 716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144121503,
+ "shortestRoundTripNano": 66192350,
+ "longestRoundTripNano": 174077229,
+ "averageApexExecutionNano": 77264079,
+ "shortestApexExecutionNano": 15126232,
+ "longestApexExecutionNano": 130040129
+ },
+ {
+ "batchNumber": 717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143451205,
+ "shortestRoundTripNano": 70382545,
+ "longestRoundTripNano": 184732848,
+ "averageApexExecutionNano": 49131173,
+ "shortestApexExecutionNano": 15498718,
+ "longestApexExecutionNano": 90369039
+ },
+ {
+ "batchNumber": 718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154776326,
+ "shortestRoundTripNano": 79141526,
+ "longestRoundTripNano": 181458221,
+ "averageApexExecutionNano": 65085815,
+ "shortestApexExecutionNano": 7888074,
+ "longestApexExecutionNano": 133292368
+ },
+ {
+ "batchNumber": 719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132550044,
+ "shortestRoundTripNano": 66434109,
+ "longestRoundTripNano": 165180496,
+ "averageApexExecutionNano": 46363285,
+ "shortestApexExecutionNano": 5749566,
+ "longestApexExecutionNano": 111848372
+ },
+ {
+ "batchNumber": 720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134098617,
+ "shortestRoundTripNano": 59453111,
+ "longestRoundTripNano": 168374269,
+ "averageApexExecutionNano": 72138337,
+ "shortestApexExecutionNano": 6236629,
+ "longestApexExecutionNano": 135781737
+ },
+ {
+ "batchNumber": 721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153920659,
+ "shortestRoundTripNano": 63990129,
+ "longestRoundTripNano": 186186487,
+ "averageApexExecutionNano": 59427323,
+ "shortestApexExecutionNano": 6418625,
+ "longestApexExecutionNano": 124369378
+ },
+ {
+ "batchNumber": 722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167706993,
+ "shortestRoundTripNano": 50759251,
+ "longestRoundTripNano": 219362407,
+ "averageApexExecutionNano": 80930181,
+ "shortestApexExecutionNano": 7901029,
+ "longestApexExecutionNano": 154459767
+ },
+ {
+ "batchNumber": 723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145719684,
+ "shortestRoundTripNano": 34361697,
+ "longestRoundTripNano": 183614438,
+ "averageApexExecutionNano": 67165040,
+ "shortestApexExecutionNano": 8082616,
+ "longestApexExecutionNano": 134828157
+ },
+ {
+ "batchNumber": 724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173447731,
+ "shortestRoundTripNano": 55463512,
+ "longestRoundTripNano": 210738751,
+ "averageApexExecutionNano": 76513812,
+ "shortestApexExecutionNano": 5648119,
+ "longestApexExecutionNano": 131071457
+ },
+ {
+ "batchNumber": 725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132962208,
+ "shortestRoundTripNano": 64587171,
+ "longestRoundTripNano": 162474362,
+ "averageApexExecutionNano": 61512338,
+ "shortestApexExecutionNano": 6440613,
+ "longestApexExecutionNano": 123870846
+ },
+ {
+ "batchNumber": 726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158700368,
+ "shortestRoundTripNano": 74729249,
+ "longestRoundTripNano": 197219342,
+ "averageApexExecutionNano": 72862971,
+ "shortestApexExecutionNano": 6378896,
+ "longestApexExecutionNano": 159008687
+ },
+ {
+ "batchNumber": 727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128164209,
+ "shortestRoundTripNano": 64590495,
+ "longestRoundTripNano": 150233155,
+ "averageApexExecutionNano": 59225673,
+ "shortestApexExecutionNano": 13295483,
+ "longestApexExecutionNano": 115415580
+ },
+ {
+ "batchNumber": 728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151644214,
+ "shortestRoundTripNano": 68847579,
+ "longestRoundTripNano": 177452453,
+ "averageApexExecutionNano": 66397005,
+ "shortestApexExecutionNano": 6221304,
+ "longestApexExecutionNano": 133710352
+ },
+ {
+ "batchNumber": 729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153928657,
+ "shortestRoundTripNano": 53468442,
+ "longestRoundTripNano": 184948157,
+ "averageApexExecutionNano": 55525938,
+ "shortestApexExecutionNano": 7131477,
+ "longestApexExecutionNano": 132190462
+ },
+ {
+ "batchNumber": 730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172448365,
+ "shortestRoundTripNano": 50039348,
+ "longestRoundTripNano": 199031267,
+ "averageApexExecutionNano": 76732600,
+ "shortestApexExecutionNano": 11698105,
+ "longestApexExecutionNano": 150248463
+ },
+ {
+ "batchNumber": 731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152177920,
+ "shortestRoundTripNano": 60564639,
+ "longestRoundTripNano": 198942928,
+ "averageApexExecutionNano": 54019506,
+ "shortestApexExecutionNano": 9232567,
+ "longestApexExecutionNano": 138589217
+ },
+ {
+ "batchNumber": 732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166758425,
+ "shortestRoundTripNano": 50813483,
+ "longestRoundTripNano": 202957294,
+ "averageApexExecutionNano": 85405381,
+ "shortestApexExecutionNano": 12001712,
+ "longestApexExecutionNano": 155652034
+ },
+ {
+ "batchNumber": 733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182134157,
+ "shortestRoundTripNano": 76105048,
+ "longestRoundTripNano": 206768614,
+ "averageApexExecutionNano": 64674500,
+ "shortestApexExecutionNano": 6507275,
+ "longestApexExecutionNano": 133664861
+ },
+ {
+ "batchNumber": 734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156997991,
+ "shortestRoundTripNano": 83661372,
+ "longestRoundTripNano": 185186876,
+ "averageApexExecutionNano": 68898760,
+ "shortestApexExecutionNano": 9027569,
+ "longestApexExecutionNano": 151012685
+ },
+ {
+ "batchNumber": 735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158312714,
+ "shortestRoundTripNano": 67926293,
+ "longestRoundTripNano": 189379425,
+ "averageApexExecutionNano": 71230347,
+ "shortestApexExecutionNano": 7613375,
+ "longestApexExecutionNano": 144832108
+ },
+ {
+ "batchNumber": 736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166396683,
+ "shortestRoundTripNano": 76168568,
+ "longestRoundTripNano": 200149867,
+ "averageApexExecutionNano": 74368121,
+ "shortestApexExecutionNano": 15423109,
+ "longestApexExecutionNano": 145887988
+ },
+ {
+ "batchNumber": 737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178277330,
+ "shortestRoundTripNano": 72967690,
+ "longestRoundTripNano": 211070377,
+ "averageApexExecutionNano": 72031822,
+ "shortestApexExecutionNano": 15282996,
+ "longestApexExecutionNano": 129267308
+ },
+ {
+ "batchNumber": 738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164891027,
+ "shortestRoundTripNano": 85237776,
+ "longestRoundTripNano": 193456324,
+ "averageApexExecutionNano": 52671249,
+ "shortestApexExecutionNano": 6632619,
+ "longestApexExecutionNano": 146194493
+ },
+ {
+ "batchNumber": 739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132049853,
+ "shortestRoundTripNano": 73526356,
+ "longestRoundTripNano": 165095329,
+ "averageApexExecutionNano": 50511722,
+ "shortestApexExecutionNano": 7896676,
+ "longestApexExecutionNano": 106121238
+ },
+ {
+ "batchNumber": 740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155236059,
+ "shortestRoundTripNano": 79692150,
+ "longestRoundTripNano": 190445091,
+ "averageApexExecutionNano": 84718994,
+ "shortestApexExecutionNano": 7820783,
+ "longestApexExecutionNano": 156605729
+ },
+ {
+ "batchNumber": 741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148150723,
+ "shortestRoundTripNano": 50124773,
+ "longestRoundTripNano": 179360878,
+ "averageApexExecutionNano": 58672509,
+ "shortestApexExecutionNano": 6879038,
+ "longestApexExecutionNano": 127607728
+ },
+ {
+ "batchNumber": 742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148481473,
+ "shortestRoundTripNano": 68668180,
+ "longestRoundTripNano": 181236975,
+ "averageApexExecutionNano": 56013710,
+ "shortestApexExecutionNano": 11554976,
+ "longestApexExecutionNano": 113692467
+ },
+ {
+ "batchNumber": 743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135044520,
+ "shortestRoundTripNano": 46794824,
+ "longestRoundTripNano": 166103048,
+ "averageApexExecutionNano": 61554122,
+ "shortestApexExecutionNano": 7063803,
+ "longestApexExecutionNano": 129099789
+ },
+ {
+ "batchNumber": 744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153574075,
+ "shortestRoundTripNano": 71525932,
+ "longestRoundTripNano": 178423461,
+ "averageApexExecutionNano": 71636257,
+ "shortestApexExecutionNano": 9347006,
+ "longestApexExecutionNano": 135359466
+ },
+ {
+ "batchNumber": 745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174405069,
+ "shortestRoundTripNano": 84680206,
+ "longestRoundTripNano": 210371101,
+ "averageApexExecutionNano": 65989506,
+ "shortestApexExecutionNano": 13301441,
+ "longestApexExecutionNano": 120090305
+ },
+ {
+ "batchNumber": 746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156262485,
+ "shortestRoundTripNano": 48231942,
+ "longestRoundTripNano": 186503638,
+ "averageApexExecutionNano": 53677291,
+ "shortestApexExecutionNano": 7571128,
+ "longestApexExecutionNano": 142679245
+ },
+ {
+ "batchNumber": 747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157514535,
+ "shortestRoundTripNano": 74462031,
+ "longestRoundTripNano": 186660553,
+ "averageApexExecutionNano": 46647364,
+ "shortestApexExecutionNano": 5972527,
+ "longestApexExecutionNano": 130318191
+ },
+ {
+ "batchNumber": 748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129312996,
+ "shortestRoundTripNano": 61894908,
+ "longestRoundTripNano": 157170251,
+ "averageApexExecutionNano": 55926472,
+ "shortestApexExecutionNano": 9346912,
+ "longestApexExecutionNano": 117113854
+ },
+ {
+ "batchNumber": 749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151075265,
+ "shortestRoundTripNano": 46214587,
+ "longestRoundTripNano": 181365338,
+ "averageApexExecutionNano": 64635230,
+ "shortestApexExecutionNano": 8792904,
+ "longestApexExecutionNano": 128033606
+ },
+ {
+ "batchNumber": 750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 210865119,
+ "shortestRoundTripNano": 72639106,
+ "longestRoundTripNano": 253769248,
+ "averageApexExecutionNano": 82091302,
+ "shortestApexExecutionNano": 9978438,
+ "longestApexExecutionNano": 166776767
+ },
+ {
+ "batchNumber": 751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156552857,
+ "shortestRoundTripNano": 48185974,
+ "longestRoundTripNano": 182059643,
+ "averageApexExecutionNano": 68919584,
+ "shortestApexExecutionNano": 9500777,
+ "longestApexExecutionNano": 128823878
+ },
+ {
+ "batchNumber": 752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158766140,
+ "shortestRoundTripNano": 82285357,
+ "longestRoundTripNano": 183626063,
+ "averageApexExecutionNano": 71257761,
+ "shortestApexExecutionNano": 15323928,
+ "longestApexExecutionNano": 139464728
+ },
+ {
+ "batchNumber": 753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164297812,
+ "shortestRoundTripNano": 27745034,
+ "longestRoundTripNano": 210080407,
+ "averageApexExecutionNano": 71159751,
+ "shortestApexExecutionNano": 5035545,
+ "longestApexExecutionNano": 165636680
+ },
+ {
+ "batchNumber": 754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166025456,
+ "shortestRoundTripNano": 90787558,
+ "longestRoundTripNano": 200215757,
+ "averageApexExecutionNano": 89046786,
+ "shortestApexExecutionNano": 10178081,
+ "longestApexExecutionNano": 154956658
+ },
+ {
+ "batchNumber": 755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160421928,
+ "shortestRoundTripNano": 50629168,
+ "longestRoundTripNano": 195861747,
+ "averageApexExecutionNano": 65928935,
+ "shortestApexExecutionNano": 6082944,
+ "longestApexExecutionNano": 145302049
+ },
+ {
+ "batchNumber": 756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162630608,
+ "shortestRoundTripNano": 87450870,
+ "longestRoundTripNano": 201276089,
+ "averageApexExecutionNano": 66276325,
+ "shortestApexExecutionNano": 6948771,
+ "longestApexExecutionNano": 140731267
+ },
+ {
+ "batchNumber": 757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154999769,
+ "shortestRoundTripNano": 75858103,
+ "longestRoundTripNano": 187514358,
+ "averageApexExecutionNano": 64035394,
+ "shortestApexExecutionNano": 9837607,
+ "longestApexExecutionNano": 125722396
+ },
+ {
+ "batchNumber": 758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158599581,
+ "shortestRoundTripNano": 71818943,
+ "longestRoundTripNano": 188667132,
+ "averageApexExecutionNano": 76403744,
+ "shortestApexExecutionNano": 6788657,
+ "longestApexExecutionNano": 130142304
+ },
+ {
+ "batchNumber": 759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155977508,
+ "shortestRoundTripNano": 65123979,
+ "longestRoundTripNano": 196466309,
+ "averageApexExecutionNano": 73445925,
+ "shortestApexExecutionNano": 8574651,
+ "longestApexExecutionNano": 160512712
+ },
+ {
+ "batchNumber": 760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154308265,
+ "shortestRoundTripNano": 65345951,
+ "longestRoundTripNano": 181183538,
+ "averageApexExecutionNano": 60711418,
+ "shortestApexExecutionNano": 9567854,
+ "longestApexExecutionNano": 130279751
+ },
+ {
+ "batchNumber": 761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132090155,
+ "shortestRoundTripNano": 64291078,
+ "longestRoundTripNano": 163731466,
+ "averageApexExecutionNano": 46436021,
+ "shortestApexExecutionNano": 5588926,
+ "longestApexExecutionNano": 111970475
+ },
+ {
+ "batchNumber": 762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 254551562,
+ "shortestRoundTripNano": 61300199,
+ "longestRoundTripNano": 298453720,
+ "averageApexExecutionNano": 112378953,
+ "shortestApexExecutionNano": 11912629,
+ "longestApexExecutionNano": 238289648
+ },
+ {
+ "batchNumber": 763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144417051,
+ "shortestRoundTripNano": 70928676,
+ "longestRoundTripNano": 169037891,
+ "averageApexExecutionNano": 64705266,
+ "shortestApexExecutionNano": 7549660,
+ "longestApexExecutionNano": 114280880
+ },
+ {
+ "batchNumber": 764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154894628,
+ "shortestRoundTripNano": 66053324,
+ "longestRoundTripNano": 188436390,
+ "averageApexExecutionNano": 73495192,
+ "shortestApexExecutionNano": 13944888,
+ "longestApexExecutionNano": 137524214
+ },
+ {
+ "batchNumber": 765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148524094,
+ "shortestRoundTripNano": 57031586,
+ "longestRoundTripNano": 178938783,
+ "averageApexExecutionNano": 56679827,
+ "shortestApexExecutionNano": 9850661,
+ "longestApexExecutionNano": 121357558
+ },
+ {
+ "batchNumber": 766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116020444,
+ "shortestRoundTripNano": 45903444,
+ "longestRoundTripNano": 146110173,
+ "averageApexExecutionNano": 47807424,
+ "shortestApexExecutionNano": 6937934,
+ "longestApexExecutionNano": 106680596
+ },
+ {
+ "batchNumber": 767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142239870,
+ "shortestRoundTripNano": 65822563,
+ "longestRoundTripNano": 171460069,
+ "averageApexExecutionNano": 63301242,
+ "shortestApexExecutionNano": 12194121,
+ "longestApexExecutionNano": 121285157
+ },
+ {
+ "batchNumber": 768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156337537,
+ "shortestRoundTripNano": 62771678,
+ "longestRoundTripNano": 188984046,
+ "averageApexExecutionNano": 56436466,
+ "shortestApexExecutionNano": 7490857,
+ "longestApexExecutionNano": 127667333
+ },
+ {
+ "batchNumber": 769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170928313,
+ "shortestRoundTripNano": 68766782,
+ "longestRoundTripNano": 202119319,
+ "averageApexExecutionNano": 87223208,
+ "shortestApexExecutionNano": 10773859,
+ "longestApexExecutionNano": 145986091
+ },
+ {
+ "batchNumber": 770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152422315,
+ "shortestRoundTripNano": 69825966,
+ "longestRoundTripNano": 185635469,
+ "averageApexExecutionNano": 70640551,
+ "shortestApexExecutionNano": 21267252,
+ "longestApexExecutionNano": 139536718
+ },
+ {
+ "batchNumber": 771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142715515,
+ "shortestRoundTripNano": 87370232,
+ "longestRoundTripNano": 168384382,
+ "averageApexExecutionNano": 70236862,
+ "shortestApexExecutionNano": 24962129,
+ "longestApexExecutionNano": 115164089
+ },
+ {
+ "batchNumber": 772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139023287,
+ "shortestRoundTripNano": 72077427,
+ "longestRoundTripNano": 172154010,
+ "averageApexExecutionNano": 64144252,
+ "shortestApexExecutionNano": 5674744,
+ "longestApexExecutionNano": 116896400
+ },
+ {
+ "batchNumber": 773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152323067,
+ "shortestRoundTripNano": 68637141,
+ "longestRoundTripNano": 183218141,
+ "averageApexExecutionNano": 66663777,
+ "shortestApexExecutionNano": 6482964,
+ "longestApexExecutionNano": 136236021
+ },
+ {
+ "batchNumber": 774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171326920,
+ "shortestRoundTripNano": 75340940,
+ "longestRoundTripNano": 208336646,
+ "averageApexExecutionNano": 77177331,
+ "shortestApexExecutionNano": 11823524,
+ "longestApexExecutionNano": 159570501
+ },
+ {
+ "batchNumber": 775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136658339,
+ "shortestRoundTripNano": 64217687,
+ "longestRoundTripNano": 167208640,
+ "averageApexExecutionNano": 70002319,
+ "shortestApexExecutionNano": 6355016,
+ "longestApexExecutionNano": 119077909
+ },
+ {
+ "batchNumber": 776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157355328,
+ "shortestRoundTripNano": 72936480,
+ "longestRoundTripNano": 184169846,
+ "averageApexExecutionNano": 64030181,
+ "shortestApexExecutionNano": 15269340,
+ "longestApexExecutionNano": 112524293
+ },
+ {
+ "batchNumber": 777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161534625,
+ "shortestRoundTripNano": 50201928,
+ "longestRoundTripNano": 203589404,
+ "averageApexExecutionNano": 69584825,
+ "shortestApexExecutionNano": 10184044,
+ "longestApexExecutionNano": 161061314
+ },
+ {
+ "batchNumber": 778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34948",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176173498,
+ "shortestRoundTripNano": 70973168,
+ "longestRoundTripNano": 205042367,
+ "averageApexExecutionNano": 80751211,
+ "shortestApexExecutionNano": 12405124,
+ "longestApexExecutionNano": 147468580
+ },
+ {
+ "batchNumber": 779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34948",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158552625,
+ "shortestRoundTripNano": 63467771,
+ "longestRoundTripNano": 190341363,
+ "averageApexExecutionNano": 75283634,
+ "shortestApexExecutionNano": 11456598,
+ "longestApexExecutionNano": 141285655
+ },
+ {
+ "batchNumber": 780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139893776,
+ "shortestRoundTripNano": 51733359,
+ "longestRoundTripNano": 164786660,
+ "averageApexExecutionNano": 57174316,
+ "shortestApexExecutionNano": 8919725,
+ "longestApexExecutionNano": 120424551
+ },
+ {
+ "batchNumber": 781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146919532,
+ "shortestRoundTripNano": 81280414,
+ "longestRoundTripNano": 171894721,
+ "averageApexExecutionNano": 68904976,
+ "shortestApexExecutionNano": 7262175,
+ "longestApexExecutionNano": 125290178
+ },
+ {
+ "batchNumber": 782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149374612,
+ "shortestRoundTripNano": 54299340,
+ "longestRoundTripNano": 179505891,
+ "averageApexExecutionNano": 66947652,
+ "shortestApexExecutionNano": 7682073,
+ "longestApexExecutionNano": 126607869
+ },
+ {
+ "batchNumber": 783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157906962,
+ "shortestRoundTripNano": 73441705,
+ "longestRoundTripNano": 188017750,
+ "averageApexExecutionNano": 58848389,
+ "shortestApexExecutionNano": 6735673,
+ "longestApexExecutionNano": 126541121
+ },
+ {
+ "batchNumber": 784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132328691,
+ "shortestRoundTripNano": 57377585,
+ "longestRoundTripNano": 164042859,
+ "averageApexExecutionNano": 49281280,
+ "shortestApexExecutionNano": 4915547,
+ "longestApexExecutionNano": 96005742
+ },
+ {
+ "batchNumber": 785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146175531,
+ "shortestRoundTripNano": 61858022,
+ "longestRoundTripNano": 172616232,
+ "averageApexExecutionNano": 64681688,
+ "shortestApexExecutionNano": 7987279,
+ "longestApexExecutionNano": 126479961
+ },
+ {
+ "batchNumber": 786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133515163,
+ "shortestRoundTripNano": 50009489,
+ "longestRoundTripNano": 161963567,
+ "averageApexExecutionNano": 62247120,
+ "shortestApexExecutionNano": 7096235,
+ "longestApexExecutionNano": 104753721
+ },
+ {
+ "batchNumber": 787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165324473,
+ "shortestRoundTripNano": 90726428,
+ "longestRoundTripNano": 189906372,
+ "averageApexExecutionNano": 69088120,
+ "shortestApexExecutionNano": 11176097,
+ "longestApexExecutionNano": 131886308
+ },
+ {
+ "batchNumber": 788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155812805,
+ "shortestRoundTripNano": 67608516,
+ "longestRoundTripNano": 191350065,
+ "averageApexExecutionNano": 64549882,
+ "shortestApexExecutionNano": 6292198,
+ "longestApexExecutionNano": 145683777
+ },
+ {
+ "batchNumber": 789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159584048,
+ "shortestRoundTripNano": 62848666,
+ "longestRoundTripNano": 187526130,
+ "averageApexExecutionNano": 79976570,
+ "shortestApexExecutionNano": 19300568,
+ "longestApexExecutionNano": 137377097
+ },
+ {
+ "batchNumber": 790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136188032,
+ "shortestRoundTripNano": 52126620,
+ "longestRoundTripNano": 170705186,
+ "averageApexExecutionNano": 54347307,
+ "shortestApexExecutionNano": 6094738,
+ "longestApexExecutionNano": 107088085
+ },
+ {
+ "batchNumber": 791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153931310,
+ "shortestRoundTripNano": 85093770,
+ "longestRoundTripNano": 184603581,
+ "averageApexExecutionNano": 74329174,
+ "shortestApexExecutionNano": 6763867,
+ "longestApexExecutionNano": 122900501
+ },
+ {
+ "batchNumber": 792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128456571,
+ "shortestRoundTripNano": 65963285,
+ "longestRoundTripNano": 156014089,
+ "averageApexExecutionNano": 47266024,
+ "shortestApexExecutionNano": 8766283,
+ "longestApexExecutionNano": 111561659
+ },
+ {
+ "batchNumber": 793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177380469,
+ "shortestRoundTripNano": 97592875,
+ "longestRoundTripNano": 224792953,
+ "averageApexExecutionNano": 64312069,
+ "shortestApexExecutionNano": 12309873,
+ "longestApexExecutionNano": 131384272
+ },
+ {
+ "batchNumber": 794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159517274,
+ "shortestRoundTripNano": 75358914,
+ "longestRoundTripNano": 191179731,
+ "averageApexExecutionNano": 77030012,
+ "shortestApexExecutionNano": 14198294,
+ "longestApexExecutionNano": 141495011
+ },
+ {
+ "batchNumber": 795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136653412,
+ "shortestRoundTripNano": 53225112,
+ "longestRoundTripNano": 171036651,
+ "averageApexExecutionNano": 49138563,
+ "shortestApexExecutionNano": 6268671,
+ "longestApexExecutionNano": 124938177
+ },
+ {
+ "batchNumber": 796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162794269,
+ "shortestRoundTripNano": 63952151,
+ "longestRoundTripNano": 196603376,
+ "averageApexExecutionNano": 84723180,
+ "shortestApexExecutionNano": 12561133,
+ "longestApexExecutionNano": 143492246
+ },
+ {
+ "batchNumber": 797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34956",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150430703,
+ "shortestRoundTripNano": 71977609,
+ "longestRoundTripNano": 189576244,
+ "averageApexExecutionNano": 60438904,
+ "shortestApexExecutionNano": 7390408,
+ "longestApexExecutionNano": 130995758
+ },
+ {
+ "batchNumber": 798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34956",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126654073,
+ "shortestRoundTripNano": 62476232,
+ "longestRoundTripNano": 159687583,
+ "averageApexExecutionNano": 65483706,
+ "shortestApexExecutionNano": 11239553,
+ "longestApexExecutionNano": 119110525
+ },
+ {
+ "batchNumber": 799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141715579,
+ "shortestRoundTripNano": 65627906,
+ "longestRoundTripNano": 168342032,
+ "averageApexExecutionNano": 46139347,
+ "shortestApexExecutionNano": 7404347,
+ "longestApexExecutionNano": 100823325
+ },
+ {
+ "batchNumber": 800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144498959,
+ "shortestRoundTripNano": 64422708,
+ "longestRoundTripNano": 177022108,
+ "averageApexExecutionNano": 73746399,
+ "shortestApexExecutionNano": 12373289,
+ "longestApexExecutionNano": 126613694
+ },
+ {
+ "batchNumber": 801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143417582,
+ "shortestRoundTripNano": 79047239,
+ "longestRoundTripNano": 172635314,
+ "averageApexExecutionNano": 70912355,
+ "shortestApexExecutionNano": 15045276,
+ "longestApexExecutionNano": 115899643
+ },
+ {
+ "batchNumber": 802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148713529,
+ "shortestRoundTripNano": 67030159,
+ "longestRoundTripNano": 183345123,
+ "averageApexExecutionNano": 61624182,
+ "shortestApexExecutionNano": 7595666,
+ "longestApexExecutionNano": 141264091
+ },
+ {
+ "batchNumber": 803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186952709,
+ "shortestRoundTripNano": 65619658,
+ "longestRoundTripNano": 215946323,
+ "averageApexExecutionNano": 92936593,
+ "shortestApexExecutionNano": 19325759,
+ "longestApexExecutionNano": 151763650
+ },
+ {
+ "batchNumber": 804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161050759,
+ "shortestRoundTripNano": 62145385,
+ "longestRoundTripNano": 197260777,
+ "averageApexExecutionNano": 75881080,
+ "shortestApexExecutionNano": 11950774,
+ "longestApexExecutionNano": 147439944
+ },
+ {
+ "batchNumber": 805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135692682,
+ "shortestRoundTripNano": 57547787,
+ "longestRoundTripNano": 162582181,
+ "averageApexExecutionNano": 53308050,
+ "shortestApexExecutionNano": 8323822,
+ "longestApexExecutionNano": 114408127
+ },
+ {
+ "batchNumber": 806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161815197,
+ "shortestRoundTripNano": 65345384,
+ "longestRoundTripNano": 197498355,
+ "averageApexExecutionNano": 75566686,
+ "shortestApexExecutionNano": 10162140,
+ "longestApexExecutionNano": 146839330
+ },
+ {
+ "batchNumber": 807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140096824,
+ "shortestRoundTripNano": 69048867,
+ "longestRoundTripNano": 167675008,
+ "averageApexExecutionNano": 53955321,
+ "shortestApexExecutionNano": 5954105,
+ "longestApexExecutionNano": 128407170
+ },
+ {
+ "batchNumber": 808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165275893,
+ "shortestRoundTripNano": 54941374,
+ "longestRoundTripNano": 205174238,
+ "averageApexExecutionNano": 71406216,
+ "shortestApexExecutionNano": 9008392,
+ "longestApexExecutionNano": 152851785
+ },
+ {
+ "batchNumber": 809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140930987,
+ "shortestRoundTripNano": 79892557,
+ "longestRoundTripNano": 173488897,
+ "averageApexExecutionNano": 69778029,
+ "shortestApexExecutionNano": 6762956,
+ "longestApexExecutionNano": 128418670
+ },
+ {
+ "batchNumber": 810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153606845,
+ "shortestRoundTripNano": 62811725,
+ "longestRoundTripNano": 193214522,
+ "averageApexExecutionNano": 72848298,
+ "shortestApexExecutionNano": 9442843,
+ "longestApexExecutionNano": 134638970
+ },
+ {
+ "batchNumber": 811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151676267,
+ "shortestRoundTripNano": 86054937,
+ "longestRoundTripNano": 189832985,
+ "averageApexExecutionNano": 69265692,
+ "shortestApexExecutionNano": 13351584,
+ "longestApexExecutionNano": 128018962
+ },
+ {
+ "batchNumber": 812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156516399,
+ "shortestRoundTripNano": 57583782,
+ "longestRoundTripNano": 188360877,
+ "averageApexExecutionNano": 62667062,
+ "shortestApexExecutionNano": 8495604,
+ "longestApexExecutionNano": 139471144
+ },
+ {
+ "batchNumber": 813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157421921,
+ "shortestRoundTripNano": 77654890,
+ "longestRoundTripNano": 189618970,
+ "averageApexExecutionNano": 64689603,
+ "shortestApexExecutionNano": 8113895,
+ "longestApexExecutionNano": 138033343
+ },
+ {
+ "batchNumber": 814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166623047,
+ "shortestRoundTripNano": 55274861,
+ "longestRoundTripNano": 205409439,
+ "averageApexExecutionNano": 77279706,
+ "shortestApexExecutionNano": 6683876,
+ "longestApexExecutionNano": 149895980
+ },
+ {
+ "batchNumber": 815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138901242,
+ "shortestRoundTripNano": 55674661,
+ "longestRoundTripNano": 164898311,
+ "averageApexExecutionNano": 50835315,
+ "shortestApexExecutionNano": 6381880,
+ "longestApexExecutionNano": 108369838
+ },
+ {
+ "batchNumber": 816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126750667,
+ "shortestRoundTripNano": 51319220,
+ "longestRoundTripNano": 154274597,
+ "averageApexExecutionNano": 47971184,
+ "shortestApexExecutionNano": 7749297,
+ "longestApexExecutionNano": 90752109
+ },
+ {
+ "batchNumber": 817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169134190,
+ "shortestRoundTripNano": 102224759,
+ "longestRoundTripNano": 215157099,
+ "averageApexExecutionNano": 58863448,
+ "shortestApexExecutionNano": 6867783,
+ "longestApexExecutionNano": 135007921
+ },
+ {
+ "batchNumber": 818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145136526,
+ "shortestRoundTripNano": 71092783,
+ "longestRoundTripNano": 171774641,
+ "averageApexExecutionNano": 61922188,
+ "shortestApexExecutionNano": 4689437,
+ "longestApexExecutionNano": 137851109
+ },
+ {
+ "batchNumber": 819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134618088,
+ "shortestRoundTripNano": 54349027,
+ "longestRoundTripNano": 169218840,
+ "averageApexExecutionNano": 57968063,
+ "shortestApexExecutionNano": 7940998,
+ "longestApexExecutionNano": 100022856
+ },
+ {
+ "batchNumber": 820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141201967,
+ "shortestRoundTripNano": 48768378,
+ "longestRoundTripNano": 175807261,
+ "averageApexExecutionNano": 67770271,
+ "shortestApexExecutionNano": 4806642,
+ "longestApexExecutionNano": 121427231
+ },
+ {
+ "batchNumber": 821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141177072,
+ "shortestRoundTripNano": 70638532,
+ "longestRoundTripNano": 170024583,
+ "averageApexExecutionNano": 38869512,
+ "shortestApexExecutionNano": 5630546,
+ "longestApexExecutionNano": 93009549
+ },
+ {
+ "batchNumber": 822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136846500,
+ "shortestRoundTripNano": 77298828,
+ "longestRoundTripNano": 163022359,
+ "averageApexExecutionNano": 69933591,
+ "shortestApexExecutionNano": 10528726,
+ "longestApexExecutionNano": 120027674
+ },
+ {
+ "batchNumber": 823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144483100,
+ "shortestRoundTripNano": 57356808,
+ "longestRoundTripNano": 175826298,
+ "averageApexExecutionNano": 72912470,
+ "shortestApexExecutionNano": 15451973,
+ "longestApexExecutionNano": 126897326
+ },
+ {
+ "batchNumber": 824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146826956,
+ "shortestRoundTripNano": 61537154,
+ "longestRoundTripNano": 178286423,
+ "averageApexExecutionNano": 61333711,
+ "shortestApexExecutionNano": 7964957,
+ "longestApexExecutionNano": 134562644
+ },
+ {
+ "batchNumber": 825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122053960,
+ "shortestRoundTripNano": 47397212,
+ "longestRoundTripNano": 145761195,
+ "averageApexExecutionNano": 38688136,
+ "shortestApexExecutionNano": 7414256,
+ "longestApexExecutionNano": 94307356
+ },
+ {
+ "batchNumber": 826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150660539,
+ "shortestRoundTripNano": 89432632,
+ "longestRoundTripNano": 172652633,
+ "averageApexExecutionNano": 62918038,
+ "shortestApexExecutionNano": 9981506,
+ "longestApexExecutionNano": 121611210
+ },
+ {
+ "batchNumber": 827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139258279,
+ "shortestRoundTripNano": 69891335,
+ "longestRoundTripNano": 174124140,
+ "averageApexExecutionNano": 68343149,
+ "shortestApexExecutionNano": 7964310,
+ "longestApexExecutionNano": 128145162
+ },
+ {
+ "batchNumber": 828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123771036,
+ "shortestRoundTripNano": 46176306,
+ "longestRoundTripNano": 155947408,
+ "averageApexExecutionNano": 60443730,
+ "shortestApexExecutionNano": 6148874,
+ "longestApexExecutionNano": 110817275
+ },
+ {
+ "batchNumber": 829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149801555,
+ "shortestRoundTripNano": 64948138,
+ "longestRoundTripNano": 174305989,
+ "averageApexExecutionNano": 57510033,
+ "shortestApexExecutionNano": 9777100,
+ "longestApexExecutionNano": 122665613
+ },
+ {
+ "batchNumber": 830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124892463,
+ "shortestRoundTripNano": 45674792,
+ "longestRoundTripNano": 156032569,
+ "averageApexExecutionNano": 55065876,
+ "shortestApexExecutionNano": 10004514,
+ "longestApexExecutionNano": 110869992
+ },
+ {
+ "batchNumber": 831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137961298,
+ "shortestRoundTripNano": 54209636,
+ "longestRoundTripNano": 166260412,
+ "averageApexExecutionNano": 56103850,
+ "shortestApexExecutionNano": 7377316,
+ "longestApexExecutionNano": 117322927
+ },
+ {
+ "batchNumber": 832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145886434,
+ "shortestRoundTripNano": 59053382,
+ "longestRoundTripNano": 168955803,
+ "averageApexExecutionNano": 62204903,
+ "shortestApexExecutionNano": 14107770,
+ "longestApexExecutionNano": 111747302
+ },
+ {
+ "batchNumber": 833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140494604,
+ "shortestRoundTripNano": 90541992,
+ "longestRoundTripNano": 161742954,
+ "averageApexExecutionNano": 62100188,
+ "shortestApexExecutionNano": 7069418,
+ "longestApexExecutionNano": 105867035
+ },
+ {
+ "batchNumber": 834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142179876,
+ "shortestRoundTripNano": 57825629,
+ "longestRoundTripNano": 177249919,
+ "averageApexExecutionNano": 75275918,
+ "shortestApexExecutionNano": 14996571,
+ "longestApexExecutionNano": 145841932
+ },
+ {
+ "batchNumber": 835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131654450,
+ "shortestRoundTripNano": 61851298,
+ "longestRoundTripNano": 153992339,
+ "averageApexExecutionNano": 54172991,
+ "shortestApexExecutionNano": 7666071,
+ "longestApexExecutionNano": 105409729
+ },
+ {
+ "batchNumber": 836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128804868,
+ "shortestRoundTripNano": 49685648,
+ "longestRoundTripNano": 158948500,
+ "averageApexExecutionNano": 50836119,
+ "shortestApexExecutionNano": 7868466,
+ "longestApexExecutionNano": 117585146
+ },
+ {
+ "batchNumber": 837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131683727,
+ "shortestRoundTripNano": 61915653,
+ "longestRoundTripNano": 153439507,
+ "averageApexExecutionNano": 56659884,
+ "shortestApexExecutionNano": 10026205,
+ "longestApexExecutionNano": 117053980
+ },
+ {
+ "batchNumber": 838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183178348,
+ "shortestRoundTripNano": 62555934,
+ "longestRoundTripNano": 238701935,
+ "averageApexExecutionNano": 76872710,
+ "shortestApexExecutionNano": 8228881,
+ "longestApexExecutionNano": 165005714
+ },
+ {
+ "batchNumber": 839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168223214,
+ "shortestRoundTripNano": 93385109,
+ "longestRoundTripNano": 204549341,
+ "averageApexExecutionNano": 69665050,
+ "shortestApexExecutionNano": 10052173,
+ "longestApexExecutionNano": 132755504
+ },
+ {
+ "batchNumber": 840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141982066,
+ "shortestRoundTripNano": 81656848,
+ "longestRoundTripNano": 177858417,
+ "averageApexExecutionNano": 64891450,
+ "shortestApexExecutionNano": 8162262,
+ "longestApexExecutionNano": 116138438
+ },
+ {
+ "batchNumber": 841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148424367,
+ "shortestRoundTripNano": 78964629,
+ "longestRoundTripNano": 178514518,
+ "averageApexExecutionNano": 57563314,
+ "shortestApexExecutionNano": 7885594,
+ "longestApexExecutionNano": 130810445
+ },
+ {
+ "batchNumber": 842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142186647,
+ "shortestRoundTripNano": 59422121,
+ "longestRoundTripNano": 178189180,
+ "averageApexExecutionNano": 47589585,
+ "shortestApexExecutionNano": 5488889,
+ "longestApexExecutionNano": 118273345
+ },
+ {
+ "batchNumber": 843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153270962,
+ "shortestRoundTripNano": 89504603,
+ "longestRoundTripNano": 177868352,
+ "averageApexExecutionNano": 67375997,
+ "shortestApexExecutionNano": 8624226,
+ "longestApexExecutionNano": 123838501
+ },
+ {
+ "batchNumber": 844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152338668,
+ "shortestRoundTripNano": 68286224,
+ "longestRoundTripNano": 187106012,
+ "averageApexExecutionNano": 43158690,
+ "shortestApexExecutionNano": 5961317,
+ "longestApexExecutionNano": 129179878
+ },
+ {
+ "batchNumber": 845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149437659,
+ "shortestRoundTripNano": 69314291,
+ "longestRoundTripNano": 180974615,
+ "averageApexExecutionNano": 77389670,
+ "shortestApexExecutionNano": 9012969,
+ "longestApexExecutionNano": 139102748
+ },
+ {
+ "batchNumber": 846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159115709,
+ "shortestRoundTripNano": 48715943,
+ "longestRoundTripNano": 194781602,
+ "averageApexExecutionNano": 56911862,
+ "shortestApexExecutionNano": 6609693,
+ "longestApexExecutionNano": 139450564
+ },
+ {
+ "batchNumber": 847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138307468,
+ "shortestRoundTripNano": 73692359,
+ "longestRoundTripNano": 166893295,
+ "averageApexExecutionNano": 57165882,
+ "shortestApexExecutionNano": 8447516,
+ "longestApexExecutionNano": 118667347
+ },
+ {
+ "batchNumber": 848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146113668,
+ "shortestRoundTripNano": 74864949,
+ "longestRoundTripNano": 170912844,
+ "averageApexExecutionNano": 55304435,
+ "shortestApexExecutionNano": 12224424,
+ "longestApexExecutionNano": 118740175
+ },
+ {
+ "batchNumber": 849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131862830,
+ "shortestRoundTripNano": 70727829,
+ "longestRoundTripNano": 163938245,
+ "averageApexExecutionNano": 54352689,
+ "shortestApexExecutionNano": 5990944,
+ "longestApexExecutionNano": 122160080
+ },
+ {
+ "batchNumber": 850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143521140,
+ "shortestRoundTripNano": 58546376,
+ "longestRoundTripNano": 181958612,
+ "averageApexExecutionNano": 49477136,
+ "shortestApexExecutionNano": 8429798,
+ "longestApexExecutionNano": 126835085
+ },
+ {
+ "batchNumber": 851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150577017,
+ "shortestRoundTripNano": 81797424,
+ "longestRoundTripNano": 177825725,
+ "averageApexExecutionNano": 73659479,
+ "shortestApexExecutionNano": 11312489,
+ "longestApexExecutionNano": 134452592
+ },
+ {
+ "batchNumber": 852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154122970,
+ "shortestRoundTripNano": 63523884,
+ "longestRoundTripNano": 193281070,
+ "averageApexExecutionNano": 62107379,
+ "shortestApexExecutionNano": 6165805,
+ "longestApexExecutionNano": 119186748
+ },
+ {
+ "batchNumber": 853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146159644,
+ "shortestRoundTripNano": 75848155,
+ "longestRoundTripNano": 177964493,
+ "averageApexExecutionNano": 62637074,
+ "shortestApexExecutionNano": 9734819,
+ "longestApexExecutionNano": 100355551
+ },
+ {
+ "batchNumber": 854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132691447,
+ "shortestRoundTripNano": 37571796,
+ "longestRoundTripNano": 176898982,
+ "averageApexExecutionNano": 54671698,
+ "shortestApexExecutionNano": 6912384,
+ "longestApexExecutionNano": 130769499
+ },
+ {
+ "batchNumber": 855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136918971,
+ "shortestRoundTripNano": 52825209,
+ "longestRoundTripNano": 164034646,
+ "averageApexExecutionNano": 63152546,
+ "shortestApexExecutionNano": 7776688,
+ "longestApexExecutionNano": 120729072
+ },
+ {
+ "batchNumber": 856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163970877,
+ "shortestRoundTripNano": 72427576,
+ "longestRoundTripNano": 195611453,
+ "averageApexExecutionNano": 75091617,
+ "shortestApexExecutionNano": 12138263,
+ "longestApexExecutionNano": 139882007
+ },
+ {
+ "batchNumber": 857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168894240,
+ "shortestRoundTripNano": 104185746,
+ "longestRoundTripNano": 193220624,
+ "averageApexExecutionNano": 76557655,
+ "shortestApexExecutionNano": 16934453,
+ "longestApexExecutionNano": 147414356
+ },
+ {
+ "batchNumber": 858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158820752,
+ "shortestRoundTripNano": 54452769,
+ "longestRoundTripNano": 192395147,
+ "averageApexExecutionNano": 59518722,
+ "shortestApexExecutionNano": 5341364,
+ "longestApexExecutionNano": 131752064
+ },
+ {
+ "batchNumber": 859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175313329,
+ "shortestRoundTripNano": 91818444,
+ "longestRoundTripNano": 200876754,
+ "averageApexExecutionNano": 85953597,
+ "shortestApexExecutionNano": 17838905,
+ "longestApexExecutionNano": 143843448
+ },
+ {
+ "batchNumber": 860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145826883,
+ "shortestRoundTripNano": 73824656,
+ "longestRoundTripNano": 164403764,
+ "averageApexExecutionNano": 68372123,
+ "shortestApexExecutionNano": 18128162,
+ "longestApexExecutionNano": 108592431
+ },
+ {
+ "batchNumber": 861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162534136,
+ "shortestRoundTripNano": 76398726,
+ "longestRoundTripNano": 186718740,
+ "averageApexExecutionNano": 71605942,
+ "shortestApexExecutionNano": 8491555,
+ "longestApexExecutionNano": 143492786
+ },
+ {
+ "batchNumber": 862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159482036,
+ "shortestRoundTripNano": 43150066,
+ "longestRoundTripNano": 199489239,
+ "averageApexExecutionNano": 62228372,
+ "shortestApexExecutionNano": 5911735,
+ "longestApexExecutionNano": 154463573
+ },
+ {
+ "batchNumber": 863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157414839,
+ "shortestRoundTripNano": 41239751,
+ "longestRoundTripNano": 187849406,
+ "averageApexExecutionNano": 70515100,
+ "shortestApexExecutionNano": 13853966,
+ "longestApexExecutionNano": 128844242
+ },
+ {
+ "batchNumber": 864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149655977,
+ "shortestRoundTripNano": 79269489,
+ "longestRoundTripNano": 178677122,
+ "averageApexExecutionNano": 68517266,
+ "shortestApexExecutionNano": 10124450,
+ "longestApexExecutionNano": 138128747
+ },
+ {
+ "batchNumber": 865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121956228,
+ "shortestRoundTripNano": 44686056,
+ "longestRoundTripNano": 150034173,
+ "averageApexExecutionNano": 48437524,
+ "shortestApexExecutionNano": 7480671,
+ "longestApexExecutionNano": 101736841
+ },
+ {
+ "batchNumber": 866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160098804,
+ "shortestRoundTripNano": 55228491,
+ "longestRoundTripNano": 193049860,
+ "averageApexExecutionNano": 61680541,
+ "shortestApexExecutionNano": 9679033,
+ "longestApexExecutionNano": 124953305
+ },
+ {
+ "batchNumber": 867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131803519,
+ "shortestRoundTripNano": 60142375,
+ "longestRoundTripNano": 157459216,
+ "averageApexExecutionNano": 64661434,
+ "shortestApexExecutionNano": 8897992,
+ "longestApexExecutionNano": 108535849
+ },
+ {
+ "batchNumber": 868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141471105,
+ "shortestRoundTripNano": 81816090,
+ "longestRoundTripNano": 164775246,
+ "averageApexExecutionNano": 60067222,
+ "shortestApexExecutionNano": 15566068,
+ "longestApexExecutionNano": 109866407
+ },
+ {
+ "batchNumber": 869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142894983,
+ "shortestRoundTripNano": 39854174,
+ "longestRoundTripNano": 172163045,
+ "averageApexExecutionNano": 54375838,
+ "shortestApexExecutionNano": 10585938,
+ "longestApexExecutionNano": 117228618
+ },
+ {
+ "batchNumber": 870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162527556,
+ "shortestRoundTripNano": 61126881,
+ "longestRoundTripNano": 200561173,
+ "averageApexExecutionNano": 66689959,
+ "shortestApexExecutionNano": 5945878,
+ "longestApexExecutionNano": 141357912
+ },
+ {
+ "batchNumber": 871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139354914,
+ "shortestRoundTripNano": 59836519,
+ "longestRoundTripNano": 161703273,
+ "averageApexExecutionNano": 66240361,
+ "shortestApexExecutionNano": 10589081,
+ "longestApexExecutionNano": 121561902
+ },
+ {
+ "batchNumber": 872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155861719,
+ "shortestRoundTripNano": 82096057,
+ "longestRoundTripNano": 178669518,
+ "averageApexExecutionNano": 80477250,
+ "shortestApexExecutionNano": 7652003,
+ "longestApexExecutionNano": 142773971
+ },
+ {
+ "batchNumber": 873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139803839,
+ "shortestRoundTripNano": 54278314,
+ "longestRoundTripNano": 170695448,
+ "averageApexExecutionNano": 46204874,
+ "shortestApexExecutionNano": 5838433,
+ "longestApexExecutionNano": 124343996
+ },
+ {
+ "batchNumber": 874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133385123,
+ "shortestRoundTripNano": 67801017,
+ "longestRoundTripNano": 157380356,
+ "averageApexExecutionNano": 58570042,
+ "shortestApexExecutionNano": 18348959,
+ "longestApexExecutionNano": 117579483
+ },
+ {
+ "batchNumber": 875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131378841,
+ "shortestRoundTripNano": 47072273,
+ "longestRoundTripNano": 153078220,
+ "averageApexExecutionNano": 55959678,
+ "shortestApexExecutionNano": 7094245,
+ "longestApexExecutionNano": 103697085
+ },
+ {
+ "batchNumber": 876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150286367,
+ "shortestRoundTripNano": 60157434,
+ "longestRoundTripNano": 175523031,
+ "averageApexExecutionNano": 73189063,
+ "shortestApexExecutionNano": 9473192,
+ "longestApexExecutionNano": 114130330
+ },
+ {
+ "batchNumber": 877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155295181,
+ "shortestRoundTripNano": 79723029,
+ "longestRoundTripNano": 177667193,
+ "averageApexExecutionNano": 60045147,
+ "shortestApexExecutionNano": 9083092,
+ "longestApexExecutionNano": 93096479
+ },
+ {
+ "batchNumber": 878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134774912,
+ "shortestRoundTripNano": 58190085,
+ "longestRoundTripNano": 163783223,
+ "averageApexExecutionNano": 61024286,
+ "shortestApexExecutionNano": 13874841,
+ "longestApexExecutionNano": 116598450
+ },
+ {
+ "batchNumber": 879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154443994,
+ "shortestRoundTripNano": 69083138,
+ "longestRoundTripNano": 183777681,
+ "averageApexExecutionNano": 79005147,
+ "shortestApexExecutionNano": 11979972,
+ "longestApexExecutionNano": 125983549
+ },
+ {
+ "batchNumber": 880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162936848,
+ "shortestRoundTripNano": 75501307,
+ "longestRoundTripNano": 189685833,
+ "averageApexExecutionNano": 64270934,
+ "shortestApexExecutionNano": 5910993,
+ "longestApexExecutionNano": 120193646
+ },
+ {
+ "batchNumber": 881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133510266,
+ "shortestRoundTripNano": 74080013,
+ "longestRoundTripNano": 159285472,
+ "averageApexExecutionNano": 58090053,
+ "shortestApexExecutionNano": 8263101,
+ "longestApexExecutionNano": 111116697
+ },
+ {
+ "batchNumber": 882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140506371,
+ "shortestRoundTripNano": 46687208,
+ "longestRoundTripNano": 163637528,
+ "averageApexExecutionNano": 66318400,
+ "shortestApexExecutionNano": 10518704,
+ "longestApexExecutionNano": 117786103
+ },
+ {
+ "batchNumber": 883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152013917,
+ "shortestRoundTripNano": 60167882,
+ "longestRoundTripNano": 181269425,
+ "averageApexExecutionNano": 52088362,
+ "shortestApexExecutionNano": 8668824,
+ "longestApexExecutionNano": 131627684
+ },
+ {
+ "batchNumber": 884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147523666,
+ "shortestRoundTripNano": 66137033,
+ "longestRoundTripNano": 181286667,
+ "averageApexExecutionNano": 62719484,
+ "shortestApexExecutionNano": 6396896,
+ "longestApexExecutionNano": 121604341
+ },
+ {
+ "batchNumber": 885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158452307,
+ "shortestRoundTripNano": 57661793,
+ "longestRoundTripNano": 186039885,
+ "averageApexExecutionNano": 63447697,
+ "shortestApexExecutionNano": 9241292,
+ "longestApexExecutionNano": 126175087
+ },
+ {
+ "batchNumber": 886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128844003,
+ "shortestRoundTripNano": 73159415,
+ "longestRoundTripNano": 148525749,
+ "averageApexExecutionNano": 53985516,
+ "shortestApexExecutionNano": 8236893,
+ "longestApexExecutionNano": 102885569
+ },
+ {
+ "batchNumber": 887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166783893,
+ "shortestRoundTripNano": 81751610,
+ "longestRoundTripNano": 215915073,
+ "averageApexExecutionNano": 68827804,
+ "shortestApexExecutionNano": 9507585,
+ "longestApexExecutionNano": 143705400
+ },
+ {
+ "batchNumber": 888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154870846,
+ "shortestRoundTripNano": 50759767,
+ "longestRoundTripNano": 181798735,
+ "averageApexExecutionNano": 68404171,
+ "shortestApexExecutionNano": 9804313,
+ "longestApexExecutionNano": 132951710
+ },
+ {
+ "batchNumber": 889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154808433,
+ "shortestRoundTripNano": 64624684,
+ "longestRoundTripNano": 181173430,
+ "averageApexExecutionNano": 63498589,
+ "shortestApexExecutionNano": 13898145,
+ "longestApexExecutionNano": 129112297
+ },
+ {
+ "batchNumber": 890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133762122,
+ "shortestRoundTripNano": 69851042,
+ "longestRoundTripNano": 161373569,
+ "averageApexExecutionNano": 63133721,
+ "shortestApexExecutionNano": 11437219,
+ "longestApexExecutionNano": 112470927
+ },
+ {
+ "batchNumber": 891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139082530,
+ "shortestRoundTripNano": 64864782,
+ "longestRoundTripNano": 166965551,
+ "averageApexExecutionNano": 64478252,
+ "shortestApexExecutionNano": 7112213,
+ "longestApexExecutionNano": 117749829
+ },
+ {
+ "batchNumber": 892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149977526,
+ "shortestRoundTripNano": 71097056,
+ "longestRoundTripNano": 184018773,
+ "averageApexExecutionNano": 54178887,
+ "shortestApexExecutionNano": 5654952,
+ "longestApexExecutionNano": 118326597
+ },
+ {
+ "batchNumber": 893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163995768,
+ "shortestRoundTripNano": 70911313,
+ "longestRoundTripNano": 196211342,
+ "averageApexExecutionNano": 69245241,
+ "shortestApexExecutionNano": 10381783,
+ "longestApexExecutionNano": 122355821
+ },
+ {
+ "batchNumber": 894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34994",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172384962,
+ "shortestRoundTripNano": 86608203,
+ "longestRoundTripNano": 201460380,
+ "averageApexExecutionNano": 80992631,
+ "shortestApexExecutionNano": 12177176,
+ "longestApexExecutionNano": 158662353
+ },
+ {
+ "batchNumber": 895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154144918,
+ "shortestRoundTripNano": 87433454,
+ "longestRoundTripNano": 175940947,
+ "averageApexExecutionNano": 74041308,
+ "shortestApexExecutionNano": 13960967,
+ "longestApexExecutionNano": 133957993
+ },
+ {
+ "batchNumber": 896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144055893,
+ "shortestRoundTripNano": 44521704,
+ "longestRoundTripNano": 173442289,
+ "averageApexExecutionNano": 64449869,
+ "shortestApexExecutionNano": 9773720,
+ "longestApexExecutionNano": 118843908
+ },
+ {
+ "batchNumber": 897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149746453,
+ "shortestRoundTripNano": 56125735,
+ "longestRoundTripNano": 181993299,
+ "averageApexExecutionNano": 55939788,
+ "shortestApexExecutionNano": 7108120,
+ "longestApexExecutionNano": 124520555
+ },
+ {
+ "batchNumber": 898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175128416,
+ "shortestRoundTripNano": 99731488,
+ "longestRoundTripNano": 201195960,
+ "averageApexExecutionNano": 80775240,
+ "shortestApexExecutionNano": 7974571,
+ "longestApexExecutionNano": 144979004
+ },
+ {
+ "batchNumber": 899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144684103,
+ "shortestRoundTripNano": 50113961,
+ "longestRoundTripNano": 180697098,
+ "averageApexExecutionNano": 65478718,
+ "shortestApexExecutionNano": 6814211,
+ "longestApexExecutionNano": 142279346
+ },
+ {
+ "batchNumber": 900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151897673,
+ "shortestRoundTripNano": 84960578,
+ "longestRoundTripNano": 178187116,
+ "averageApexExecutionNano": 76611661,
+ "shortestApexExecutionNano": 7781408,
+ "longestApexExecutionNano": 143414677
+ },
+ {
+ "batchNumber": 901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149880956,
+ "shortestRoundTripNano": 31874777,
+ "longestRoundTripNano": 179453027,
+ "averageApexExecutionNano": 66655103,
+ "shortestApexExecutionNano": 5874733,
+ "longestApexExecutionNano": 129713333
+ },
+ {
+ "batchNumber": 902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166414325,
+ "shortestRoundTripNano": 85478591,
+ "longestRoundTripNano": 200600620,
+ "averageApexExecutionNano": 79051460,
+ "shortestApexExecutionNano": 9897541,
+ "longestApexExecutionNano": 164887150
+ },
+ {
+ "batchNumber": 903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167394037,
+ "shortestRoundTripNano": 79645409,
+ "longestRoundTripNano": 199501205,
+ "averageApexExecutionNano": 69843825,
+ "shortestApexExecutionNano": 12043022,
+ "longestApexExecutionNano": 125340393
+ },
+ {
+ "batchNumber": 904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147007864,
+ "shortestRoundTripNano": 64896814,
+ "longestRoundTripNano": 176070300,
+ "averageApexExecutionNano": 53860369,
+ "shortestApexExecutionNano": 9939571,
+ "longestApexExecutionNano": 132179507
+ },
+ {
+ "batchNumber": 905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155999832,
+ "shortestRoundTripNano": 60705986,
+ "longestRoundTripNano": 189565042,
+ "averageApexExecutionNano": 54346195,
+ "shortestApexExecutionNano": 7960194,
+ "longestApexExecutionNano": 105776069
+ },
+ {
+ "batchNumber": 906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137908707,
+ "shortestRoundTripNano": 41716782,
+ "longestRoundTripNano": 175279660,
+ "averageApexExecutionNano": 54062644,
+ "shortestApexExecutionNano": 5947303,
+ "longestApexExecutionNano": 126595943
+ },
+ {
+ "batchNumber": 907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142371100,
+ "shortestRoundTripNano": 46224745,
+ "longestRoundTripNano": 170652948,
+ "averageApexExecutionNano": 65296560,
+ "shortestApexExecutionNano": 7602801,
+ "longestApexExecutionNano": 122568806
+ },
+ {
+ "batchNumber": 908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140943672,
+ "shortestRoundTripNano": 61685987,
+ "longestRoundTripNano": 169238290,
+ "averageApexExecutionNano": 55974300,
+ "shortestApexExecutionNano": 9509977,
+ "longestApexExecutionNano": 124934114
+ },
+ {
+ "batchNumber": 909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):34988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184892053,
+ "shortestRoundTripNano": 37890668,
+ "longestRoundTripNano": 221347114,
+ "averageApexExecutionNano": 68083897,
+ "shortestApexExecutionNano": 8968602,
+ "longestApexExecutionNano": 139470748
+ },
+ {
+ "batchNumber": 910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139919192,
+ "shortestRoundTripNano": 77582034,
+ "longestRoundTripNano": 169912550,
+ "averageApexExecutionNano": 64581657,
+ "shortestApexExecutionNano": 18744527,
+ "longestApexExecutionNano": 121098729
+ },
+ {
+ "batchNumber": 911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160127790,
+ "shortestRoundTripNano": 47923270,
+ "longestRoundTripNano": 195918064,
+ "averageApexExecutionNano": 71095777,
+ "shortestApexExecutionNano": 12834209,
+ "longestApexExecutionNano": 159945746
+ },
+ {
+ "batchNumber": 912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143799597,
+ "shortestRoundTripNano": 92173979,
+ "longestRoundTripNano": 177948357,
+ "averageApexExecutionNano": 68708478,
+ "shortestApexExecutionNano": 8100335,
+ "longestApexExecutionNano": 133616579
+ },
+ {
+ "batchNumber": 913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137256132,
+ "shortestRoundTripNano": 57702006,
+ "longestRoundTripNano": 162158287,
+ "averageApexExecutionNano": 53224547,
+ "shortestApexExecutionNano": 9874183,
+ "longestApexExecutionNano": 100785894
+ },
+ {
+ "batchNumber": 914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158513063,
+ "shortestRoundTripNano": 87261293,
+ "longestRoundTripNano": 183384836,
+ "averageApexExecutionNano": 64471863,
+ "shortestApexExecutionNano": 7251980,
+ "longestApexExecutionNano": 128903713
+ },
+ {
+ "batchNumber": 915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135366867,
+ "shortestRoundTripNano": 52781541,
+ "longestRoundTripNano": 162662135,
+ "averageApexExecutionNano": 55892223,
+ "shortestApexExecutionNano": 8739116,
+ "longestApexExecutionNano": 120315247
+ },
+ {
+ "batchNumber": 916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148799763,
+ "shortestRoundTripNano": 80379822,
+ "longestRoundTripNano": 178697721,
+ "averageApexExecutionNano": 55533083,
+ "shortestApexExecutionNano": 5659449,
+ "longestApexExecutionNano": 124586842
+ },
+ {
+ "batchNumber": 917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143715022,
+ "shortestRoundTripNano": 73001894,
+ "longestRoundTripNano": 176632778,
+ "averageApexExecutionNano": 47897241,
+ "shortestApexExecutionNano": 9831173,
+ "longestApexExecutionNano": 100395627
+ },
+ {
+ "batchNumber": 918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145447439,
+ "shortestRoundTripNano": 73719013,
+ "longestRoundTripNano": 177574095,
+ "averageApexExecutionNano": 67277654,
+ "shortestApexExecutionNano": 5801143,
+ "longestApexExecutionNano": 120110533
+ },
+ {
+ "batchNumber": 919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170095535,
+ "shortestRoundTripNano": 72263082,
+ "longestRoundTripNano": 197286459,
+ "averageApexExecutionNano": 78728146,
+ "shortestApexExecutionNano": 12254287,
+ "longestApexExecutionNano": 139377841
+ },
+ {
+ "batchNumber": 920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138763310,
+ "shortestRoundTripNano": 71356003,
+ "longestRoundTripNano": 166835704,
+ "averageApexExecutionNano": 51689775,
+ "shortestApexExecutionNano": 15326522,
+ "longestApexExecutionNano": 94286256
+ },
+ {
+ "batchNumber": 921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133005448,
+ "shortestRoundTripNano": 61773227,
+ "longestRoundTripNano": 156631690,
+ "averageApexExecutionNano": 53282964,
+ "shortestApexExecutionNano": 6372004,
+ "longestApexExecutionNano": 106008877
+ },
+ {
+ "batchNumber": 922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135131478,
+ "shortestRoundTripNano": 68838302,
+ "longestRoundTripNano": 163792663,
+ "averageApexExecutionNano": 54515857,
+ "shortestApexExecutionNano": 9828009,
+ "longestApexExecutionNano": 103488375
+ },
+ {
+ "batchNumber": 923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144313521,
+ "shortestRoundTripNano": 68301992,
+ "longestRoundTripNano": 168852597,
+ "averageApexExecutionNano": 70531838,
+ "shortestApexExecutionNano": 14569052,
+ "longestApexExecutionNano": 119685537
+ },
+ {
+ "batchNumber": 924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139263164,
+ "shortestRoundTripNano": 30258420,
+ "longestRoundTripNano": 177343080,
+ "averageApexExecutionNano": 71023454,
+ "shortestApexExecutionNano": 9371378,
+ "longestApexExecutionNano": 127514190
+ },
+ {
+ "batchNumber": 925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154678303,
+ "shortestRoundTripNano": 83674052,
+ "longestRoundTripNano": 176990327,
+ "averageApexExecutionNano": 75001058,
+ "shortestApexExecutionNano": 19375539,
+ "longestApexExecutionNano": 117076407
+ },
+ {
+ "batchNumber": 926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 270805108,
+ "shortestRoundTripNano": 66011011,
+ "longestRoundTripNano": 307249075,
+ "averageApexExecutionNano": 142848725,
+ "shortestApexExecutionNano": 6739888,
+ "longestApexExecutionNano": 267740998
+ },
+ {
+ "batchNumber": 927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128609176,
+ "shortestRoundTripNano": 64053487,
+ "longestRoundTripNano": 153875692,
+ "averageApexExecutionNano": 66878896,
+ "shortestApexExecutionNano": 11950303,
+ "longestApexExecutionNano": 106545568
+ },
+ {
+ "batchNumber": 928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143746708,
+ "shortestRoundTripNano": 61607080,
+ "longestRoundTripNano": 171555501,
+ "averageApexExecutionNano": 64629200,
+ "shortestApexExecutionNano": 9901398,
+ "longestApexExecutionNano": 128010518
+ },
+ {
+ "batchNumber": 929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186781399,
+ "shortestRoundTripNano": 103162375,
+ "longestRoundTripNano": 218740575,
+ "averageApexExecutionNano": 78027611,
+ "shortestApexExecutionNano": 7301022,
+ "longestApexExecutionNano": 159979500
+ },
+ {
+ "batchNumber": 930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135091018,
+ "shortestRoundTripNano": 71369589,
+ "longestRoundTripNano": 162084454,
+ "averageApexExecutionNano": 56277061,
+ "shortestApexExecutionNano": 6104948,
+ "longestApexExecutionNano": 119139931
+ },
+ {
+ "batchNumber": 931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130631004,
+ "shortestRoundTripNano": 57924680,
+ "longestRoundTripNano": 161474631,
+ "averageApexExecutionNano": 59002249,
+ "shortestApexExecutionNano": 7589936,
+ "longestApexExecutionNano": 108288176
+ },
+ {
+ "batchNumber": 932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133982980,
+ "shortestRoundTripNano": 52883288,
+ "longestRoundTripNano": 166789882,
+ "averageApexExecutionNano": 52122288,
+ "shortestApexExecutionNano": 10028015,
+ "longestApexExecutionNano": 125275684
+ },
+ {
+ "batchNumber": 933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160517615,
+ "shortestRoundTripNano": 62134138,
+ "longestRoundTripNano": 199345074,
+ "averageApexExecutionNano": 81969977,
+ "shortestApexExecutionNano": 14259798,
+ "longestApexExecutionNano": 147116517
+ },
+ {
+ "batchNumber": 934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177334117,
+ "shortestRoundTripNano": 60404706,
+ "longestRoundTripNano": 205202559,
+ "averageApexExecutionNano": 81890545,
+ "shortestApexExecutionNano": 9613186,
+ "longestApexExecutionNano": 147145438
+ },
+ {
+ "batchNumber": 935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131876379,
+ "shortestRoundTripNano": 66143258,
+ "longestRoundTripNano": 155377270,
+ "averageApexExecutionNano": 48229294,
+ "shortestApexExecutionNano": 6604452,
+ "longestApexExecutionNano": 101761051
+ },
+ {
+ "batchNumber": 936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128058227,
+ "shortestRoundTripNano": 68790655,
+ "longestRoundTripNano": 151816953,
+ "averageApexExecutionNano": 61577162,
+ "shortestApexExecutionNano": 8296386,
+ "longestApexExecutionNano": 111138971
+ },
+ {
+ "batchNumber": 937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149222225,
+ "shortestRoundTripNano": 52346163,
+ "longestRoundTripNano": 177973090,
+ "averageApexExecutionNano": 59272342,
+ "shortestApexExecutionNano": 8105443,
+ "longestApexExecutionNano": 131507413
+ },
+ {
+ "batchNumber": 938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159260690,
+ "shortestRoundTripNano": 79994786,
+ "longestRoundTripNano": 196620463,
+ "averageApexExecutionNano": 60467332,
+ "shortestApexExecutionNano": 7140077,
+ "longestApexExecutionNano": 143002989
+ },
+ {
+ "batchNumber": 939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134837673,
+ "shortestRoundTripNano": 58833893,
+ "longestRoundTripNano": 163372463,
+ "averageApexExecutionNano": 46340017,
+ "shortestApexExecutionNano": 11152412,
+ "longestApexExecutionNano": 84970637
+ },
+ {
+ "batchNumber": 940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124173776,
+ "shortestRoundTripNano": 50787564,
+ "longestRoundTripNano": 148341031,
+ "averageApexExecutionNano": 44016793,
+ "shortestApexExecutionNano": 5210271,
+ "longestApexExecutionNano": 97598698
+ },
+ {
+ "batchNumber": 941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155287665,
+ "shortestRoundTripNano": 65096989,
+ "longestRoundTripNano": 184304029,
+ "averageApexExecutionNano": 70333501,
+ "shortestApexExecutionNano": 12180666,
+ "longestApexExecutionNano": 142732802
+ },
+ {
+ "batchNumber": 942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153385273,
+ "shortestRoundTripNano": 63297258,
+ "longestRoundTripNano": 183492231,
+ "averageApexExecutionNano": 44890178,
+ "shortestApexExecutionNano": 7694725,
+ "longestApexExecutionNano": 109678839
+ },
+ {
+ "batchNumber": 943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179786873,
+ "shortestRoundTripNano": 81541996,
+ "longestRoundTripNano": 209500585,
+ "averageApexExecutionNano": 69168418,
+ "shortestApexExecutionNano": 11430117,
+ "longestApexExecutionNano": 150436795
+ },
+ {
+ "batchNumber": 944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122222617,
+ "shortestRoundTripNano": 39730460,
+ "longestRoundTripNano": 154311832,
+ "averageApexExecutionNano": 55226916,
+ "shortestApexExecutionNano": 5386512,
+ "longestApexExecutionNano": 108459371
+ },
+ {
+ "batchNumber": 945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141844053,
+ "shortestRoundTripNano": 71180833,
+ "longestRoundTripNano": 164700205,
+ "averageApexExecutionNano": 58773345,
+ "shortestApexExecutionNano": 10674922,
+ "longestApexExecutionNano": 122652642
+ },
+ {
+ "batchNumber": 946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148589590,
+ "shortestRoundTripNano": 59279637,
+ "longestRoundTripNano": 192122924,
+ "averageApexExecutionNano": 57315606,
+ "shortestApexExecutionNano": 5545003,
+ "longestApexExecutionNano": 134475884
+ },
+ {
+ "batchNumber": 947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153331442,
+ "shortestRoundTripNano": 79933561,
+ "longestRoundTripNano": 177412410,
+ "averageApexExecutionNano": 69203771,
+ "shortestApexExecutionNano": 11396183,
+ "longestApexExecutionNano": 126913792
+ },
+ {
+ "batchNumber": 948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147153537,
+ "shortestRoundTripNano": 78296933,
+ "longestRoundTripNano": 170771952,
+ "averageApexExecutionNano": 61464204,
+ "shortestApexExecutionNano": 7437268,
+ "longestApexExecutionNano": 103696876
+ },
+ {
+ "batchNumber": 949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150922077,
+ "shortestRoundTripNano": 85902699,
+ "longestRoundTripNano": 183871103,
+ "averageApexExecutionNano": 67483869,
+ "shortestApexExecutionNano": 7097394,
+ "longestApexExecutionNano": 137693612
+ },
+ {
+ "batchNumber": 950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149440158,
+ "shortestRoundTripNano": 68714846,
+ "longestRoundTripNano": 183158443,
+ "averageApexExecutionNano": 66311572,
+ "shortestApexExecutionNano": 10098502,
+ "longestApexExecutionNano": 129134276
+ },
+ {
+ "batchNumber": 951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161280619,
+ "shortestRoundTripNano": 68751140,
+ "longestRoundTripNano": 197911682,
+ "averageApexExecutionNano": 68588341,
+ "shortestApexExecutionNano": 10700374,
+ "longestApexExecutionNano": 130118208
+ },
+ {
+ "batchNumber": 952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135514304,
+ "shortestRoundTripNano": 59095260,
+ "longestRoundTripNano": 164186240,
+ "averageApexExecutionNano": 61315776,
+ "shortestApexExecutionNano": 8895705,
+ "longestApexExecutionNano": 123529216
+ },
+ {
+ "batchNumber": 953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144994227,
+ "shortestRoundTripNano": 58212053,
+ "longestRoundTripNano": 178275194,
+ "averageApexExecutionNano": 57961798,
+ "shortestApexExecutionNano": 7271434,
+ "longestApexExecutionNano": 128287344
+ },
+ {
+ "batchNumber": 954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154411299,
+ "shortestRoundTripNano": 53159290,
+ "longestRoundTripNano": 193200800,
+ "averageApexExecutionNano": 53161350,
+ "shortestApexExecutionNano": 5765419,
+ "longestApexExecutionNano": 126122829
+ },
+ {
+ "batchNumber": 955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151858385,
+ "shortestRoundTripNano": 47637396,
+ "longestRoundTripNano": 181088119,
+ "averageApexExecutionNano": 72810344,
+ "shortestApexExecutionNano": 6115730,
+ "longestApexExecutionNano": 120411479
+ },
+ {
+ "batchNumber": 956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132964952,
+ "shortestRoundTripNano": 76198437,
+ "longestRoundTripNano": 156731880,
+ "averageApexExecutionNano": 68051089,
+ "shortestApexExecutionNano": 10658180,
+ "longestApexExecutionNano": 121112384
+ },
+ {
+ "batchNumber": 957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138199966,
+ "shortestRoundTripNano": 66387109,
+ "longestRoundTripNano": 164270782,
+ "averageApexExecutionNano": 42619118,
+ "shortestApexExecutionNano": 5924299,
+ "longestApexExecutionNano": 84629968
+ },
+ {
+ "batchNumber": 958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143735517,
+ "shortestRoundTripNano": 69271080,
+ "longestRoundTripNano": 175026543,
+ "averageApexExecutionNano": 83832035,
+ "shortestApexExecutionNano": 24980193,
+ "longestApexExecutionNano": 131952504
+ },
+ {
+ "batchNumber": 959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159127781,
+ "shortestRoundTripNano": 76810620,
+ "longestRoundTripNano": 192861994,
+ "averageApexExecutionNano": 75938466,
+ "shortestApexExecutionNano": 11967883,
+ "longestApexExecutionNano": 140145878
+ },
+ {
+ "batchNumber": 960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177004357,
+ "shortestRoundTripNano": 78254218,
+ "longestRoundTripNano": 213181663,
+ "averageApexExecutionNano": 73102528,
+ "shortestApexExecutionNano": 14664154,
+ "longestApexExecutionNano": 148178893
+ },
+ {
+ "batchNumber": 961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135898671,
+ "shortestRoundTripNano": 26982106,
+ "longestRoundTripNano": 168401333,
+ "averageApexExecutionNano": 56283101,
+ "shortestApexExecutionNano": 7302001,
+ "longestApexExecutionNano": 131790068
+ },
+ {
+ "batchNumber": 962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137466381,
+ "shortestRoundTripNano": 57108364,
+ "longestRoundTripNano": 165104211,
+ "averageApexExecutionNano": 49868168,
+ "shortestApexExecutionNano": 6640668,
+ "longestApexExecutionNano": 108682552
+ },
+ {
+ "batchNumber": 963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152354963,
+ "shortestRoundTripNano": 80038642,
+ "longestRoundTripNano": 173363610,
+ "averageApexExecutionNano": 74191855,
+ "shortestApexExecutionNano": 30657144,
+ "longestApexExecutionNano": 128577131
+ },
+ {
+ "batchNumber": 964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140839020,
+ "shortestRoundTripNano": 52546450,
+ "longestRoundTripNano": 173976791,
+ "averageApexExecutionNano": 66396383,
+ "shortestApexExecutionNano": 6351538,
+ "longestApexExecutionNano": 133640704
+ },
+ {
+ "batchNumber": 965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143040083,
+ "shortestRoundTripNano": 35045154,
+ "longestRoundTripNano": 168109394,
+ "averageApexExecutionNano": 64170625,
+ "shortestApexExecutionNano": 6083834,
+ "longestApexExecutionNano": 127185082
+ },
+ {
+ "batchNumber": 966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150030264,
+ "shortestRoundTripNano": 49957413,
+ "longestRoundTripNano": 187251135,
+ "averageApexExecutionNano": 76212387,
+ "shortestApexExecutionNano": 8242404,
+ "longestApexExecutionNano": 158026279
+ },
+ {
+ "batchNumber": 967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150852439,
+ "shortestRoundTripNano": 68835948,
+ "longestRoundTripNano": 189399994,
+ "averageApexExecutionNano": 73602279,
+ "shortestApexExecutionNano": 10300835,
+ "longestApexExecutionNano": 144234610
+ },
+ {
+ "batchNumber": 968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174532480,
+ "shortestRoundTripNano": 87952904,
+ "longestRoundTripNano": 223279163,
+ "averageApexExecutionNano": 92451148,
+ "shortestApexExecutionNano": 25665037,
+ "longestApexExecutionNano": 151439614
+ },
+ {
+ "batchNumber": 969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158370202,
+ "shortestRoundTripNano": 95045998,
+ "longestRoundTripNano": 181282008,
+ "averageApexExecutionNano": 64758575,
+ "shortestApexExecutionNano": 8060185,
+ "longestApexExecutionNano": 130798916
+ },
+ {
+ "batchNumber": 970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140776412,
+ "shortestRoundTripNano": 85305053,
+ "longestRoundTripNano": 167847500,
+ "averageApexExecutionNano": 54893045,
+ "shortestApexExecutionNano": 6637741,
+ "longestApexExecutionNano": 112755953
+ },
+ {
+ "batchNumber": 971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156314141,
+ "shortestRoundTripNano": 77954790,
+ "longestRoundTripNano": 180363128,
+ "averageApexExecutionNano": 60818108,
+ "shortestApexExecutionNano": 6739761,
+ "longestApexExecutionNano": 125615609
+ },
+ {
+ "batchNumber": 972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141536971,
+ "shortestRoundTripNano": 67292421,
+ "longestRoundTripNano": 172441037,
+ "averageApexExecutionNano": 63072244,
+ "shortestApexExecutionNano": 13349682,
+ "longestApexExecutionNano": 118996539
+ },
+ {
+ "batchNumber": 973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127966086,
+ "shortestRoundTripNano": 56478126,
+ "longestRoundTripNano": 162020329,
+ "averageApexExecutionNano": 46777873,
+ "shortestApexExecutionNano": 11434353,
+ "longestApexExecutionNano": 105912315
+ },
+ {
+ "batchNumber": 974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143270083,
+ "shortestRoundTripNano": 68400855,
+ "longestRoundTripNano": 168392019,
+ "averageApexExecutionNano": 56596608,
+ "shortestApexExecutionNano": 11686652,
+ "longestApexExecutionNano": 119620309
+ },
+ {
+ "batchNumber": 975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149263724,
+ "shortestRoundTripNano": 54847716,
+ "longestRoundTripNano": 182457675,
+ "averageApexExecutionNano": 75338636,
+ "shortestApexExecutionNano": 10923835,
+ "longestApexExecutionNano": 132840087
+ },
+ {
+ "batchNumber": 976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155554266,
+ "shortestRoundTripNano": 67959582,
+ "longestRoundTripNano": 180330333,
+ "averageApexExecutionNano": 67716081,
+ "shortestApexExecutionNano": 10301502,
+ "longestApexExecutionNano": 136840505
+ },
+ {
+ "batchNumber": 977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157112146,
+ "shortestRoundTripNano": 63151097,
+ "longestRoundTripNano": 187911115,
+ "averageApexExecutionNano": 67248450,
+ "shortestApexExecutionNano": 7730789,
+ "longestApexExecutionNano": 148154100
+ },
+ {
+ "batchNumber": 978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128516014,
+ "shortestRoundTripNano": 35802350,
+ "longestRoundTripNano": 161733787,
+ "averageApexExecutionNano": 60630236,
+ "shortestApexExecutionNano": 6561131,
+ "longestApexExecutionNano": 113933000
+ },
+ {
+ "batchNumber": 979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137178607,
+ "shortestRoundTripNano": 55793683,
+ "longestRoundTripNano": 168708084,
+ "averageApexExecutionNano": 40371678,
+ "shortestApexExecutionNano": 7040116,
+ "longestApexExecutionNano": 106775993
+ },
+ {
+ "batchNumber": 980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122911248,
+ "shortestRoundTripNano": 74820642,
+ "longestRoundTripNano": 147016165,
+ "averageApexExecutionNano": 59279023,
+ "shortestApexExecutionNano": 7011112,
+ "longestApexExecutionNano": 95287822
+ },
+ {
+ "batchNumber": 981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141664573,
+ "shortestRoundTripNano": 73382026,
+ "longestRoundTripNano": 166768406,
+ "averageApexExecutionNano": 47221537,
+ "shortestApexExecutionNano": 8203161,
+ "longestApexExecutionNano": 104664643
+ },
+ {
+ "batchNumber": 982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138067867,
+ "shortestRoundTripNano": 46377768,
+ "longestRoundTripNano": 170130597,
+ "averageApexExecutionNano": 67837302,
+ "shortestApexExecutionNano": 10731293,
+ "longestApexExecutionNano": 135030490
+ },
+ {
+ "batchNumber": 983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35030",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124624941,
+ "shortestRoundTripNano": 58821219,
+ "longestRoundTripNano": 160340948,
+ "averageApexExecutionNano": 51699858,
+ "shortestApexExecutionNano": 6732200,
+ "longestApexExecutionNano": 102645771
+ },
+ {
+ "batchNumber": 984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35030",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165466807,
+ "shortestRoundTripNano": 38366855,
+ "longestRoundTripNano": 218335114,
+ "averageApexExecutionNano": 70437045,
+ "shortestApexExecutionNano": 13586671,
+ "longestApexExecutionNano": 146292042
+ },
+ {
+ "batchNumber": 985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185998588,
+ "shortestRoundTripNano": 69193711,
+ "longestRoundTripNano": 219236591,
+ "averageApexExecutionNano": 72178786,
+ "shortestApexExecutionNano": 10749335,
+ "longestApexExecutionNano": 150594146
+ },
+ {
+ "batchNumber": 986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143485079,
+ "shortestRoundTripNano": 58311891,
+ "longestRoundTripNano": 174425609,
+ "averageApexExecutionNano": 54981307,
+ "shortestApexExecutionNano": 7917395,
+ "longestApexExecutionNano": 115286318
+ },
+ {
+ "batchNumber": 987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138865285,
+ "shortestRoundTripNano": 59376692,
+ "longestRoundTripNano": 166758745,
+ "averageApexExecutionNano": 64517022,
+ "shortestApexExecutionNano": 9618008,
+ "longestApexExecutionNano": 122982804
+ },
+ {
+ "batchNumber": 988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35030",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128420292,
+ "shortestRoundTripNano": 70992438,
+ "longestRoundTripNano": 155920394,
+ "averageApexExecutionNano": 40827251,
+ "shortestApexExecutionNano": 7824631,
+ "longestApexExecutionNano": 102061818
+ },
+ {
+ "batchNumber": 989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133361392,
+ "shortestRoundTripNano": 68978951,
+ "longestRoundTripNano": 159019194,
+ "averageApexExecutionNano": 53226521,
+ "shortestApexExecutionNano": 7497963,
+ "longestApexExecutionNano": 110506848
+ },
+ {
+ "batchNumber": 990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128317701,
+ "shortestRoundTripNano": 52201562,
+ "longestRoundTripNano": 154143532,
+ "averageApexExecutionNano": 52453960,
+ "shortestApexExecutionNano": 5849719,
+ "longestApexExecutionNano": 122193354
+ },
+ {
+ "batchNumber": 991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139125789,
+ "shortestRoundTripNano": 60961932,
+ "longestRoundTripNano": 175317096,
+ "averageApexExecutionNano": 56703036,
+ "shortestApexExecutionNano": 9187495,
+ "longestApexExecutionNano": 99317884
+ },
+ {
+ "batchNumber": 992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145273763,
+ "shortestRoundTripNano": 43229114,
+ "longestRoundTripNano": 179690821,
+ "averageApexExecutionNano": 54246426,
+ "shortestApexExecutionNano": 9312646,
+ "longestApexExecutionNano": 115595989
+ },
+ {
+ "batchNumber": 993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141247754,
+ "shortestRoundTripNano": 77952569,
+ "longestRoundTripNano": 178654650,
+ "averageApexExecutionNano": 60854274,
+ "shortestApexExecutionNano": 8171086,
+ "longestApexExecutionNano": 141465645
+ },
+ {
+ "batchNumber": 994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153963499,
+ "shortestRoundTripNano": 62253924,
+ "longestRoundTripNano": 181449331,
+ "averageApexExecutionNano": 64445107,
+ "shortestApexExecutionNano": 10200319,
+ "longestApexExecutionNano": 123115992
+ },
+ {
+ "batchNumber": 995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157501272,
+ "shortestRoundTripNano": 86121064,
+ "longestRoundTripNano": 187314094,
+ "averageApexExecutionNano": 53873029,
+ "shortestApexExecutionNano": 7103261,
+ "longestApexExecutionNano": 126717652
+ },
+ {
+ "batchNumber": 996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154439085,
+ "shortestRoundTripNano": 63647733,
+ "longestRoundTripNano": 182472956,
+ "averageApexExecutionNano": 63578168,
+ "shortestApexExecutionNano": 6183510,
+ "longestApexExecutionNano": 124123830
+ },
+ {
+ "batchNumber": 997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156851227,
+ "shortestRoundTripNano": 84162716,
+ "longestRoundTripNano": 198528579,
+ "averageApexExecutionNano": 59478620,
+ "shortestApexExecutionNano": 10046911,
+ "longestApexExecutionNano": 151109802
+ },
+ {
+ "batchNumber": 998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132190386,
+ "shortestRoundTripNano": 39526660,
+ "longestRoundTripNano": 155911803,
+ "averageApexExecutionNano": 54660662,
+ "shortestApexExecutionNano": 10081898,
+ "longestApexExecutionNano": 107290441
+ },
+ {
+ "batchNumber": 999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130838057,
+ "shortestRoundTripNano": 55447997,
+ "longestRoundTripNano": 159683067,
+ "averageApexExecutionNano": 50326331,
+ "shortestApexExecutionNano": 7501168,
+ "longestApexExecutionNano": 116222046
+ },
+ {
+ "batchNumber": 1000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148443731,
+ "shortestRoundTripNano": 53870609,
+ "longestRoundTripNano": 180583215,
+ "averageApexExecutionNano": 62237426,
+ "shortestApexExecutionNano": 6492896,
+ "longestApexExecutionNano": 130508755
+ },
+ {
+ "batchNumber": 1001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147304314,
+ "shortestRoundTripNano": 81712708,
+ "longestRoundTripNano": 182175851,
+ "averageApexExecutionNano": 87558350,
+ "shortestApexExecutionNano": 14466457,
+ "longestApexExecutionNano": 143094710
+ },
+ {
+ "batchNumber": 1002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187656558,
+ "shortestRoundTripNano": 58231378,
+ "longestRoundTripNano": 222960107,
+ "averageApexExecutionNano": 93223495,
+ "shortestApexExecutionNano": 12893294,
+ "longestApexExecutionNano": 175478241
+ },
+ {
+ "batchNumber": 1003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146384989,
+ "shortestRoundTripNano": 77547902,
+ "longestRoundTripNano": 167704368,
+ "averageApexExecutionNano": 61296185,
+ "shortestApexExecutionNano": 9726510,
+ "longestApexExecutionNano": 122410517
+ },
+ {
+ "batchNumber": 1004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150037141,
+ "shortestRoundTripNano": 58310062,
+ "longestRoundTripNano": 179575272,
+ "averageApexExecutionNano": 63066801,
+ "shortestApexExecutionNano": 6575035,
+ "longestApexExecutionNano": 122844999
+ },
+ {
+ "batchNumber": 1005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132016894,
+ "shortestRoundTripNano": 71388483,
+ "longestRoundTripNano": 162584847,
+ "averageApexExecutionNano": 56658656,
+ "shortestApexExecutionNano": 6674813,
+ "longestApexExecutionNano": 127122480
+ },
+ {
+ "batchNumber": 1006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159697300,
+ "shortestRoundTripNano": 59902553,
+ "longestRoundTripNano": 194707605,
+ "averageApexExecutionNano": 56663046,
+ "shortestApexExecutionNano": 8508000,
+ "longestApexExecutionNano": 118932203
+ },
+ {
+ "batchNumber": 1007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157940194,
+ "shortestRoundTripNano": 88183832,
+ "longestRoundTripNano": 189929513,
+ "averageApexExecutionNano": 79904973,
+ "shortestApexExecutionNano": 19018392,
+ "longestApexExecutionNano": 131529677
+ },
+ {
+ "batchNumber": 1008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145764609,
+ "shortestRoundTripNano": 40165040,
+ "longestRoundTripNano": 179194996,
+ "averageApexExecutionNano": 54300801,
+ "shortestApexExecutionNano": 7530402,
+ "longestApexExecutionNano": 126950591
+ },
+ {
+ "batchNumber": 1009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156333874,
+ "shortestRoundTripNano": 83025950,
+ "longestRoundTripNano": 180032792,
+ "averageApexExecutionNano": 55905889,
+ "shortestApexExecutionNano": 8241127,
+ "longestApexExecutionNano": 123616660
+ },
+ {
+ "batchNumber": 1010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146376430,
+ "shortestRoundTripNano": 58127446,
+ "longestRoundTripNano": 183927588,
+ "averageApexExecutionNano": 56347954,
+ "shortestApexExecutionNano": 7253331,
+ "longestApexExecutionNano": 122005081
+ },
+ {
+ "batchNumber": 1011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153154478,
+ "shortestRoundTripNano": 31289633,
+ "longestRoundTripNano": 187645714,
+ "averageApexExecutionNano": 70795991,
+ "shortestApexExecutionNano": 9457309,
+ "longestApexExecutionNano": 139514601
+ },
+ {
+ "batchNumber": 1012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136033974,
+ "shortestRoundTripNano": 68079598,
+ "longestRoundTripNano": 161782204,
+ "averageApexExecutionNano": 59073331,
+ "shortestApexExecutionNano": 6062499,
+ "longestApexExecutionNano": 127646833
+ },
+ {
+ "batchNumber": 1013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150480920,
+ "shortestRoundTripNano": 86086752,
+ "longestRoundTripNano": 176752260,
+ "averageApexExecutionNano": 56406618,
+ "shortestApexExecutionNano": 8277269,
+ "longestApexExecutionNano": 135010019
+ },
+ {
+ "batchNumber": 1014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134695531,
+ "shortestRoundTripNano": 69831130,
+ "longestRoundTripNano": 164513550,
+ "averageApexExecutionNano": 55648583,
+ "shortestApexExecutionNano": 5886358,
+ "longestApexExecutionNano": 112141594
+ },
+ {
+ "batchNumber": 1015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133227754,
+ "shortestRoundTripNano": 49541669,
+ "longestRoundTripNano": 165610265,
+ "averageApexExecutionNano": 51477417,
+ "shortestApexExecutionNano": 7330459,
+ "longestApexExecutionNano": 119297579
+ },
+ {
+ "batchNumber": 1016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120677048,
+ "shortestRoundTripNano": 39630655,
+ "longestRoundTripNano": 153590068,
+ "averageApexExecutionNano": 60697663,
+ "shortestApexExecutionNano": 9519297,
+ "longestApexExecutionNano": 108271497
+ },
+ {
+ "batchNumber": 1017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154644468,
+ "shortestRoundTripNano": 53661073,
+ "longestRoundTripNano": 186191575,
+ "averageApexExecutionNano": 70462337,
+ "shortestApexExecutionNano": 7013026,
+ "longestApexExecutionNano": 139242930
+ },
+ {
+ "batchNumber": 1018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124944142,
+ "shortestRoundTripNano": 64880239,
+ "longestRoundTripNano": 149935216,
+ "averageApexExecutionNano": 56752302,
+ "shortestApexExecutionNano": 10458590,
+ "longestApexExecutionNano": 100898779
+ },
+ {
+ "batchNumber": 1019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185723452,
+ "shortestRoundTripNano": 51313874,
+ "longestRoundTripNano": 226646739,
+ "averageApexExecutionNano": 73845926,
+ "shortestApexExecutionNano": 8458665,
+ "longestApexExecutionNano": 136968038
+ },
+ {
+ "batchNumber": 1020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145213369,
+ "shortestRoundTripNano": 67303795,
+ "longestRoundTripNano": 176501763,
+ "averageApexExecutionNano": 58864124,
+ "shortestApexExecutionNano": 8356309,
+ "longestApexExecutionNano": 136961331
+ },
+ {
+ "batchNumber": 1021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148582276,
+ "shortestRoundTripNano": 63307335,
+ "longestRoundTripNano": 182574397,
+ "averageApexExecutionNano": 37868515,
+ "shortestApexExecutionNano": 6276322,
+ "longestApexExecutionNano": 105328362
+ },
+ {
+ "batchNumber": 1022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143206663,
+ "shortestRoundTripNano": 88140699,
+ "longestRoundTripNano": 165474508,
+ "averageApexExecutionNano": 66522414,
+ "shortestApexExecutionNano": 21062719,
+ "longestApexExecutionNano": 104635276
+ },
+ {
+ "batchNumber": 1023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148823312,
+ "shortestRoundTripNano": 78125345,
+ "longestRoundTripNano": 169431566,
+ "averageApexExecutionNano": 62994198,
+ "shortestApexExecutionNano": 8292157,
+ "longestApexExecutionNano": 118121169
+ },
+ {
+ "batchNumber": 1024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131446112,
+ "shortestRoundTripNano": 54481224,
+ "longestRoundTripNano": 166052255,
+ "averageApexExecutionNano": 61852793,
+ "shortestApexExecutionNano": 8335799,
+ "longestApexExecutionNano": 118488522
+ },
+ {
+ "batchNumber": 1025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139057121,
+ "shortestRoundTripNano": 41786440,
+ "longestRoundTripNano": 173479510,
+ "averageApexExecutionNano": 62859941,
+ "shortestApexExecutionNano": 9061447,
+ "longestApexExecutionNano": 117750397
+ },
+ {
+ "batchNumber": 1026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158425096,
+ "shortestRoundTripNano": 86126095,
+ "longestRoundTripNano": 196829924,
+ "averageApexExecutionNano": 65503299,
+ "shortestApexExecutionNano": 9016892,
+ "longestApexExecutionNano": 146126788
+ },
+ {
+ "batchNumber": 1027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150659367,
+ "shortestRoundTripNano": 63536822,
+ "longestRoundTripNano": 185270434,
+ "averageApexExecutionNano": 62151852,
+ "shortestApexExecutionNano": 5921502,
+ "longestApexExecutionNano": 117685700
+ },
+ {
+ "batchNumber": 1028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151765694,
+ "shortestRoundTripNano": 78054835,
+ "longestRoundTripNano": 175863186,
+ "averageApexExecutionNano": 67889477,
+ "shortestApexExecutionNano": 6773810,
+ "longestApexExecutionNano": 127787146
+ },
+ {
+ "batchNumber": 1029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164727601,
+ "shortestRoundTripNano": 65993043,
+ "longestRoundTripNano": 192051676,
+ "averageApexExecutionNano": 77830221,
+ "shortestApexExecutionNano": 7154772,
+ "longestApexExecutionNano": 147145423
+ },
+ {
+ "batchNumber": 1030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160037720,
+ "shortestRoundTripNano": 85275752,
+ "longestRoundTripNano": 189855252,
+ "averageApexExecutionNano": 67369958,
+ "shortestApexExecutionNano": 6828013,
+ "longestApexExecutionNano": 141794020
+ },
+ {
+ "batchNumber": 1031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133063682,
+ "shortestRoundTripNano": 64605605,
+ "longestRoundTripNano": 160335902,
+ "averageApexExecutionNano": 54077856,
+ "shortestApexExecutionNano": 8921869,
+ "longestApexExecutionNano": 116247835
+ },
+ {
+ "batchNumber": 1032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139048384,
+ "shortestRoundTripNano": 69766508,
+ "longestRoundTripNano": 166677254,
+ "averageApexExecutionNano": 56608216,
+ "shortestApexExecutionNano": 9704222,
+ "longestApexExecutionNano": 120026773
+ },
+ {
+ "batchNumber": 1033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146410257,
+ "shortestRoundTripNano": 54500798,
+ "longestRoundTripNano": 170988171,
+ "averageApexExecutionNano": 55584741,
+ "shortestApexExecutionNano": 14347185,
+ "longestApexExecutionNano": 128844872
+ },
+ {
+ "batchNumber": 1034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135490483,
+ "shortestRoundTripNano": 84439727,
+ "longestRoundTripNano": 160826068,
+ "averageApexExecutionNano": 55529096,
+ "shortestApexExecutionNano": 9480684,
+ "longestApexExecutionNano": 111763471
+ },
+ {
+ "batchNumber": 1035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180497684,
+ "shortestRoundTripNano": 89811898,
+ "longestRoundTripNano": 206603820,
+ "averageApexExecutionNano": 75072348,
+ "shortestApexExecutionNano": 10963608,
+ "longestApexExecutionNano": 150994936
+ },
+ {
+ "batchNumber": 1036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164362500,
+ "shortestRoundTripNano": 88444935,
+ "longestRoundTripNano": 193453839,
+ "averageApexExecutionNano": 62202011,
+ "shortestApexExecutionNano": 8787797,
+ "longestApexExecutionNano": 115658205
+ },
+ {
+ "batchNumber": 1037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175293090,
+ "shortestRoundTripNano": 86796945,
+ "longestRoundTripNano": 207075510,
+ "averageApexExecutionNano": 94062340,
+ "shortestApexExecutionNano": 23751971,
+ "longestApexExecutionNano": 158655034
+ },
+ {
+ "batchNumber": 1038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158678401,
+ "shortestRoundTripNano": 84502932,
+ "longestRoundTripNano": 185685629,
+ "averageApexExecutionNano": 54076912,
+ "shortestApexExecutionNano": 6413191,
+ "longestApexExecutionNano": 110098165
+ },
+ {
+ "batchNumber": 1039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134281411,
+ "shortestRoundTripNano": 65562236,
+ "longestRoundTripNano": 158823036,
+ "averageApexExecutionNano": 59010343,
+ "shortestApexExecutionNano": 7604877,
+ "longestApexExecutionNano": 119970667
+ },
+ {
+ "batchNumber": 1040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184740330,
+ "shortestRoundTripNano": 57628877,
+ "longestRoundTripNano": 217168879,
+ "averageApexExecutionNano": 87368843,
+ "shortestApexExecutionNano": 12867905,
+ "longestApexExecutionNano": 151973784
+ },
+ {
+ "batchNumber": 1041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159594859,
+ "shortestRoundTripNano": 85943732,
+ "longestRoundTripNano": 187353264,
+ "averageApexExecutionNano": 61971909,
+ "shortestApexExecutionNano": 8759195,
+ "longestApexExecutionNano": 133958461
+ },
+ {
+ "batchNumber": 1042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148334488,
+ "shortestRoundTripNano": 67880860,
+ "longestRoundTripNano": 180605924,
+ "averageApexExecutionNano": 55439147,
+ "shortestApexExecutionNano": 6541585,
+ "longestApexExecutionNano": 119051568
+ },
+ {
+ "batchNumber": 1043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131983446,
+ "shortestRoundTripNano": 72430913,
+ "longestRoundTripNano": 160177530,
+ "averageApexExecutionNano": 70706709,
+ "shortestApexExecutionNano": 13524102,
+ "longestApexExecutionNano": 119310511
+ },
+ {
+ "batchNumber": 1044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155029191,
+ "shortestRoundTripNano": 79161563,
+ "longestRoundTripNano": 187154057,
+ "averageApexExecutionNano": 64657710,
+ "shortestApexExecutionNano": 7083769,
+ "longestApexExecutionNano": 132593406
+ },
+ {
+ "batchNumber": 1045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148509063,
+ "shortestRoundTripNano": 76455852,
+ "longestRoundTripNano": 179713516,
+ "averageApexExecutionNano": 59459912,
+ "shortestApexExecutionNano": 12282445,
+ "longestApexExecutionNano": 116139105
+ },
+ {
+ "batchNumber": 1046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174462749,
+ "shortestRoundTripNano": 84856292,
+ "longestRoundTripNano": 201035337,
+ "averageApexExecutionNano": 74527120,
+ "shortestApexExecutionNano": 8892496,
+ "longestApexExecutionNano": 148619568
+ },
+ {
+ "batchNumber": 1047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126575184,
+ "shortestRoundTripNano": 59052573,
+ "longestRoundTripNano": 154562950,
+ "averageApexExecutionNano": 55236297,
+ "shortestApexExecutionNano": 8541736,
+ "longestApexExecutionNano": 107212795
+ },
+ {
+ "batchNumber": 1048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131686663,
+ "shortestRoundTripNano": 48642783,
+ "longestRoundTripNano": 159231662,
+ "averageApexExecutionNano": 49178061,
+ "shortestApexExecutionNano": 5297717,
+ "longestApexExecutionNano": 112536026
+ },
+ {
+ "batchNumber": 1049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135338669,
+ "shortestRoundTripNano": 68623861,
+ "longestRoundTripNano": 167012878,
+ "averageApexExecutionNano": 55742756,
+ "shortestApexExecutionNano": 9744103,
+ "longestApexExecutionNano": 118692233
+ },
+ {
+ "batchNumber": 1050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164912103,
+ "shortestRoundTripNano": 57038443,
+ "longestRoundTripNano": 199146740,
+ "averageApexExecutionNano": 67062356,
+ "shortestApexExecutionNano": 5828284,
+ "longestApexExecutionNano": 140071537
+ },
+ {
+ "batchNumber": 1051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149395088,
+ "shortestRoundTripNano": 69803473,
+ "longestRoundTripNano": 177927125,
+ "averageApexExecutionNano": 57826758,
+ "shortestApexExecutionNano": 7322258,
+ "longestApexExecutionNano": 135310415
+ },
+ {
+ "batchNumber": 1052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165731366,
+ "shortestRoundTripNano": 72610916,
+ "longestRoundTripNano": 199779853,
+ "averageApexExecutionNano": 72942781,
+ "shortestApexExecutionNano": 16479384,
+ "longestApexExecutionNano": 131548631
+ },
+ {
+ "batchNumber": 1053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178025664,
+ "shortestRoundTripNano": 68635984,
+ "longestRoundTripNano": 209818421,
+ "averageApexExecutionNano": 68183750,
+ "shortestApexExecutionNano": 7961251,
+ "longestApexExecutionNano": 147543941
+ },
+ {
+ "batchNumber": 1054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164143317,
+ "shortestRoundTripNano": 66690307,
+ "longestRoundTripNano": 199251318,
+ "averageApexExecutionNano": 73296731,
+ "shortestApexExecutionNano": 11417653,
+ "longestApexExecutionNano": 132516401
+ },
+ {
+ "batchNumber": 1055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157200692,
+ "shortestRoundTripNano": 83468457,
+ "longestRoundTripNano": 182795953,
+ "averageApexExecutionNano": 57356729,
+ "shortestApexExecutionNano": 10876511,
+ "longestApexExecutionNano": 124819799
+ },
+ {
+ "batchNumber": 1056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145841362,
+ "shortestRoundTripNano": 74612149,
+ "longestRoundTripNano": 178907226,
+ "averageApexExecutionNano": 78736021,
+ "shortestApexExecutionNano": 6268003,
+ "longestApexExecutionNano": 137680318
+ },
+ {
+ "batchNumber": 1057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176339353,
+ "shortestRoundTripNano": 61778303,
+ "longestRoundTripNano": 203087546,
+ "averageApexExecutionNano": 62530468,
+ "shortestApexExecutionNano": 15315356,
+ "longestApexExecutionNano": 129377904
+ },
+ {
+ "batchNumber": 1058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157298084,
+ "shortestRoundTripNano": 97117617,
+ "longestRoundTripNano": 174983146,
+ "averageApexExecutionNano": 67672691,
+ "shortestApexExecutionNano": 8406072,
+ "longestApexExecutionNano": 128066073
+ },
+ {
+ "batchNumber": 1059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150173438,
+ "shortestRoundTripNano": 76189246,
+ "longestRoundTripNano": 179575366,
+ "averageApexExecutionNano": 57460008,
+ "shortestApexExecutionNano": 10270519,
+ "longestApexExecutionNano": 115334774
+ },
+ {
+ "batchNumber": 1060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137707402,
+ "shortestRoundTripNano": 48972449,
+ "longestRoundTripNano": 175755603,
+ "averageApexExecutionNano": 54182856,
+ "shortestApexExecutionNano": 4956802,
+ "longestApexExecutionNano": 122381275
+ },
+ {
+ "batchNumber": 1061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152949556,
+ "shortestRoundTripNano": 79840198,
+ "longestRoundTripNano": 192845689,
+ "averageApexExecutionNano": 69231700,
+ "shortestApexExecutionNano": 8709175,
+ "longestApexExecutionNano": 141118363
+ },
+ {
+ "batchNumber": 1062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157872655,
+ "shortestRoundTripNano": 68297722,
+ "longestRoundTripNano": 185826953,
+ "averageApexExecutionNano": 68402038,
+ "shortestApexExecutionNano": 16696708,
+ "longestApexExecutionNano": 117988537
+ },
+ {
+ "batchNumber": 1063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164074367,
+ "shortestRoundTripNano": 70727192,
+ "longestRoundTripNano": 194945282,
+ "averageApexExecutionNano": 76342998,
+ "shortestApexExecutionNano": 6668935,
+ "longestApexExecutionNano": 159092247
+ },
+ {
+ "batchNumber": 1064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133632644,
+ "shortestRoundTripNano": 50695499,
+ "longestRoundTripNano": 170093540,
+ "averageApexExecutionNano": 57829092,
+ "shortestApexExecutionNano": 6286456,
+ "longestApexExecutionNano": 112344045
+ },
+ {
+ "batchNumber": 1065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156652993,
+ "shortestRoundTripNano": 40846499,
+ "longestRoundTripNano": 188910633,
+ "averageApexExecutionNano": 65739176,
+ "shortestApexExecutionNano": 7094607,
+ "longestApexExecutionNano": 130007012
+ },
+ {
+ "batchNumber": 1066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131528779,
+ "shortestRoundTripNano": 55191069,
+ "longestRoundTripNano": 165840143,
+ "averageApexExecutionNano": 60665686,
+ "shortestApexExecutionNano": 10428301,
+ "longestApexExecutionNano": 123823097
+ },
+ {
+ "batchNumber": 1067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143887912,
+ "shortestRoundTripNano": 44678091,
+ "longestRoundTripNano": 170752077,
+ "averageApexExecutionNano": 56424775,
+ "shortestApexExecutionNano": 5986482,
+ "longestApexExecutionNano": 122502416
+ },
+ {
+ "batchNumber": 1068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137692825,
+ "shortestRoundTripNano": 65379072,
+ "longestRoundTripNano": 167574790,
+ "averageApexExecutionNano": 66242356,
+ "shortestApexExecutionNano": 6059827,
+ "longestApexExecutionNano": 122636637
+ },
+ {
+ "batchNumber": 1069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147405336,
+ "shortestRoundTripNano": 66505803,
+ "longestRoundTripNano": 183587935,
+ "averageApexExecutionNano": 40677222,
+ "shortestApexExecutionNano": 5830979,
+ "longestApexExecutionNano": 92993474
+ },
+ {
+ "batchNumber": 1070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150791136,
+ "shortestRoundTripNano": 59191637,
+ "longestRoundTripNano": 202131392,
+ "averageApexExecutionNano": 60830479,
+ "shortestApexExecutionNano": 12971843,
+ "longestApexExecutionNano": 122824720
+ },
+ {
+ "batchNumber": 1071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151995826,
+ "shortestRoundTripNano": 75794477,
+ "longestRoundTripNano": 182648293,
+ "averageApexExecutionNano": 50555051,
+ "shortestApexExecutionNano": 6083601,
+ "longestApexExecutionNano": 113658952
+ },
+ {
+ "batchNumber": 1072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140911112,
+ "shortestRoundTripNano": 70823714,
+ "longestRoundTripNano": 173277211,
+ "averageApexExecutionNano": 56394584,
+ "shortestApexExecutionNano": 10632469,
+ "longestApexExecutionNano": 106755583
+ },
+ {
+ "batchNumber": 1073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134316280,
+ "shortestRoundTripNano": 63677320,
+ "longestRoundTripNano": 159225511,
+ "averageApexExecutionNano": 63541579,
+ "shortestApexExecutionNano": 7524494,
+ "longestApexExecutionNano": 115798276
+ },
+ {
+ "batchNumber": 1074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135142685,
+ "shortestRoundTripNano": 57186368,
+ "longestRoundTripNano": 180415405,
+ "averageApexExecutionNano": 66385111,
+ "shortestApexExecutionNano": 8040716,
+ "longestApexExecutionNano": 132059572
+ },
+ {
+ "batchNumber": 1075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153005954,
+ "shortestRoundTripNano": 82002465,
+ "longestRoundTripNano": 180397963,
+ "averageApexExecutionNano": 62222392,
+ "shortestApexExecutionNano": 8551941,
+ "longestApexExecutionNano": 134905159
+ },
+ {
+ "batchNumber": 1076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169692693,
+ "shortestRoundTripNano": 85001808,
+ "longestRoundTripNano": 209022909,
+ "averageApexExecutionNano": 65158264,
+ "shortestApexExecutionNano": 9060123,
+ "longestApexExecutionNano": 132022807
+ },
+ {
+ "batchNumber": 1077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151320304,
+ "shortestRoundTripNano": 33668359,
+ "longestRoundTripNano": 189889604,
+ "averageApexExecutionNano": 58223393,
+ "shortestApexExecutionNano": 6239823,
+ "longestApexExecutionNano": 131319501
+ },
+ {
+ "batchNumber": 1078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156553209,
+ "shortestRoundTripNano": 68533241,
+ "longestRoundTripNano": 188448606,
+ "averageApexExecutionNano": 66337285,
+ "shortestApexExecutionNano": 9698689,
+ "longestApexExecutionNano": 138993162
+ },
+ {
+ "batchNumber": 1079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169949324,
+ "shortestRoundTripNano": 76481606,
+ "longestRoundTripNano": 201124777,
+ "averageApexExecutionNano": 61194050,
+ "shortestApexExecutionNano": 7398511,
+ "longestApexExecutionNano": 145302578
+ },
+ {
+ "batchNumber": 1080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139114900,
+ "shortestRoundTripNano": 62973203,
+ "longestRoundTripNano": 165674366,
+ "averageApexExecutionNano": 55567802,
+ "shortestApexExecutionNano": 5955069,
+ "longestApexExecutionNano": 122006785
+ },
+ {
+ "batchNumber": 1081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161702524,
+ "shortestRoundTripNano": 82782773,
+ "longestRoundTripNano": 188359984,
+ "averageApexExecutionNano": 79012619,
+ "shortestApexExecutionNano": 6814326,
+ "longestApexExecutionNano": 145800946
+ },
+ {
+ "batchNumber": 1082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162272219,
+ "shortestRoundTripNano": 92177340,
+ "longestRoundTripNano": 191712728,
+ "averageApexExecutionNano": 72246896,
+ "shortestApexExecutionNano": 14377797,
+ "longestApexExecutionNano": 136358353
+ },
+ {
+ "batchNumber": 1083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155645215,
+ "shortestRoundTripNano": 76214005,
+ "longestRoundTripNano": 183934634,
+ "averageApexExecutionNano": 70667711,
+ "shortestApexExecutionNano": 5330573,
+ "longestApexExecutionNano": 133856397
+ },
+ {
+ "batchNumber": 1084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140677095,
+ "shortestRoundTripNano": 67989122,
+ "longestRoundTripNano": 174768417,
+ "averageApexExecutionNano": 62539274,
+ "shortestApexExecutionNano": 9211422,
+ "longestApexExecutionNano": 147126782
+ },
+ {
+ "batchNumber": 1085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158632016,
+ "shortestRoundTripNano": 61629605,
+ "longestRoundTripNano": 201279886,
+ "averageApexExecutionNano": 73565548,
+ "shortestApexExecutionNano": 16040739,
+ "longestApexExecutionNano": 130377789
+ },
+ {
+ "batchNumber": 1086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147119288,
+ "shortestRoundTripNano": 90820774,
+ "longestRoundTripNano": 171615043,
+ "averageApexExecutionNano": 55185768,
+ "shortestApexExecutionNano": 7972523,
+ "longestApexExecutionNano": 129145303
+ },
+ {
+ "batchNumber": 1087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136899170,
+ "shortestRoundTripNano": 47920959,
+ "longestRoundTripNano": 166036252,
+ "averageApexExecutionNano": 49331467,
+ "shortestApexExecutionNano": 6847929,
+ "longestApexExecutionNano": 123525367
+ },
+ {
+ "batchNumber": 1088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132225990,
+ "shortestRoundTripNano": 64867396,
+ "longestRoundTripNano": 158501600,
+ "averageApexExecutionNano": 54954949,
+ "shortestApexExecutionNano": 11573727,
+ "longestApexExecutionNano": 113191209
+ },
+ {
+ "batchNumber": 1089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158214533,
+ "shortestRoundTripNano": 53652022,
+ "longestRoundTripNano": 186056863,
+ "averageApexExecutionNano": 69538010,
+ "shortestApexExecutionNano": 6432092,
+ "longestApexExecutionNano": 140612224
+ },
+ {
+ "batchNumber": 1090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126128311,
+ "shortestRoundTripNano": 65812388,
+ "longestRoundTripNano": 160074923,
+ "averageApexExecutionNano": 63200533,
+ "shortestApexExecutionNano": 11525192,
+ "longestApexExecutionNano": 120378446
+ },
+ {
+ "batchNumber": 1091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143156868,
+ "shortestRoundTripNano": 83132209,
+ "longestRoundTripNano": 169818638,
+ "averageApexExecutionNano": 56770387,
+ "shortestApexExecutionNano": 5555611,
+ "longestApexExecutionNano": 127463047
+ },
+ {
+ "batchNumber": 1092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151130187,
+ "shortestRoundTripNano": 61588367,
+ "longestRoundTripNano": 192342939,
+ "averageApexExecutionNano": 64900428,
+ "shortestApexExecutionNano": 16640756,
+ "longestApexExecutionNano": 141448955
+ },
+ {
+ "batchNumber": 1093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154402665,
+ "shortestRoundTripNano": 43822656,
+ "longestRoundTripNano": 187024000,
+ "averageApexExecutionNano": 74726832,
+ "shortestApexExecutionNano": 10124192,
+ "longestApexExecutionNano": 144103425
+ },
+ {
+ "batchNumber": 1094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162278313,
+ "shortestRoundTripNano": 76962246,
+ "longestRoundTripNano": 190810791,
+ "averageApexExecutionNano": 56754684,
+ "shortestApexExecutionNano": 8908720,
+ "longestApexExecutionNano": 136887968
+ },
+ {
+ "batchNumber": 1095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144877639,
+ "shortestRoundTripNano": 66233794,
+ "longestRoundTripNano": 176224972,
+ "averageApexExecutionNano": 48402152,
+ "shortestApexExecutionNano": 6208737,
+ "longestApexExecutionNano": 102072328
+ },
+ {
+ "batchNumber": 1096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152808292,
+ "shortestRoundTripNano": 83314960,
+ "longestRoundTripNano": 178731225,
+ "averageApexExecutionNano": 65039399,
+ "shortestApexExecutionNano": 7628975,
+ "longestApexExecutionNano": 118976270
+ },
+ {
+ "batchNumber": 1097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135499202,
+ "shortestRoundTripNano": 62550521,
+ "longestRoundTripNano": 159241765,
+ "averageApexExecutionNano": 65866309,
+ "shortestApexExecutionNano": 7116020,
+ "longestApexExecutionNano": 113536369
+ },
+ {
+ "batchNumber": 1098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145525618,
+ "shortestRoundTripNano": 60387725,
+ "longestRoundTripNano": 177925021,
+ "averageApexExecutionNano": 61504342,
+ "shortestApexExecutionNano": 6294649,
+ "longestApexExecutionNano": 139557736
+ },
+ {
+ "batchNumber": 1099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163422793,
+ "shortestRoundTripNano": 78204855,
+ "longestRoundTripNano": 198061400,
+ "averageApexExecutionNano": 50604468,
+ "shortestApexExecutionNano": 6651366,
+ "longestApexExecutionNano": 138991678
+ },
+ {
+ "batchNumber": 1100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158095940,
+ "shortestRoundTripNano": 51404849,
+ "longestRoundTripNano": 215297653,
+ "averageApexExecutionNano": 76263058,
+ "shortestApexExecutionNano": 11273267,
+ "longestApexExecutionNano": 128191803
+ },
+ {
+ "batchNumber": 1101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35076",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182042278,
+ "shortestRoundTripNano": 57818376,
+ "longestRoundTripNano": 219055256,
+ "averageApexExecutionNano": 75272831,
+ "shortestApexExecutionNano": 10688242,
+ "longestApexExecutionNano": 138254127
+ },
+ {
+ "batchNumber": 1102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35076",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149371636,
+ "shortestRoundTripNano": 66284133,
+ "longestRoundTripNano": 177053414,
+ "averageApexExecutionNano": 62205447,
+ "shortestApexExecutionNano": 13326104,
+ "longestApexExecutionNano": 120748155
+ },
+ {
+ "batchNumber": 1103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35076",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149167398,
+ "shortestRoundTripNano": 79156280,
+ "longestRoundTripNano": 175111072,
+ "averageApexExecutionNano": 66614045,
+ "shortestApexExecutionNano": 11343106,
+ "longestApexExecutionNano": 130363991
+ },
+ {
+ "batchNumber": 1104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35076",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 292069667,
+ "shortestRoundTripNano": 62900024,
+ "longestRoundTripNano": 327684946,
+ "averageApexExecutionNano": 164286038,
+ "shortestApexExecutionNano": 7097770,
+ "longestApexExecutionNano": 282793541
+ },
+ {
+ "batchNumber": 1105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155629641,
+ "shortestRoundTripNano": 83727037,
+ "longestRoundTripNano": 181066746,
+ "averageApexExecutionNano": 60725916,
+ "shortestApexExecutionNano": 8099008,
+ "longestApexExecutionNano": 135246547
+ },
+ {
+ "batchNumber": 1106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159894376,
+ "shortestRoundTripNano": 62406039,
+ "longestRoundTripNano": 197423888,
+ "averageApexExecutionNano": 70430731,
+ "shortestApexExecutionNano": 9635267,
+ "longestApexExecutionNano": 156334665
+ },
+ {
+ "batchNumber": 1107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160440734,
+ "shortestRoundTripNano": 76921541,
+ "longestRoundTripNano": 192457358,
+ "averageApexExecutionNano": 80862519,
+ "shortestApexExecutionNano": 6742804,
+ "longestApexExecutionNano": 146083812
+ },
+ {
+ "batchNumber": 1108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147602767,
+ "shortestRoundTripNano": 52753968,
+ "longestRoundTripNano": 176640055,
+ "averageApexExecutionNano": 54045730,
+ "shortestApexExecutionNano": 9533787,
+ "longestApexExecutionNano": 139014986
+ },
+ {
+ "batchNumber": 1109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145214954,
+ "shortestRoundTripNano": 74094299,
+ "longestRoundTripNano": 172927663,
+ "averageApexExecutionNano": 44124030,
+ "shortestApexExecutionNano": 5096540,
+ "longestApexExecutionNano": 121078690
+ },
+ {
+ "batchNumber": 1110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141242910,
+ "shortestRoundTripNano": 68742223,
+ "longestRoundTripNano": 170195083,
+ "averageApexExecutionNano": 58318362,
+ "shortestApexExecutionNano": 9062501,
+ "longestApexExecutionNano": 115856311
+ },
+ {
+ "batchNumber": 1111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134240389,
+ "shortestRoundTripNano": 72330223,
+ "longestRoundTripNano": 163642497,
+ "averageApexExecutionNano": 65320270,
+ "shortestApexExecutionNano": 7248688,
+ "longestApexExecutionNano": 121989196
+ },
+ {
+ "batchNumber": 1112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162207916,
+ "shortestRoundTripNano": 77414885,
+ "longestRoundTripNano": 200350474,
+ "averageApexExecutionNano": 80313677,
+ "shortestApexExecutionNano": 5419251,
+ "longestApexExecutionNano": 143865540
+ },
+ {
+ "batchNumber": 1113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138541808,
+ "shortestRoundTripNano": 77601598,
+ "longestRoundTripNano": 173307663,
+ "averageApexExecutionNano": 60433672,
+ "shortestApexExecutionNano": 6280049,
+ "longestApexExecutionNano": 119751931
+ },
+ {
+ "batchNumber": 1114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122059942,
+ "shortestRoundTripNano": 30546289,
+ "longestRoundTripNano": 158583938,
+ "averageApexExecutionNano": 46031429,
+ "shortestApexExecutionNano": 5659794,
+ "longestApexExecutionNano": 95894509
+ },
+ {
+ "batchNumber": 1115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119121150,
+ "shortestRoundTripNano": 47094277,
+ "longestRoundTripNano": 152501134,
+ "averageApexExecutionNano": 52280719,
+ "shortestApexExecutionNano": 8143578,
+ "longestApexExecutionNano": 106683123
+ },
+ {
+ "batchNumber": 1116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138241077,
+ "shortestRoundTripNano": 52265455,
+ "longestRoundTripNano": 164848307,
+ "averageApexExecutionNano": 57305852,
+ "shortestApexExecutionNano": 8662291,
+ "longestApexExecutionNano": 109371961
+ },
+ {
+ "batchNumber": 1117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148063432,
+ "shortestRoundTripNano": 75721444,
+ "longestRoundTripNano": 173492346,
+ "averageApexExecutionNano": 55792498,
+ "shortestApexExecutionNano": 6099671,
+ "longestApexExecutionNano": 122777582
+ },
+ {
+ "batchNumber": 1118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134363324,
+ "shortestRoundTripNano": 52980921,
+ "longestRoundTripNano": 170633605,
+ "averageApexExecutionNano": 45529451,
+ "shortestApexExecutionNano": 4785153,
+ "longestApexExecutionNano": 102191955
+ },
+ {
+ "batchNumber": 1119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129730325,
+ "shortestRoundTripNano": 44612387,
+ "longestRoundTripNano": 160186647,
+ "averageApexExecutionNano": 53178855,
+ "shortestApexExecutionNano": 7863607,
+ "longestApexExecutionNano": 107676483
+ },
+ {
+ "batchNumber": 1120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126826407,
+ "shortestRoundTripNano": 56212232,
+ "longestRoundTripNano": 150194403,
+ "averageApexExecutionNano": 55755682,
+ "shortestApexExecutionNano": 10485516,
+ "longestApexExecutionNano": 98940420
+ },
+ {
+ "batchNumber": 1121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146514678,
+ "shortestRoundTripNano": 73250808,
+ "longestRoundTripNano": 175951460,
+ "averageApexExecutionNano": 54208910,
+ "shortestApexExecutionNano": 6854773,
+ "longestApexExecutionNano": 114045034
+ },
+ {
+ "batchNumber": 1122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133436473,
+ "shortestRoundTripNano": 60814261,
+ "longestRoundTripNano": 161521573,
+ "averageApexExecutionNano": 55927538,
+ "shortestApexExecutionNano": 6973248,
+ "longestApexExecutionNano": 107325244
+ },
+ {
+ "batchNumber": 1123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123026845,
+ "shortestRoundTripNano": 54335374,
+ "longestRoundTripNano": 150207731,
+ "averageApexExecutionNano": 53051251,
+ "shortestApexExecutionNano": 8625747,
+ "longestApexExecutionNano": 110793208
+ },
+ {
+ "batchNumber": 1124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138805678,
+ "shortestRoundTripNano": 60520499,
+ "longestRoundTripNano": 168315442,
+ "averageApexExecutionNano": 57023367,
+ "shortestApexExecutionNano": 9319373,
+ "longestApexExecutionNano": 115674398
+ },
+ {
+ "batchNumber": 1125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156505106,
+ "shortestRoundTripNano": 59479768,
+ "longestRoundTripNano": 187633340,
+ "averageApexExecutionNano": 84337695,
+ "shortestApexExecutionNano": 6551331,
+ "longestApexExecutionNano": 142303218
+ },
+ {
+ "batchNumber": 1126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134367736,
+ "shortestRoundTripNano": 68930211,
+ "longestRoundTripNano": 164914166,
+ "averageApexExecutionNano": 59330249,
+ "shortestApexExecutionNano": 9235429,
+ "longestApexExecutionNano": 125896643
+ },
+ {
+ "batchNumber": 1127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132425856,
+ "shortestRoundTripNano": 61186482,
+ "longestRoundTripNano": 154356507,
+ "averageApexExecutionNano": 57146810,
+ "shortestApexExecutionNano": 9509182,
+ "longestApexExecutionNano": 104691008
+ },
+ {
+ "batchNumber": 1128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158317535,
+ "shortestRoundTripNano": 90259315,
+ "longestRoundTripNano": 180257615,
+ "averageApexExecutionNano": 60718056,
+ "shortestApexExecutionNano": 8780904,
+ "longestApexExecutionNano": 125237954
+ },
+ {
+ "batchNumber": 1129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132739012,
+ "shortestRoundTripNano": 72022237,
+ "longestRoundTripNano": 156627448,
+ "averageApexExecutionNano": 54026983,
+ "shortestApexExecutionNano": 6338169,
+ "longestApexExecutionNano": 103894248
+ },
+ {
+ "batchNumber": 1130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140852913,
+ "shortestRoundTripNano": 62815211,
+ "longestRoundTripNano": 166530103,
+ "averageApexExecutionNano": 50431402,
+ "shortestApexExecutionNano": 8836520,
+ "longestApexExecutionNano": 129854485
+ },
+ {
+ "batchNumber": 1131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135579574,
+ "shortestRoundTripNano": 69666758,
+ "longestRoundTripNano": 162986696,
+ "averageApexExecutionNano": 54943436,
+ "shortestApexExecutionNano": 6930997,
+ "longestApexExecutionNano": 106560268
+ },
+ {
+ "batchNumber": 1132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134100713,
+ "shortestRoundTripNano": 47039971,
+ "longestRoundTripNano": 175824139,
+ "averageApexExecutionNano": 44223279,
+ "shortestApexExecutionNano": 5235187,
+ "longestApexExecutionNano": 113059337
+ },
+ {
+ "batchNumber": 1133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141012849,
+ "shortestRoundTripNano": 85741153,
+ "longestRoundTripNano": 163440963,
+ "averageApexExecutionNano": 55086147,
+ "shortestApexExecutionNano": 7376136,
+ "longestApexExecutionNano": 115864556
+ },
+ {
+ "batchNumber": 1134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155007847,
+ "shortestRoundTripNano": 62832362,
+ "longestRoundTripNano": 191598417,
+ "averageApexExecutionNano": 66361589,
+ "shortestApexExecutionNano": 9547063,
+ "longestApexExecutionNano": 129542897
+ },
+ {
+ "batchNumber": 1135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135352857,
+ "shortestRoundTripNano": 82154964,
+ "longestRoundTripNano": 163192354,
+ "averageApexExecutionNano": 70217752,
+ "shortestApexExecutionNano": 4501441,
+ "longestApexExecutionNano": 133678036
+ },
+ {
+ "batchNumber": 1136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149221172,
+ "shortestRoundTripNano": 73340125,
+ "longestRoundTripNano": 177290364,
+ "averageApexExecutionNano": 56629532,
+ "shortestApexExecutionNano": 10371685,
+ "longestApexExecutionNano": 115604936
+ },
+ {
+ "batchNumber": 1137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130757927,
+ "shortestRoundTripNano": 60623710,
+ "longestRoundTripNano": 162200788,
+ "averageApexExecutionNano": 49608795,
+ "shortestApexExecutionNano": 9458747,
+ "longestApexExecutionNano": 111737450
+ },
+ {
+ "batchNumber": 1138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153653819,
+ "shortestRoundTripNano": 60192327,
+ "longestRoundTripNano": 174930288,
+ "averageApexExecutionNano": 63793858,
+ "shortestApexExecutionNano": 6006373,
+ "longestApexExecutionNano": 130476220
+ },
+ {
+ "batchNumber": 1139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132529625,
+ "shortestRoundTripNano": 63392101,
+ "longestRoundTripNano": 165068754,
+ "averageApexExecutionNano": 63135108,
+ "shortestApexExecutionNano": 11698450,
+ "longestApexExecutionNano": 130898074
+ },
+ {
+ "batchNumber": 1140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148628332,
+ "shortestRoundTripNano": 63363691,
+ "longestRoundTripNano": 176512363,
+ "averageApexExecutionNano": 50843311,
+ "shortestApexExecutionNano": 7842481,
+ "longestApexExecutionNano": 131453896
+ },
+ {
+ "batchNumber": 1141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132300830,
+ "shortestRoundTripNano": 52720472,
+ "longestRoundTripNano": 166175653,
+ "averageApexExecutionNano": 67646885,
+ "shortestApexExecutionNano": 8342407,
+ "longestApexExecutionNano": 118774717
+ },
+ {
+ "batchNumber": 1142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158895734,
+ "shortestRoundTripNano": 66095049,
+ "longestRoundTripNano": 194942563,
+ "averageApexExecutionNano": 54941803,
+ "shortestApexExecutionNano": 9114898,
+ "longestApexExecutionNano": 120505858
+ },
+ {
+ "batchNumber": 1143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122818390,
+ "shortestRoundTripNano": 41421968,
+ "longestRoundTripNano": 161394000,
+ "averageApexExecutionNano": 53007521,
+ "shortestApexExecutionNano": 13642901,
+ "longestApexExecutionNano": 97362319
+ },
+ {
+ "batchNumber": 1144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132293015,
+ "shortestRoundTripNano": 76298024,
+ "longestRoundTripNano": 156643706,
+ "averageApexExecutionNano": 46124558,
+ "shortestApexExecutionNano": 8120586,
+ "longestApexExecutionNano": 100185220
+ },
+ {
+ "batchNumber": 1145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139802359,
+ "shortestRoundTripNano": 55532321,
+ "longestRoundTripNano": 167518169,
+ "averageApexExecutionNano": 70959599,
+ "shortestApexExecutionNano": 9960329,
+ "longestApexExecutionNano": 119906091
+ },
+ {
+ "batchNumber": 1146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35094",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124352151,
+ "shortestRoundTripNano": 56446919,
+ "longestRoundTripNano": 165940309,
+ "averageApexExecutionNano": 50553717,
+ "shortestApexExecutionNano": 6081650,
+ "longestApexExecutionNano": 115982671
+ },
+ {
+ "batchNumber": 1147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35094",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130710424,
+ "shortestRoundTripNano": 57695327,
+ "longestRoundTripNano": 157417815,
+ "averageApexExecutionNano": 56423986,
+ "shortestApexExecutionNano": 12506166,
+ "longestApexExecutionNano": 106860504
+ },
+ {
+ "batchNumber": 1148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138392537,
+ "shortestRoundTripNano": 62812355,
+ "longestRoundTripNano": 163529261,
+ "averageApexExecutionNano": 57905069,
+ "shortestApexExecutionNano": 6026585,
+ "longestApexExecutionNano": 118429246
+ },
+ {
+ "batchNumber": 1149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35094",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131599059,
+ "shortestRoundTripNano": 54872952,
+ "longestRoundTripNano": 169676999,
+ "averageApexExecutionNano": 61795359,
+ "shortestApexExecutionNano": 8531663,
+ "longestApexExecutionNano": 123515631
+ },
+ {
+ "batchNumber": 1150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162915162,
+ "shortestRoundTripNano": 61647837,
+ "longestRoundTripNano": 198510818,
+ "averageApexExecutionNano": 63650705,
+ "shortestApexExecutionNano": 9157988,
+ "longestApexExecutionNano": 141004084
+ },
+ {
+ "batchNumber": 1151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35098",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167522790,
+ "shortestRoundTripNano": 64234502,
+ "longestRoundTripNano": 198567098,
+ "averageApexExecutionNano": 80694184,
+ "shortestApexExecutionNano": 21715715,
+ "longestApexExecutionNano": 159226055
+ },
+ {
+ "batchNumber": 1152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35098",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135863554,
+ "shortestRoundTripNano": 57409642,
+ "longestRoundTripNano": 167103051,
+ "averageApexExecutionNano": 53497456,
+ "shortestApexExecutionNano": 7592403,
+ "longestApexExecutionNano": 126940317
+ },
+ {
+ "batchNumber": 1153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168961918,
+ "shortestRoundTripNano": 109583826,
+ "longestRoundTripNano": 193293281,
+ "averageApexExecutionNano": 71328868,
+ "shortestApexExecutionNano": 8978162,
+ "longestApexExecutionNano": 112017880
+ },
+ {
+ "batchNumber": 1154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156682421,
+ "shortestRoundTripNano": 83548598,
+ "longestRoundTripNano": 184540393,
+ "averageApexExecutionNano": 61974776,
+ "shortestApexExecutionNano": 7754434,
+ "longestApexExecutionNano": 117691501
+ },
+ {
+ "batchNumber": 1155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129396945,
+ "shortestRoundTripNano": 53075018,
+ "longestRoundTripNano": 163833564,
+ "averageApexExecutionNano": 55971653,
+ "shortestApexExecutionNano": 7387385,
+ "longestApexExecutionNano": 102712486
+ },
+ {
+ "batchNumber": 1156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35098",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157554739,
+ "shortestRoundTripNano": 108967051,
+ "longestRoundTripNano": 176621505,
+ "averageApexExecutionNano": 68008278,
+ "shortestApexExecutionNano": 7409988,
+ "longestApexExecutionNano": 125048710
+ },
+ {
+ "batchNumber": 1157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35098",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141147978,
+ "shortestRoundTripNano": 61512626,
+ "longestRoundTripNano": 170791850,
+ "averageApexExecutionNano": 50181233,
+ "shortestApexExecutionNano": 6674185,
+ "longestApexExecutionNano": 108241062
+ },
+ {
+ "batchNumber": 1158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137220348,
+ "shortestRoundTripNano": 59495657,
+ "longestRoundTripNano": 161402594,
+ "averageApexExecutionNano": 70517031,
+ "shortestApexExecutionNano": 9004480,
+ "longestApexExecutionNano": 117425312
+ },
+ {
+ "batchNumber": 1159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146161180,
+ "shortestRoundTripNano": 81027750,
+ "longestRoundTripNano": 168416357,
+ "averageApexExecutionNano": 53290015,
+ "shortestApexExecutionNano": 11902284,
+ "longestApexExecutionNano": 123709177
+ },
+ {
+ "batchNumber": 1160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133791178,
+ "shortestRoundTripNano": 69688884,
+ "longestRoundTripNano": 160827182,
+ "averageApexExecutionNano": 54022010,
+ "shortestApexExecutionNano": 11279015,
+ "longestApexExecutionNano": 109170558
+ },
+ {
+ "batchNumber": 1161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153791248,
+ "shortestRoundTripNano": 76771801,
+ "longestRoundTripNano": 192740273,
+ "averageApexExecutionNano": 72726816,
+ "shortestApexExecutionNano": 6980061,
+ "longestApexExecutionNano": 131259967
+ },
+ {
+ "batchNumber": 1162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136476150,
+ "shortestRoundTripNano": 71626253,
+ "longestRoundTripNano": 166737218,
+ "averageApexExecutionNano": 69660005,
+ "shortestApexExecutionNano": 9088125,
+ "longestApexExecutionNano": 128650309
+ },
+ {
+ "batchNumber": 1163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145906989,
+ "shortestRoundTripNano": 64832308,
+ "longestRoundTripNano": 177967691,
+ "averageApexExecutionNano": 54845175,
+ "shortestApexExecutionNano": 5991733,
+ "longestApexExecutionNano": 114820194
+ },
+ {
+ "batchNumber": 1164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151726015,
+ "shortestRoundTripNano": 46827533,
+ "longestRoundTripNano": 175968202,
+ "averageApexExecutionNano": 65174641,
+ "shortestApexExecutionNano": 8432108,
+ "longestApexExecutionNano": 128314244
+ },
+ {
+ "batchNumber": 1165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134756141,
+ "shortestRoundTripNano": 55885134,
+ "longestRoundTripNano": 185006235,
+ "averageApexExecutionNano": 45537581,
+ "shortestApexExecutionNano": 8487975,
+ "longestApexExecutionNano": 132583423
+ },
+ {
+ "batchNumber": 1166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136524765,
+ "shortestRoundTripNano": 51956352,
+ "longestRoundTripNano": 165771867,
+ "averageApexExecutionNano": 59756690,
+ "shortestApexExecutionNano": 12946166,
+ "longestApexExecutionNano": 106096832
+ },
+ {
+ "batchNumber": 1167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164924487,
+ "shortestRoundTripNano": 65798226,
+ "longestRoundTripNano": 188625706,
+ "averageApexExecutionNano": 70447541,
+ "shortestApexExecutionNano": 9171051,
+ "longestApexExecutionNano": 132919295
+ },
+ {
+ "batchNumber": 1168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147343352,
+ "shortestRoundTripNano": 76935674,
+ "longestRoundTripNano": 167745836,
+ "averageApexExecutionNano": 61093182,
+ "shortestApexExecutionNano": 10273609,
+ "longestApexExecutionNano": 121236020
+ },
+ {
+ "batchNumber": 1169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156659717,
+ "shortestRoundTripNano": 78352938,
+ "longestRoundTripNano": 181292439,
+ "averageApexExecutionNano": 70494939,
+ "shortestApexExecutionNano": 8646281,
+ "longestApexExecutionNano": 134103854
+ },
+ {
+ "batchNumber": 1170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158389604,
+ "shortestRoundTripNano": 74688918,
+ "longestRoundTripNano": 208417924,
+ "averageApexExecutionNano": 67495510,
+ "shortestApexExecutionNano": 16439245,
+ "longestApexExecutionNano": 114939078
+ },
+ {
+ "batchNumber": 1171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139321823,
+ "shortestRoundTripNano": 73906833,
+ "longestRoundTripNano": 163189731,
+ "averageApexExecutionNano": 64366363,
+ "shortestApexExecutionNano": 13141159,
+ "longestApexExecutionNano": 122787135
+ },
+ {
+ "batchNumber": 1172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156506322,
+ "shortestRoundTripNano": 71541110,
+ "longestRoundTripNano": 213897223,
+ "averageApexExecutionNano": 57818655,
+ "shortestApexExecutionNano": 5643739,
+ "longestApexExecutionNano": 116514760
+ },
+ {
+ "batchNumber": 1173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149492615,
+ "shortestRoundTripNano": 62723250,
+ "longestRoundTripNano": 176020716,
+ "averageApexExecutionNano": 59262754,
+ "shortestApexExecutionNano": 7915900,
+ "longestApexExecutionNano": 135421376
+ },
+ {
+ "batchNumber": 1174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161918231,
+ "shortestRoundTripNano": 68356334,
+ "longestRoundTripNano": 202263632,
+ "averageApexExecutionNano": 76068459,
+ "shortestApexExecutionNano": 9990271,
+ "longestApexExecutionNano": 143320100
+ },
+ {
+ "batchNumber": 1175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146438744,
+ "shortestRoundTripNano": 72242523,
+ "longestRoundTripNano": 171089638,
+ "averageApexExecutionNano": 56411006,
+ "shortestApexExecutionNano": 6048864,
+ "longestApexExecutionNano": 109829018
+ },
+ {
+ "batchNumber": 1176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131444661,
+ "shortestRoundTripNano": 27170825,
+ "longestRoundTripNano": 161554832,
+ "averageApexExecutionNano": 58083751,
+ "shortestApexExecutionNano": 14017476,
+ "longestApexExecutionNano": 110941524
+ },
+ {
+ "batchNumber": 1177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134860317,
+ "shortestRoundTripNano": 69502354,
+ "longestRoundTripNano": 160469203,
+ "averageApexExecutionNano": 42439692,
+ "shortestApexExecutionNano": 6955479,
+ "longestApexExecutionNano": 121764772
+ },
+ {
+ "batchNumber": 1178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154729498,
+ "shortestRoundTripNano": 33469993,
+ "longestRoundTripNano": 190310546,
+ "averageApexExecutionNano": 68241343,
+ "shortestApexExecutionNano": 9237981,
+ "longestApexExecutionNano": 129586551
+ },
+ {
+ "batchNumber": 1179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147420372,
+ "shortestRoundTripNano": 53852460,
+ "longestRoundTripNano": 175266805,
+ "averageApexExecutionNano": 61970825,
+ "shortestApexExecutionNano": 7335929,
+ "longestApexExecutionNano": 127859973
+ },
+ {
+ "batchNumber": 1180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136282196,
+ "shortestRoundTripNano": 56897355,
+ "longestRoundTripNano": 161629252,
+ "averageApexExecutionNano": 47641694,
+ "shortestApexExecutionNano": 10055338,
+ "longestApexExecutionNano": 103876561
+ },
+ {
+ "batchNumber": 1181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128321121,
+ "shortestRoundTripNano": 67557485,
+ "longestRoundTripNano": 156143632,
+ "averageApexExecutionNano": 47172371,
+ "shortestApexExecutionNano": 7649701,
+ "longestApexExecutionNano": 119587709
+ },
+ {
+ "batchNumber": 1182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138752905,
+ "shortestRoundTripNano": 56477808,
+ "longestRoundTripNano": 177913518,
+ "averageApexExecutionNano": 59273697,
+ "shortestApexExecutionNano": 8708116,
+ "longestApexExecutionNano": 122003432
+ },
+ {
+ "batchNumber": 1183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148876637,
+ "shortestRoundTripNano": 80283361,
+ "longestRoundTripNano": 179648938,
+ "averageApexExecutionNano": 64427318,
+ "shortestApexExecutionNano": 9649147,
+ "longestApexExecutionNano": 128739698
+ },
+ {
+ "batchNumber": 1184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144091431,
+ "shortestRoundTripNano": 79636867,
+ "longestRoundTripNano": 169464040,
+ "averageApexExecutionNano": 60873636,
+ "shortestApexExecutionNano": 8272013,
+ "longestApexExecutionNano": 109292244
+ },
+ {
+ "batchNumber": 1185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35104",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144691620,
+ "shortestRoundTripNano": 42513145,
+ "longestRoundTripNano": 165290471,
+ "averageApexExecutionNano": 64864476,
+ "shortestApexExecutionNano": 8187559,
+ "longestApexExecutionNano": 128597723
+ },
+ {
+ "batchNumber": 1186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143336280,
+ "shortestRoundTripNano": 61907983,
+ "longestRoundTripNano": 174942163,
+ "averageApexExecutionNano": 55716154,
+ "shortestApexExecutionNano": 9424511,
+ "longestApexExecutionNano": 130863380
+ },
+ {
+ "batchNumber": 1187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151774725,
+ "shortestRoundTripNano": 79285723,
+ "longestRoundTripNano": 175001887,
+ "averageApexExecutionNano": 38448214,
+ "shortestApexExecutionNano": 7401735,
+ "longestApexExecutionNano": 97689314
+ },
+ {
+ "batchNumber": 1188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144223184,
+ "shortestRoundTripNano": 60004373,
+ "longestRoundTripNano": 173935582,
+ "averageApexExecutionNano": 67981106,
+ "shortestApexExecutionNano": 5469738,
+ "longestApexExecutionNano": 108408863
+ },
+ {
+ "batchNumber": 1189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119661495,
+ "shortestRoundTripNano": 68314192,
+ "longestRoundTripNano": 149977422,
+ "averageApexExecutionNano": 49819415,
+ "shortestApexExecutionNano": 8087039,
+ "longestApexExecutionNano": 101825119
+ },
+ {
+ "batchNumber": 1190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153653148,
+ "shortestRoundTripNano": 93811441,
+ "longestRoundTripNano": 189025498,
+ "averageApexExecutionNano": 63438713,
+ "shortestApexExecutionNano": 7759946,
+ "longestApexExecutionNano": 120089017
+ },
+ {
+ "batchNumber": 1191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135381225,
+ "shortestRoundTripNano": 44653245,
+ "longestRoundTripNano": 165758141,
+ "averageApexExecutionNano": 61027235,
+ "shortestApexExecutionNano": 8125661,
+ "longestApexExecutionNano": 123215542
+ },
+ {
+ "batchNumber": 1192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126868032,
+ "shortestRoundTripNano": 68457381,
+ "longestRoundTripNano": 154880054,
+ "averageApexExecutionNano": 49652904,
+ "shortestApexExecutionNano": 6432205,
+ "longestApexExecutionNano": 107478762
+ },
+ {
+ "batchNumber": 1193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147392426,
+ "shortestRoundTripNano": 61939526,
+ "longestRoundTripNano": 175848236,
+ "averageApexExecutionNano": 58147624,
+ "shortestApexExecutionNano": 7447840,
+ "longestApexExecutionNano": 121165872
+ },
+ {
+ "batchNumber": 1194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133074496,
+ "shortestRoundTripNano": 64441233,
+ "longestRoundTripNano": 159302580,
+ "averageApexExecutionNano": 47645572,
+ "shortestApexExecutionNano": 4557032,
+ "longestApexExecutionNano": 108350464
+ },
+ {
+ "batchNumber": 1195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173028097,
+ "shortestRoundTripNano": 95802763,
+ "longestRoundTripNano": 204196832,
+ "averageApexExecutionNano": 92698149,
+ "shortestApexExecutionNano": 13631740,
+ "longestApexExecutionNano": 144725767
+ },
+ {
+ "batchNumber": 1196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132856330,
+ "shortestRoundTripNano": 52068732,
+ "longestRoundTripNano": 158918422,
+ "averageApexExecutionNano": 55702492,
+ "shortestApexExecutionNano": 8568353,
+ "longestApexExecutionNano": 129160734
+ },
+ {
+ "batchNumber": 1197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145055205,
+ "shortestRoundTripNano": 52639372,
+ "longestRoundTripNano": 170824106,
+ "averageApexExecutionNano": 56807230,
+ "shortestApexExecutionNano": 10412581,
+ "longestApexExecutionNano": 113394461
+ },
+ {
+ "batchNumber": 1198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170724500,
+ "shortestRoundTripNano": 85646432,
+ "longestRoundTripNano": 201473390,
+ "averageApexExecutionNano": 71378421,
+ "shortestApexExecutionNano": 7774379,
+ "longestApexExecutionNano": 149900656
+ },
+ {
+ "batchNumber": 1199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143867846,
+ "shortestRoundTripNano": 58245124,
+ "longestRoundTripNano": 180232362,
+ "averageApexExecutionNano": 62102960,
+ "shortestApexExecutionNano": 7069590,
+ "longestApexExecutionNano": 135249462
+ },
+ {
+ "batchNumber": 1200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139652134,
+ "shortestRoundTripNano": 40120787,
+ "longestRoundTripNano": 172487957,
+ "averageApexExecutionNano": 56774331,
+ "shortestApexExecutionNano": 5909844,
+ "longestApexExecutionNano": 124115611
+ },
+ {
+ "batchNumber": 1201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159753710,
+ "shortestRoundTripNano": 65666911,
+ "longestRoundTripNano": 188486353,
+ "averageApexExecutionNano": 59873519,
+ "shortestApexExecutionNano": 8599073,
+ "longestApexExecutionNano": 149236100
+ },
+ {
+ "batchNumber": 1202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139325766,
+ "shortestRoundTripNano": 67862971,
+ "longestRoundTripNano": 165007547,
+ "averageApexExecutionNano": 48538170,
+ "shortestApexExecutionNano": 6925055,
+ "longestApexExecutionNano": 109679429
+ },
+ {
+ "batchNumber": 1203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35112",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168909225,
+ "shortestRoundTripNano": 59528265,
+ "longestRoundTripNano": 202803376,
+ "averageApexExecutionNano": 77305676,
+ "shortestApexExecutionNano": 7092508,
+ "longestApexExecutionNano": 134856744
+ },
+ {
+ "batchNumber": 1204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158706506,
+ "shortestRoundTripNano": 83268864,
+ "longestRoundTripNano": 185101840,
+ "averageApexExecutionNano": 60044012,
+ "shortestApexExecutionNano": 15367034,
+ "longestApexExecutionNano": 120954736
+ },
+ {
+ "batchNumber": 1205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118152303,
+ "shortestRoundTripNano": 50721481,
+ "longestRoundTripNano": 148913938,
+ "averageApexExecutionNano": 58461721,
+ "shortestApexExecutionNano": 5675561,
+ "longestApexExecutionNano": 120474486
+ },
+ {
+ "batchNumber": 1206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160252792,
+ "shortestRoundTripNano": 84310980,
+ "longestRoundTripNano": 188305886,
+ "averageApexExecutionNano": 49740683,
+ "shortestApexExecutionNano": 8781975,
+ "longestApexExecutionNano": 122735834
+ },
+ {
+ "batchNumber": 1207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142905623,
+ "shortestRoundTripNano": 64103388,
+ "longestRoundTripNano": 169729236,
+ "averageApexExecutionNano": 56600800,
+ "shortestApexExecutionNano": 7896021,
+ "longestApexExecutionNano": 118780483
+ },
+ {
+ "batchNumber": 1208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152437108,
+ "shortestRoundTripNano": 63673192,
+ "longestRoundTripNano": 190722852,
+ "averageApexExecutionNano": 76654068,
+ "shortestApexExecutionNano": 7293342,
+ "longestApexExecutionNano": 145610615
+ },
+ {
+ "batchNumber": 1209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141344688,
+ "shortestRoundTripNano": 61559785,
+ "longestRoundTripNano": 170500410,
+ "averageApexExecutionNano": 54850627,
+ "shortestApexExecutionNano": 8130115,
+ "longestApexExecutionNano": 118435479
+ },
+ {
+ "batchNumber": 1210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127948342,
+ "shortestRoundTripNano": 80713994,
+ "longestRoundTripNano": 151337455,
+ "averageApexExecutionNano": 47631483,
+ "shortestApexExecutionNano": 8749994,
+ "longestApexExecutionNano": 101440111
+ },
+ {
+ "batchNumber": 1211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141223894,
+ "shortestRoundTripNano": 86115428,
+ "longestRoundTripNano": 173156687,
+ "averageApexExecutionNano": 54113216,
+ "shortestApexExecutionNano": 9662930,
+ "longestApexExecutionNano": 104005612
+ },
+ {
+ "batchNumber": 1212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137369586,
+ "shortestRoundTripNano": 49248225,
+ "longestRoundTripNano": 166167932,
+ "averageApexExecutionNano": 66903589,
+ "shortestApexExecutionNano": 20099922,
+ "longestApexExecutionNano": 125399116
+ },
+ {
+ "batchNumber": 1213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140679790,
+ "shortestRoundTripNano": 79355467,
+ "longestRoundTripNano": 175809236,
+ "averageApexExecutionNano": 60421533,
+ "shortestApexExecutionNano": 6305772,
+ "longestApexExecutionNano": 108456093
+ },
+ {
+ "batchNumber": 1214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146147458,
+ "shortestRoundTripNano": 83816718,
+ "longestRoundTripNano": 170161655,
+ "averageApexExecutionNano": 67823537,
+ "shortestApexExecutionNano": 28711371,
+ "longestApexExecutionNano": 117356491
+ },
+ {
+ "batchNumber": 1215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120187247,
+ "shortestRoundTripNano": 56361421,
+ "longestRoundTripNano": 155791000,
+ "averageApexExecutionNano": 54761957,
+ "shortestApexExecutionNano": 9846018,
+ "longestApexExecutionNano": 115813141
+ },
+ {
+ "batchNumber": 1216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133024306,
+ "shortestRoundTripNano": 84212700,
+ "longestRoundTripNano": 160245163,
+ "averageApexExecutionNano": 63017076,
+ "shortestApexExecutionNano": 24097246,
+ "longestApexExecutionNano": 99918565
+ },
+ {
+ "batchNumber": 1217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146107626,
+ "shortestRoundTripNano": 54712130,
+ "longestRoundTripNano": 177756025,
+ "averageApexExecutionNano": 62960663,
+ "shortestApexExecutionNano": 5767112,
+ "longestApexExecutionNano": 114698083
+ },
+ {
+ "batchNumber": 1218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130303573,
+ "shortestRoundTripNano": 78667162,
+ "longestRoundTripNano": 161591357,
+ "averageApexExecutionNano": 61642272,
+ "shortestApexExecutionNano": 10400621,
+ "longestApexExecutionNano": 116743638
+ },
+ {
+ "batchNumber": 1219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123529266,
+ "shortestRoundTripNano": 51092736,
+ "longestRoundTripNano": 152375305,
+ "averageApexExecutionNano": 47049259,
+ "shortestApexExecutionNano": 5648255,
+ "longestApexExecutionNano": 86433930
+ },
+ {
+ "batchNumber": 1220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151021654,
+ "shortestRoundTripNano": 61670215,
+ "longestRoundTripNano": 182177945,
+ "averageApexExecutionNano": 75153946,
+ "shortestApexExecutionNano": 17467912,
+ "longestApexExecutionNano": 130919818
+ },
+ {
+ "batchNumber": 1221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139293210,
+ "shortestRoundTripNano": 60913706,
+ "longestRoundTripNano": 168270127,
+ "averageApexExecutionNano": 46492075,
+ "shortestApexExecutionNano": 8197595,
+ "longestApexExecutionNano": 120303304
+ },
+ {
+ "batchNumber": 1222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148255696,
+ "shortestRoundTripNano": 69729081,
+ "longestRoundTripNano": 180028606,
+ "averageApexExecutionNano": 71577298,
+ "shortestApexExecutionNano": 6699175,
+ "longestApexExecutionNano": 123851200
+ },
+ {
+ "batchNumber": 1223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146556910,
+ "shortestRoundTripNano": 66607673,
+ "longestRoundTripNano": 174897413,
+ "averageApexExecutionNano": 51025411,
+ "shortestApexExecutionNano": 8359199,
+ "longestApexExecutionNano": 107474611
+ },
+ {
+ "batchNumber": 1224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144768999,
+ "shortestRoundTripNano": 69505275,
+ "longestRoundTripNano": 172147233,
+ "averageApexExecutionNano": 59443893,
+ "shortestApexExecutionNano": 6472775,
+ "longestApexExecutionNano": 123566269
+ },
+ {
+ "batchNumber": 1225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153332951,
+ "shortestRoundTripNano": 53699110,
+ "longestRoundTripNano": 180589192,
+ "averageApexExecutionNano": 58927504,
+ "shortestApexExecutionNano": 8282891,
+ "longestApexExecutionNano": 121556388
+ },
+ {
+ "batchNumber": 1226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164826098,
+ "shortestRoundTripNano": 80075444,
+ "longestRoundTripNano": 192982691,
+ "averageApexExecutionNano": 73782039,
+ "shortestApexExecutionNano": 7388437,
+ "longestApexExecutionNano": 138419847
+ },
+ {
+ "batchNumber": 1227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136552339,
+ "shortestRoundTripNano": 65487428,
+ "longestRoundTripNano": 163006040,
+ "averageApexExecutionNano": 43588691,
+ "shortestApexExecutionNano": 5835025,
+ "longestApexExecutionNano": 109861245
+ },
+ {
+ "batchNumber": 1228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138812060,
+ "shortestRoundTripNano": 79601516,
+ "longestRoundTripNano": 163705928,
+ "averageApexExecutionNano": 70081442,
+ "shortestApexExecutionNano": 21725514,
+ "longestApexExecutionNano": 117805773
+ },
+ {
+ "batchNumber": 1229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141921747,
+ "shortestRoundTripNano": 67373346,
+ "longestRoundTripNano": 167901777,
+ "averageApexExecutionNano": 52112203,
+ "shortestApexExecutionNano": 9670981,
+ "longestApexExecutionNano": 110177472
+ },
+ {
+ "batchNumber": 1230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161081899,
+ "shortestRoundTripNano": 52050546,
+ "longestRoundTripNano": 190086739,
+ "averageApexExecutionNano": 54077493,
+ "shortestApexExecutionNano": 7268521,
+ "longestApexExecutionNano": 124430420
+ },
+ {
+ "batchNumber": 1231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154573355,
+ "shortestRoundTripNano": 52405388,
+ "longestRoundTripNano": 181115938,
+ "averageApexExecutionNano": 58888305,
+ "shortestApexExecutionNano": 7643530,
+ "longestApexExecutionNano": 124416585
+ },
+ {
+ "batchNumber": 1232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156265414,
+ "shortestRoundTripNano": 84613379,
+ "longestRoundTripNano": 198055904,
+ "averageApexExecutionNano": 50533867,
+ "shortestApexExecutionNano": 9941399,
+ "longestApexExecutionNano": 120226379
+ },
+ {
+ "batchNumber": 1233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157382160,
+ "shortestRoundTripNano": 80249260,
+ "longestRoundTripNano": 190777064,
+ "averageApexExecutionNano": 63977226,
+ "shortestApexExecutionNano": 8191677,
+ "longestApexExecutionNano": 122992724
+ },
+ {
+ "batchNumber": 1234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158271823,
+ "shortestRoundTripNano": 59469432,
+ "longestRoundTripNano": 186043182,
+ "averageApexExecutionNano": 65201238,
+ "shortestApexExecutionNano": 6078707,
+ "longestApexExecutionNano": 119376317
+ },
+ {
+ "batchNumber": 1235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162265690,
+ "shortestRoundTripNano": 51724403,
+ "longestRoundTripNano": 185924194,
+ "averageApexExecutionNano": 74987251,
+ "shortestApexExecutionNano": 5440193,
+ "longestApexExecutionNano": 121422593
+ },
+ {
+ "batchNumber": 1236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147862244,
+ "shortestRoundTripNano": 59382609,
+ "longestRoundTripNano": 176589926,
+ "averageApexExecutionNano": 56778861,
+ "shortestApexExecutionNano": 10684617,
+ "longestApexExecutionNano": 117034161
+ },
+ {
+ "batchNumber": 1237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150144487,
+ "shortestRoundTripNano": 51547594,
+ "longestRoundTripNano": 178863062,
+ "averageApexExecutionNano": 64323053,
+ "shortestApexExecutionNano": 9252571,
+ "longestApexExecutionNano": 138453722
+ },
+ {
+ "batchNumber": 1238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125051753,
+ "shortestRoundTripNano": 64269867,
+ "longestRoundTripNano": 151663110,
+ "averageApexExecutionNano": 47342246,
+ "shortestApexExecutionNano": 5677901,
+ "longestApexExecutionNano": 103785082
+ },
+ {
+ "batchNumber": 1239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141853347,
+ "shortestRoundTripNano": 58131586,
+ "longestRoundTripNano": 168526333,
+ "averageApexExecutionNano": 48891828,
+ "shortestApexExecutionNano": 8126150,
+ "longestApexExecutionNano": 120719217
+ },
+ {
+ "batchNumber": 1240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165112254,
+ "shortestRoundTripNano": 55469066,
+ "longestRoundTripNano": 193751836,
+ "averageApexExecutionNano": 74295335,
+ "shortestApexExecutionNano": 6237484,
+ "longestApexExecutionNano": 134536352
+ },
+ {
+ "batchNumber": 1241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159202965,
+ "shortestRoundTripNano": 64421459,
+ "longestRoundTripNano": 190087098,
+ "averageApexExecutionNano": 75465577,
+ "shortestApexExecutionNano": 12063609,
+ "longestApexExecutionNano": 126154599
+ },
+ {
+ "batchNumber": 1242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140088466,
+ "shortestRoundTripNano": 38761362,
+ "longestRoundTripNano": 175391079,
+ "averageApexExecutionNano": 71357622,
+ "shortestApexExecutionNano": 7411299,
+ "longestApexExecutionNano": 130946321
+ },
+ {
+ "batchNumber": 1243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132846758,
+ "shortestRoundTripNano": 51495994,
+ "longestRoundTripNano": 184045102,
+ "averageApexExecutionNano": 41157116,
+ "shortestApexExecutionNano": 6241555,
+ "longestApexExecutionNano": 104068392
+ },
+ {
+ "batchNumber": 1244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158161880,
+ "shortestRoundTripNano": 53041125,
+ "longestRoundTripNano": 186524189,
+ "averageApexExecutionNano": 67857271,
+ "shortestApexExecutionNano": 8229095,
+ "longestApexExecutionNano": 140137451
+ },
+ {
+ "batchNumber": 1245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154211161,
+ "shortestRoundTripNano": 49811550,
+ "longestRoundTripNano": 184236991,
+ "averageApexExecutionNano": 58632083,
+ "shortestApexExecutionNano": 6966616,
+ "longestApexExecutionNano": 115649195
+ },
+ {
+ "batchNumber": 1246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157546820,
+ "shortestRoundTripNano": 71990615,
+ "longestRoundTripNano": 189370501,
+ "averageApexExecutionNano": 68737697,
+ "shortestApexExecutionNano": 12942920,
+ "longestApexExecutionNano": 143964789
+ },
+ {
+ "batchNumber": 1247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148305920,
+ "shortestRoundTripNano": 68971355,
+ "longestRoundTripNano": 177220194,
+ "averageApexExecutionNano": 72086411,
+ "shortestApexExecutionNano": 24900580,
+ "longestApexExecutionNano": 124937204
+ },
+ {
+ "batchNumber": 1248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138185436,
+ "shortestRoundTripNano": 61285744,
+ "longestRoundTripNano": 170448821,
+ "averageApexExecutionNano": 59941388,
+ "shortestApexExecutionNano": 8646990,
+ "longestApexExecutionNano": 126618227
+ },
+ {
+ "batchNumber": 1249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167899992,
+ "shortestRoundTripNano": 68179550,
+ "longestRoundTripNano": 202546372,
+ "averageApexExecutionNano": 68948411,
+ "shortestApexExecutionNano": 16144834,
+ "longestApexExecutionNano": 142752966
+ },
+ {
+ "batchNumber": 1250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135938746,
+ "shortestRoundTripNano": 39948796,
+ "longestRoundTripNano": 179071382,
+ "averageApexExecutionNano": 65060254,
+ "shortestApexExecutionNano": 6378038,
+ "longestApexExecutionNano": 139140849
+ },
+ {
+ "batchNumber": 1251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165641570,
+ "shortestRoundTripNano": 71038248,
+ "longestRoundTripNano": 198493034,
+ "averageApexExecutionNano": 75501107,
+ "shortestApexExecutionNano": 10390017,
+ "longestApexExecutionNano": 126131716
+ },
+ {
+ "batchNumber": 1252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191674655,
+ "shortestRoundTripNano": 97196373,
+ "longestRoundTripNano": 228039929,
+ "averageApexExecutionNano": 65424328,
+ "shortestApexExecutionNano": 8970881,
+ "longestApexExecutionNano": 165449611
+ },
+ {
+ "batchNumber": 1253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135879563,
+ "shortestRoundTripNano": 66028126,
+ "longestRoundTripNano": 172075502,
+ "averageApexExecutionNano": 38011376,
+ "shortestApexExecutionNano": 6865496,
+ "longestApexExecutionNano": 76409785
+ },
+ {
+ "batchNumber": 1254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150561910,
+ "shortestRoundTripNano": 62430078,
+ "longestRoundTripNano": 178362906,
+ "averageApexExecutionNano": 72426595,
+ "shortestApexExecutionNano": 21270039,
+ "longestApexExecutionNano": 122279463
+ },
+ {
+ "batchNumber": 1255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148795981,
+ "shortestRoundTripNano": 65773840,
+ "longestRoundTripNano": 182954192,
+ "averageApexExecutionNano": 64973220,
+ "shortestApexExecutionNano": 7656373,
+ "longestApexExecutionNano": 141705660
+ },
+ {
+ "batchNumber": 1256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143920898,
+ "shortestRoundTripNano": 61448413,
+ "longestRoundTripNano": 167693598,
+ "averageApexExecutionNano": 72754015,
+ "shortestApexExecutionNano": 13729255,
+ "longestApexExecutionNano": 120061198
+ },
+ {
+ "batchNumber": 1257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155173908,
+ "shortestRoundTripNano": 62677421,
+ "longestRoundTripNano": 183714760,
+ "averageApexExecutionNano": 65063498,
+ "shortestApexExecutionNano": 8587419,
+ "longestApexExecutionNano": 112846684
+ },
+ {
+ "batchNumber": 1258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169995433,
+ "shortestRoundTripNano": 89331690,
+ "longestRoundTripNano": 230411817,
+ "averageApexExecutionNano": 88136392,
+ "shortestApexExecutionNano": 17098678,
+ "longestApexExecutionNano": 144563255
+ },
+ {
+ "batchNumber": 1259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147218527,
+ "shortestRoundTripNano": 82249739,
+ "longestRoundTripNano": 178020451,
+ "averageApexExecutionNano": 58564077,
+ "shortestApexExecutionNano": 6650847,
+ "longestApexExecutionNano": 130116169
+ },
+ {
+ "batchNumber": 1260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 298187363,
+ "shortestRoundTripNano": 57345506,
+ "longestRoundTripNano": 337379010,
+ "averageApexExecutionNano": 160933312,
+ "shortestApexExecutionNano": 7442735,
+ "longestApexExecutionNano": 297773534
+ },
+ {
+ "batchNumber": 1261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142213127,
+ "shortestRoundTripNano": 68821215,
+ "longestRoundTripNano": 173488463,
+ "averageApexExecutionNano": 59232884,
+ "shortestApexExecutionNano": 9594723,
+ "longestApexExecutionNano": 120630618
+ },
+ {
+ "batchNumber": 1262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128821217,
+ "shortestRoundTripNano": 59455534,
+ "longestRoundTripNano": 170715336,
+ "averageApexExecutionNano": 52940917,
+ "shortestApexExecutionNano": 9610686,
+ "longestApexExecutionNano": 124580250
+ },
+ {
+ "batchNumber": 1263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128208696,
+ "shortestRoundTripNano": 71974547,
+ "longestRoundTripNano": 153896089,
+ "averageApexExecutionNano": 59098128,
+ "shortestApexExecutionNano": 9374580,
+ "longestApexExecutionNano": 115960383
+ },
+ {
+ "batchNumber": 1264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127494934,
+ "shortestRoundTripNano": 60810985,
+ "longestRoundTripNano": 161568635,
+ "averageApexExecutionNano": 58557013,
+ "shortestApexExecutionNano": 6429578,
+ "longestApexExecutionNano": 112532083
+ },
+ {
+ "batchNumber": 1265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134702073,
+ "shortestRoundTripNano": 41390417,
+ "longestRoundTripNano": 160691105,
+ "averageApexExecutionNano": 63411261,
+ "shortestApexExecutionNano": 8097838,
+ "longestApexExecutionNano": 114639400
+ },
+ {
+ "batchNumber": 1266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127840472,
+ "shortestRoundTripNano": 50290028,
+ "longestRoundTripNano": 165999145,
+ "averageApexExecutionNano": 48576374,
+ "shortestApexExecutionNano": 10409844,
+ "longestApexExecutionNano": 91074228
+ },
+ {
+ "batchNumber": 1267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154590465,
+ "shortestRoundTripNano": 64017688,
+ "longestRoundTripNano": 182425833,
+ "averageApexExecutionNano": 76591779,
+ "shortestApexExecutionNano": 13330441,
+ "longestApexExecutionNano": 135115810
+ },
+ {
+ "batchNumber": 1268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149680818,
+ "shortestRoundTripNano": 52515569,
+ "longestRoundTripNano": 182746211,
+ "averageApexExecutionNano": 56919414,
+ "shortestApexExecutionNano": 12264926,
+ "longestApexExecutionNano": 127307785
+ },
+ {
+ "batchNumber": 1269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136521418,
+ "shortestRoundTripNano": 69799607,
+ "longestRoundTripNano": 174518324,
+ "averageApexExecutionNano": 61117236,
+ "shortestApexExecutionNano": 6181142,
+ "longestApexExecutionNano": 122494168
+ },
+ {
+ "batchNumber": 1270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143497031,
+ "shortestRoundTripNano": 88786704,
+ "longestRoundTripNano": 166537610,
+ "averageApexExecutionNano": 53670102,
+ "shortestApexExecutionNano": 6565116,
+ "longestApexExecutionNano": 100674992
+ },
+ {
+ "batchNumber": 1271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154816369,
+ "shortestRoundTripNano": 58225855,
+ "longestRoundTripNano": 177621033,
+ "averageApexExecutionNano": 73319710,
+ "shortestApexExecutionNano": 15012502,
+ "longestApexExecutionNano": 128171982
+ },
+ {
+ "batchNumber": 1272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133874124,
+ "shortestRoundTripNano": 80273651,
+ "longestRoundTripNano": 151930619,
+ "averageApexExecutionNano": 55591473,
+ "shortestApexExecutionNano": 8990207,
+ "longestApexExecutionNano": 109037178
+ },
+ {
+ "batchNumber": 1273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155352871,
+ "shortestRoundTripNano": 67625502,
+ "longestRoundTripNano": 185695255,
+ "averageApexExecutionNano": 60301582,
+ "shortestApexExecutionNano": 6846396,
+ "longestApexExecutionNano": 125812979
+ },
+ {
+ "batchNumber": 1274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131987307,
+ "shortestRoundTripNano": 57487355,
+ "longestRoundTripNano": 156219143,
+ "averageApexExecutionNano": 60139132,
+ "shortestApexExecutionNano": 5421609,
+ "longestApexExecutionNano": 122996796
+ },
+ {
+ "batchNumber": 1275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146217294,
+ "shortestRoundTripNano": 67226888,
+ "longestRoundTripNano": 178315992,
+ "averageApexExecutionNano": 62467614,
+ "shortestApexExecutionNano": 6808485,
+ "longestApexExecutionNano": 134938864
+ },
+ {
+ "batchNumber": 1276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137113924,
+ "shortestRoundTripNano": 96490202,
+ "longestRoundTripNano": 159944422,
+ "averageApexExecutionNano": 45434849,
+ "shortestApexExecutionNano": 5971909,
+ "longestApexExecutionNano": 104503526
+ },
+ {
+ "batchNumber": 1277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161578427,
+ "shortestRoundTripNano": 62741403,
+ "longestRoundTripNano": 186200747,
+ "averageApexExecutionNano": 55796258,
+ "shortestApexExecutionNano": 10477392,
+ "longestApexExecutionNano": 129798436
+ },
+ {
+ "batchNumber": 1278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147458709,
+ "shortestRoundTripNano": 38290786,
+ "longestRoundTripNano": 182154497,
+ "averageApexExecutionNano": 70077164,
+ "shortestApexExecutionNano": 5404254,
+ "longestApexExecutionNano": 131386556
+ },
+ {
+ "batchNumber": 1279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150029366,
+ "shortestRoundTripNano": 63430324,
+ "longestRoundTripNano": 171460423,
+ "averageApexExecutionNano": 64709411,
+ "shortestApexExecutionNano": 7841014,
+ "longestApexExecutionNano": 116119854
+ },
+ {
+ "batchNumber": 1280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149944084,
+ "shortestRoundTripNano": 73332634,
+ "longestRoundTripNano": 184887604,
+ "averageApexExecutionNano": 65121454,
+ "shortestApexExecutionNano": 12861997,
+ "longestApexExecutionNano": 112707208
+ },
+ {
+ "batchNumber": 1281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149068922,
+ "shortestRoundTripNano": 72878134,
+ "longestRoundTripNano": 176396809,
+ "averageApexExecutionNano": 63333661,
+ "shortestApexExecutionNano": 12317248,
+ "longestApexExecutionNano": 135148762
+ },
+ {
+ "batchNumber": 1282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140875715,
+ "shortestRoundTripNano": 70632596,
+ "longestRoundTripNano": 171001651,
+ "averageApexExecutionNano": 60962302,
+ "shortestApexExecutionNano": 4862963,
+ "longestApexExecutionNano": 127022070
+ },
+ {
+ "batchNumber": 1283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133649399,
+ "shortestRoundTripNano": 63305168,
+ "longestRoundTripNano": 166667535,
+ "averageApexExecutionNano": 54262043,
+ "shortestApexExecutionNano": 8319421,
+ "longestApexExecutionNano": 117834495
+ },
+ {
+ "batchNumber": 1284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154264775,
+ "shortestRoundTripNano": 68336372,
+ "longestRoundTripNano": 185309951,
+ "averageApexExecutionNano": 49115473,
+ "shortestApexExecutionNano": 5877615,
+ "longestApexExecutionNano": 111309262
+ },
+ {
+ "batchNumber": 1285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137287017,
+ "shortestRoundTripNano": 71154476,
+ "longestRoundTripNano": 160453420,
+ "averageApexExecutionNano": 63256320,
+ "shortestApexExecutionNano": 9166830,
+ "longestApexExecutionNano": 119745775
+ },
+ {
+ "batchNumber": 1286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136981125,
+ "shortestRoundTripNano": 57835598,
+ "longestRoundTripNano": 171807565,
+ "averageApexExecutionNano": 48420456,
+ "shortestApexExecutionNano": 8019612,
+ "longestApexExecutionNano": 120384562
+ },
+ {
+ "batchNumber": 1287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140952158,
+ "shortestRoundTripNano": 75077448,
+ "longestRoundTripNano": 166588515,
+ "averageApexExecutionNano": 55337457,
+ "shortestApexExecutionNano": 7584002,
+ "longestApexExecutionNano": 106937635
+ },
+ {
+ "batchNumber": 1288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153358698,
+ "shortestRoundTripNano": 86160679,
+ "longestRoundTripNano": 180080800,
+ "averageApexExecutionNano": 79925562,
+ "shortestApexExecutionNano": 9983396,
+ "longestApexExecutionNano": 123970784
+ },
+ {
+ "batchNumber": 1289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165602804,
+ "shortestRoundTripNano": 99529874,
+ "longestRoundTripNano": 191595774,
+ "averageApexExecutionNano": 76078903,
+ "shortestApexExecutionNano": 8430818,
+ "longestApexExecutionNano": 150196288
+ },
+ {
+ "batchNumber": 1290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164269395,
+ "shortestRoundTripNano": 75002903,
+ "longestRoundTripNano": 190643507,
+ "averageApexExecutionNano": 60149340,
+ "shortestApexExecutionNano": 6860150,
+ "longestApexExecutionNano": 131556161
+ },
+ {
+ "batchNumber": 1291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132899435,
+ "shortestRoundTripNano": 53313579,
+ "longestRoundTripNano": 166410357,
+ "averageApexExecutionNano": 55465488,
+ "shortestApexExecutionNano": 6764264,
+ "longestApexExecutionNano": 95430599
+ },
+ {
+ "batchNumber": 1292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130938054,
+ "shortestRoundTripNano": 55047263,
+ "longestRoundTripNano": 154758085,
+ "averageApexExecutionNano": 64993816,
+ "shortestApexExecutionNano": 7225917,
+ "longestApexExecutionNano": 124091416
+ },
+ {
+ "batchNumber": 1293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144267793,
+ "shortestRoundTripNano": 62469223,
+ "longestRoundTripNano": 177430093,
+ "averageApexExecutionNano": 62859616,
+ "shortestApexExecutionNano": 11844795,
+ "longestApexExecutionNano": 123096952
+ },
+ {
+ "batchNumber": 1294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168176493,
+ "shortestRoundTripNano": 69138916,
+ "longestRoundTripNano": 201976699,
+ "averageApexExecutionNano": 77621571,
+ "shortestApexExecutionNano": 5829552,
+ "longestApexExecutionNano": 158141478
+ },
+ {
+ "batchNumber": 1295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133636569,
+ "shortestRoundTripNano": 58309476,
+ "longestRoundTripNano": 160752104,
+ "averageApexExecutionNano": 51430393,
+ "shortestApexExecutionNano": 7945943,
+ "longestApexExecutionNano": 114453640
+ },
+ {
+ "batchNumber": 1296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 193396193,
+ "shortestRoundTripNano": 75993801,
+ "longestRoundTripNano": 229555090,
+ "averageApexExecutionNano": 92663904,
+ "shortestApexExecutionNano": 6267316,
+ "longestApexExecutionNano": 159639237
+ },
+ {
+ "batchNumber": 1297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131287601,
+ "shortestRoundTripNano": 64809851,
+ "longestRoundTripNano": 172739181,
+ "averageApexExecutionNano": 58314866,
+ "shortestApexExecutionNano": 11037754,
+ "longestApexExecutionNano": 120420426
+ },
+ {
+ "batchNumber": 1298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154099220,
+ "shortestRoundTripNano": 67949108,
+ "longestRoundTripNano": 192903553,
+ "averageApexExecutionNano": 59236128,
+ "shortestApexExecutionNano": 7418519,
+ "longestApexExecutionNano": 138595129
+ },
+ {
+ "batchNumber": 1299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146776919,
+ "shortestRoundTripNano": 48300799,
+ "longestRoundTripNano": 181312792,
+ "averageApexExecutionNano": 61974007,
+ "shortestApexExecutionNano": 6940088,
+ "longestApexExecutionNano": 136473975
+ },
+ {
+ "batchNumber": 1300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135815902,
+ "shortestRoundTripNano": 73152200,
+ "longestRoundTripNano": 163026135,
+ "averageApexExecutionNano": 56517159,
+ "shortestApexExecutionNano": 6194257,
+ "longestApexExecutionNano": 117322012
+ },
+ {
+ "batchNumber": 1301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134010642,
+ "shortestRoundTripNano": 59253678,
+ "longestRoundTripNano": 176707555,
+ "averageApexExecutionNano": 37418318,
+ "shortestApexExecutionNano": 8802932,
+ "longestApexExecutionNano": 96684603
+ },
+ {
+ "batchNumber": 1302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163549230,
+ "shortestRoundTripNano": 82873255,
+ "longestRoundTripNano": 198647205,
+ "averageApexExecutionNano": 87755225,
+ "shortestApexExecutionNano": 10624921,
+ "longestApexExecutionNano": 148514193
+ },
+ {
+ "batchNumber": 1303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152545200,
+ "shortestRoundTripNano": 49232918,
+ "longestRoundTripNano": 178055335,
+ "averageApexExecutionNano": 65495159,
+ "shortestApexExecutionNano": 9457495,
+ "longestApexExecutionNano": 129988096
+ },
+ {
+ "batchNumber": 1304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138791241,
+ "shortestRoundTripNano": 54718768,
+ "longestRoundTripNano": 166192595,
+ "averageApexExecutionNano": 55699687,
+ "shortestApexExecutionNano": 9731325,
+ "longestApexExecutionNano": 112485418
+ },
+ {
+ "batchNumber": 1305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158486362,
+ "shortestRoundTripNano": 68975811,
+ "longestRoundTripNano": 188012505,
+ "averageApexExecutionNano": 54994551,
+ "shortestApexExecutionNano": 6268136,
+ "longestApexExecutionNano": 103059455
+ },
+ {
+ "batchNumber": 1306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161630692,
+ "shortestRoundTripNano": 80209050,
+ "longestRoundTripNano": 211875185,
+ "averageApexExecutionNano": 74784648,
+ "shortestApexExecutionNano": 13812957,
+ "longestApexExecutionNano": 147686859
+ },
+ {
+ "batchNumber": 1307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145787392,
+ "shortestRoundTripNano": 72024789,
+ "longestRoundTripNano": 175185351,
+ "averageApexExecutionNano": 69749012,
+ "shortestApexExecutionNano": 9779305,
+ "longestApexExecutionNano": 125975225
+ },
+ {
+ "batchNumber": 1308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162085869,
+ "shortestRoundTripNano": 82668786,
+ "longestRoundTripNano": 213614419,
+ "averageApexExecutionNano": 65492200,
+ "shortestApexExecutionNano": 14690390,
+ "longestApexExecutionNano": 105410967
+ },
+ {
+ "batchNumber": 1309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145316677,
+ "shortestRoundTripNano": 66113596,
+ "longestRoundTripNano": 171195585,
+ "averageApexExecutionNano": 60509838,
+ "shortestApexExecutionNano": 12651346,
+ "longestApexExecutionNano": 131228170
+ },
+ {
+ "batchNumber": 1310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149649759,
+ "shortestRoundTripNano": 77872907,
+ "longestRoundTripNano": 176168892,
+ "averageApexExecutionNano": 58330829,
+ "shortestApexExecutionNano": 15179690,
+ "longestApexExecutionNano": 113200798
+ },
+ {
+ "batchNumber": 1311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144549941,
+ "shortestRoundTripNano": 77235367,
+ "longestRoundTripNano": 174620919,
+ "averageApexExecutionNano": 65947687,
+ "shortestApexExecutionNano": 13409521,
+ "longestApexExecutionNano": 113722861
+ },
+ {
+ "batchNumber": 1312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125959226,
+ "shortestRoundTripNano": 67057376,
+ "longestRoundTripNano": 151596868,
+ "averageApexExecutionNano": 52560733,
+ "shortestApexExecutionNano": 6649397,
+ "longestApexExecutionNano": 99762968
+ },
+ {
+ "batchNumber": 1313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161851180,
+ "shortestRoundTripNano": 68526745,
+ "longestRoundTripNano": 189075528,
+ "averageApexExecutionNano": 63024226,
+ "shortestApexExecutionNano": 10335193,
+ "longestApexExecutionNano": 138288810
+ },
+ {
+ "batchNumber": 1314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129991049,
+ "shortestRoundTripNano": 72042716,
+ "longestRoundTripNano": 152741873,
+ "averageApexExecutionNano": 55463339,
+ "shortestApexExecutionNano": 11923340,
+ "longestApexExecutionNano": 116356442
+ },
+ {
+ "batchNumber": 1315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167551986,
+ "shortestRoundTripNano": 86289202,
+ "longestRoundTripNano": 194368666,
+ "averageApexExecutionNano": 72016532,
+ "shortestApexExecutionNano": 9438144,
+ "longestApexExecutionNano": 129093667
+ },
+ {
+ "batchNumber": 1316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35162",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142955604,
+ "shortestRoundTripNano": 76206154,
+ "longestRoundTripNano": 167067537,
+ "averageApexExecutionNano": 71958124,
+ "shortestApexExecutionNano": 9206388,
+ "longestApexExecutionNano": 129558555
+ },
+ {
+ "batchNumber": 1317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35162",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130985564,
+ "shortestRoundTripNano": 50232286,
+ "longestRoundTripNano": 165075417,
+ "averageApexExecutionNano": 53746640,
+ "shortestApexExecutionNano": 10600881,
+ "longestApexExecutionNano": 110520839
+ },
+ {
+ "batchNumber": 1318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133241780,
+ "shortestRoundTripNano": 69585684,
+ "longestRoundTripNano": 167956562,
+ "averageApexExecutionNano": 57949631,
+ "shortestApexExecutionNano": 9164911,
+ "longestApexExecutionNano": 109417251
+ },
+ {
+ "batchNumber": 1319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154563783,
+ "shortestRoundTripNano": 87791790,
+ "longestRoundTripNano": 179721604,
+ "averageApexExecutionNano": 56316323,
+ "shortestApexExecutionNano": 8932417,
+ "longestApexExecutionNano": 132433967
+ },
+ {
+ "batchNumber": 1320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142062326,
+ "shortestRoundTripNano": 75984066,
+ "longestRoundTripNano": 170431075,
+ "averageApexExecutionNano": 58611692,
+ "shortestApexExecutionNano": 9213884,
+ "longestApexExecutionNano": 111164197
+ },
+ {
+ "batchNumber": 1321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129122642,
+ "shortestRoundTripNano": 44808238,
+ "longestRoundTripNano": 157378932,
+ "averageApexExecutionNano": 66175053,
+ "shortestApexExecutionNano": 9340182,
+ "longestApexExecutionNano": 125646634
+ },
+ {
+ "batchNumber": 1322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177872111,
+ "shortestRoundTripNano": 62404488,
+ "longestRoundTripNano": 214895833,
+ "averageApexExecutionNano": 73978435,
+ "shortestApexExecutionNano": 7701825,
+ "longestApexExecutionNano": 165373463
+ },
+ {
+ "batchNumber": 1323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158136863,
+ "shortestRoundTripNano": 54853493,
+ "longestRoundTripNano": 198011002,
+ "averageApexExecutionNano": 66923961,
+ "shortestApexExecutionNano": 6166068,
+ "longestApexExecutionNano": 136107129
+ },
+ {
+ "batchNumber": 1324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157036485,
+ "shortestRoundTripNano": 46274798,
+ "longestRoundTripNano": 185753669,
+ "averageApexExecutionNano": 73402489,
+ "shortestApexExecutionNano": 7660380,
+ "longestApexExecutionNano": 131857061
+ },
+ {
+ "batchNumber": 1325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142066485,
+ "shortestRoundTripNano": 65804710,
+ "longestRoundTripNano": 173926644,
+ "averageApexExecutionNano": 38955753,
+ "shortestApexExecutionNano": 5204819,
+ "longestApexExecutionNano": 106286864
+ },
+ {
+ "batchNumber": 1326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151707578,
+ "shortestRoundTripNano": 41495793,
+ "longestRoundTripNano": 201632893,
+ "averageApexExecutionNano": 69524200,
+ "shortestApexExecutionNano": 6421275,
+ "longestApexExecutionNano": 119521876
+ },
+ {
+ "batchNumber": 1327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152496026,
+ "shortestRoundTripNano": 68605898,
+ "longestRoundTripNano": 176619139,
+ "averageApexExecutionNano": 61417316,
+ "shortestApexExecutionNano": 9235350,
+ "longestApexExecutionNano": 121249534
+ },
+ {
+ "batchNumber": 1328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157667259,
+ "shortestRoundTripNano": 48799771,
+ "longestRoundTripNano": 203579935,
+ "averageApexExecutionNano": 71049546,
+ "shortestApexExecutionNano": 6921635,
+ "longestApexExecutionNano": 106917637
+ },
+ {
+ "batchNumber": 1329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144083476,
+ "shortestRoundTripNano": 76845218,
+ "longestRoundTripNano": 169546251,
+ "averageApexExecutionNano": 68019908,
+ "shortestApexExecutionNano": 7825981,
+ "longestApexExecutionNano": 119948670
+ },
+ {
+ "batchNumber": 1330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163872670,
+ "shortestRoundTripNano": 69516413,
+ "longestRoundTripNano": 192068511,
+ "averageApexExecutionNano": 83029618,
+ "shortestApexExecutionNano": 17880666,
+ "longestApexExecutionNano": 151239027
+ },
+ {
+ "batchNumber": 1331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166961502,
+ "shortestRoundTripNano": 74081137,
+ "longestRoundTripNano": 197160334,
+ "averageApexExecutionNano": 62088246,
+ "shortestApexExecutionNano": 16321556,
+ "longestApexExecutionNano": 108745495
+ },
+ {
+ "batchNumber": 1332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168108623,
+ "shortestRoundTripNano": 54056946,
+ "longestRoundTripNano": 206290552,
+ "averageApexExecutionNano": 76185157,
+ "shortestApexExecutionNano": 7632455,
+ "longestApexExecutionNano": 162379743
+ },
+ {
+ "batchNumber": 1333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146347928,
+ "shortestRoundTripNano": 65419520,
+ "longestRoundTripNano": 178763624,
+ "averageApexExecutionNano": 60050541,
+ "shortestApexExecutionNano": 7350887,
+ "longestApexExecutionNano": 122333263
+ },
+ {
+ "batchNumber": 1334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142036962,
+ "shortestRoundTripNano": 42071794,
+ "longestRoundTripNano": 171068003,
+ "averageApexExecutionNano": 73129178,
+ "shortestApexExecutionNano": 4707446,
+ "longestApexExecutionNano": 120133361
+ },
+ {
+ "batchNumber": 1335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132484083,
+ "shortestRoundTripNano": 54646551,
+ "longestRoundTripNano": 165355650,
+ "averageApexExecutionNano": 56436355,
+ "shortestApexExecutionNano": 5212147,
+ "longestApexExecutionNano": 107473055
+ },
+ {
+ "batchNumber": 1336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35168",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153338397,
+ "shortestRoundTripNano": 75159142,
+ "longestRoundTripNano": 177802083,
+ "averageApexExecutionNano": 65048311,
+ "shortestApexExecutionNano": 10026785,
+ "longestApexExecutionNano": 123652380
+ },
+ {
+ "batchNumber": 1337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145484661,
+ "shortestRoundTripNano": 63070205,
+ "longestRoundTripNano": 174609203,
+ "averageApexExecutionNano": 59838911,
+ "shortestApexExecutionNano": 5845599,
+ "longestApexExecutionNano": 126669102
+ },
+ {
+ "batchNumber": 1338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127596017,
+ "shortestRoundTripNano": 58621516,
+ "longestRoundTripNano": 158029193,
+ "averageApexExecutionNano": 59888104,
+ "shortestApexExecutionNano": 8179648,
+ "longestApexExecutionNano": 110186483
+ },
+ {
+ "batchNumber": 1339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155729018,
+ "shortestRoundTripNano": 68240697,
+ "longestRoundTripNano": 188518997,
+ "averageApexExecutionNano": 65230692,
+ "shortestApexExecutionNano": 8455789,
+ "longestApexExecutionNano": 151128931
+ },
+ {
+ "batchNumber": 1340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192354804,
+ "shortestRoundTripNano": 67862167,
+ "longestRoundTripNano": 222341099,
+ "averageApexExecutionNano": 89300272,
+ "shortestApexExecutionNano": 13681245,
+ "longestApexExecutionNano": 171676026
+ },
+ {
+ "batchNumber": 1341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170474221,
+ "shortestRoundTripNano": 91867313,
+ "longestRoundTripNano": 200271290,
+ "averageApexExecutionNano": 69577140,
+ "shortestApexExecutionNano": 10098154,
+ "longestApexExecutionNano": 142041795
+ },
+ {
+ "batchNumber": 1342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133326502,
+ "shortestRoundTripNano": 78442801,
+ "longestRoundTripNano": 159866089,
+ "averageApexExecutionNano": 68648588,
+ "shortestApexExecutionNano": 6878658,
+ "longestApexExecutionNano": 122690815
+ },
+ {
+ "batchNumber": 1343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168069835,
+ "shortestRoundTripNano": 105594044,
+ "longestRoundTripNano": 190825075,
+ "averageApexExecutionNano": 38583238,
+ "shortestApexExecutionNano": 7768837,
+ "longestApexExecutionNano": 129679102
+ },
+ {
+ "batchNumber": 1344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125300716,
+ "shortestRoundTripNano": 71816632,
+ "longestRoundTripNano": 148430518,
+ "averageApexExecutionNano": 57521468,
+ "shortestApexExecutionNano": 21074468,
+ "longestApexExecutionNano": 99333644
+ },
+ {
+ "batchNumber": 1345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123080591,
+ "shortestRoundTripNano": 63249298,
+ "longestRoundTripNano": 152174335,
+ "averageApexExecutionNano": 46199952,
+ "shortestApexExecutionNano": 7216147,
+ "longestApexExecutionNano": 104914763
+ },
+ {
+ "batchNumber": 1346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145832897,
+ "shortestRoundTripNano": 58348929,
+ "longestRoundTripNano": 179030676,
+ "averageApexExecutionNano": 51180462,
+ "shortestApexExecutionNano": 7162996,
+ "longestApexExecutionNano": 113937424
+ },
+ {
+ "batchNumber": 1347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137146506,
+ "shortestRoundTripNano": 73111912,
+ "longestRoundTripNano": 163673852,
+ "averageApexExecutionNano": 56317638,
+ "shortestApexExecutionNano": 9249189,
+ "longestApexExecutionNano": 113972472
+ },
+ {
+ "batchNumber": 1348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35170",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176329585,
+ "shortestRoundTripNano": 54050945,
+ "longestRoundTripNano": 230460077,
+ "averageApexExecutionNano": 81948176,
+ "shortestApexExecutionNano": 6607026,
+ "longestApexExecutionNano": 147899921
+ },
+ {
+ "batchNumber": 1349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158682810,
+ "shortestRoundTripNano": 61735042,
+ "longestRoundTripNano": 184940637,
+ "averageApexExecutionNano": 71153978,
+ "shortestApexExecutionNano": 8574958,
+ "longestApexExecutionNano": 131448629
+ },
+ {
+ "batchNumber": 1350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154147708,
+ "shortestRoundTripNano": 73024367,
+ "longestRoundTripNano": 184471189,
+ "averageApexExecutionNano": 67290250,
+ "shortestApexExecutionNano": 8780994,
+ "longestApexExecutionNano": 116627831
+ },
+ {
+ "batchNumber": 1351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140465444,
+ "shortestRoundTripNano": 45673082,
+ "longestRoundTripNano": 169531209,
+ "averageApexExecutionNano": 60707232,
+ "shortestApexExecutionNano": 7992690,
+ "longestApexExecutionNano": 114909422
+ },
+ {
+ "batchNumber": 1352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139026126,
+ "shortestRoundTripNano": 74157988,
+ "longestRoundTripNano": 167109923,
+ "averageApexExecutionNano": 59610410,
+ "shortestApexExecutionNano": 6766701,
+ "longestApexExecutionNano": 113029186
+ },
+ {
+ "batchNumber": 1353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163801105,
+ "shortestRoundTripNano": 57933304,
+ "longestRoundTripNano": 208687290,
+ "averageApexExecutionNano": 62039771,
+ "shortestApexExecutionNano": 6915689,
+ "longestApexExecutionNano": 121213669
+ },
+ {
+ "batchNumber": 1354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152625843,
+ "shortestRoundTripNano": 79104618,
+ "longestRoundTripNano": 177062882,
+ "averageApexExecutionNano": 66367512,
+ "shortestApexExecutionNano": 8554492,
+ "longestApexExecutionNano": 132475642
+ },
+ {
+ "batchNumber": 1355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142507364,
+ "shortestRoundTripNano": 54089851,
+ "longestRoundTripNano": 177260173,
+ "averageApexExecutionNano": 54717647,
+ "shortestApexExecutionNano": 11382144,
+ "longestApexExecutionNano": 122466410
+ },
+ {
+ "batchNumber": 1356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148883633,
+ "shortestRoundTripNano": 28255225,
+ "longestRoundTripNano": 184974865,
+ "averageApexExecutionNano": 61841956,
+ "shortestApexExecutionNano": 5538275,
+ "longestApexExecutionNano": 128273841
+ },
+ {
+ "batchNumber": 1357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132823661,
+ "shortestRoundTripNano": 65160653,
+ "longestRoundTripNano": 162245407,
+ "averageApexExecutionNano": 54635461,
+ "shortestApexExecutionNano": 6880890,
+ "longestApexExecutionNano": 98718798
+ },
+ {
+ "batchNumber": 1358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157540751,
+ "shortestRoundTripNano": 59999533,
+ "longestRoundTripNano": 189037600,
+ "averageApexExecutionNano": 66425933,
+ "shortestApexExecutionNano": 7914339,
+ "longestApexExecutionNano": 135519075
+ },
+ {
+ "batchNumber": 1359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145735784,
+ "shortestRoundTripNano": 67062954,
+ "longestRoundTripNano": 171630478,
+ "averageApexExecutionNano": 57562364,
+ "shortestApexExecutionNano": 7305066,
+ "longestApexExecutionNano": 121873205
+ },
+ {
+ "batchNumber": 1360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142083498,
+ "shortestRoundTripNano": 73179183,
+ "longestRoundTripNano": 172345550,
+ "averageApexExecutionNano": 44756908,
+ "shortestApexExecutionNano": 5935646,
+ "longestApexExecutionNano": 121288213
+ },
+ {
+ "batchNumber": 1361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174798919,
+ "shortestRoundTripNano": 45657470,
+ "longestRoundTripNano": 199995924,
+ "averageApexExecutionNano": 66755247,
+ "shortestApexExecutionNano": 6625452,
+ "longestApexExecutionNano": 149872957
+ },
+ {
+ "batchNumber": 1362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134592784,
+ "shortestRoundTripNano": 82531655,
+ "longestRoundTripNano": 153806868,
+ "averageApexExecutionNano": 64383073,
+ "shortestApexExecutionNano": 25921516,
+ "longestApexExecutionNano": 101017240
+ },
+ {
+ "batchNumber": 1363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143743289,
+ "shortestRoundTripNano": 65775736,
+ "longestRoundTripNano": 174530025,
+ "averageApexExecutionNano": 57763240,
+ "shortestApexExecutionNano": 9215892,
+ "longestApexExecutionNano": 108323511
+ },
+ {
+ "batchNumber": 1364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148372654,
+ "shortestRoundTripNano": 83484708,
+ "longestRoundTripNano": 172335684,
+ "averageApexExecutionNano": 60703115,
+ "shortestApexExecutionNano": 8064355,
+ "longestApexExecutionNano": 112150815
+ },
+ {
+ "batchNumber": 1365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135576211,
+ "shortestRoundTripNano": 60329757,
+ "longestRoundTripNano": 171014531,
+ "averageApexExecutionNano": 46385880,
+ "shortestApexExecutionNano": 6163291,
+ "longestApexExecutionNano": 93462184
+ },
+ {
+ "batchNumber": 1366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148889025,
+ "shortestRoundTripNano": 49158285,
+ "longestRoundTripNano": 186689006,
+ "averageApexExecutionNano": 60310100,
+ "shortestApexExecutionNano": 9470601,
+ "longestApexExecutionNano": 141643584
+ },
+ {
+ "batchNumber": 1367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141704669,
+ "shortestRoundTripNano": 66231635,
+ "longestRoundTripNano": 171088662,
+ "averageApexExecutionNano": 71988076,
+ "shortestApexExecutionNano": 9600573,
+ "longestApexExecutionNano": 131156076
+ },
+ {
+ "batchNumber": 1368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148549109,
+ "shortestRoundTripNano": 57615157,
+ "longestRoundTripNano": 182722705,
+ "averageApexExecutionNano": 54682921,
+ "shortestApexExecutionNano": 10120286,
+ "longestApexExecutionNano": 102055406
+ },
+ {
+ "batchNumber": 1369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156939703,
+ "shortestRoundTripNano": 82920228,
+ "longestRoundTripNano": 200735124,
+ "averageApexExecutionNano": 58891401,
+ "shortestApexExecutionNano": 6216026,
+ "longestApexExecutionNano": 109663729
+ },
+ {
+ "batchNumber": 1370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150721360,
+ "shortestRoundTripNano": 37260949,
+ "longestRoundTripNano": 181471708,
+ "averageApexExecutionNano": 71951160,
+ "shortestApexExecutionNano": 9487346,
+ "longestApexExecutionNano": 133364349
+ },
+ {
+ "batchNumber": 1371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143319443,
+ "shortestRoundTripNano": 63864309,
+ "longestRoundTripNano": 178663602,
+ "averageApexExecutionNano": 67169758,
+ "shortestApexExecutionNano": 9091589,
+ "longestApexExecutionNano": 123226236
+ },
+ {
+ "batchNumber": 1372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156344404,
+ "shortestRoundTripNano": 74177438,
+ "longestRoundTripNano": 184403641,
+ "averageApexExecutionNano": 60803490,
+ "shortestApexExecutionNano": 14507182,
+ "longestApexExecutionNano": 127659288
+ },
+ {
+ "batchNumber": 1373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145676849,
+ "shortestRoundTripNano": 47260954,
+ "longestRoundTripNano": 180283918,
+ "averageApexExecutionNano": 50502616,
+ "shortestApexExecutionNano": 12164199,
+ "longestApexExecutionNano": 102967901
+ },
+ {
+ "batchNumber": 1374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138699428,
+ "shortestRoundTripNano": 50224517,
+ "longestRoundTripNano": 180186551,
+ "averageApexExecutionNano": 53519257,
+ "shortestApexExecutionNano": 6556680,
+ "longestApexExecutionNano": 119345503
+ },
+ {
+ "batchNumber": 1375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151853720,
+ "shortestRoundTripNano": 60996736,
+ "longestRoundTripNano": 176885968,
+ "averageApexExecutionNano": 61203710,
+ "shortestApexExecutionNano": 9666279,
+ "longestApexExecutionNano": 126332617
+ },
+ {
+ "batchNumber": 1376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148629486,
+ "shortestRoundTripNano": 73731335,
+ "longestRoundTripNano": 176131218,
+ "averageApexExecutionNano": 54270940,
+ "shortestApexExecutionNano": 10825921,
+ "longestApexExecutionNano": 118925007
+ },
+ {
+ "batchNumber": 1377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133894160,
+ "shortestRoundTripNano": 66696821,
+ "longestRoundTripNano": 163740653,
+ "averageApexExecutionNano": 48321866,
+ "shortestApexExecutionNano": 9421826,
+ "longestApexExecutionNano": 111676626
+ },
+ {
+ "batchNumber": 1378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152880023,
+ "shortestRoundTripNano": 52066413,
+ "longestRoundTripNano": 187117084,
+ "averageApexExecutionNano": 54327305,
+ "shortestApexExecutionNano": 11322150,
+ "longestApexExecutionNano": 136911577
+ },
+ {
+ "batchNumber": 1379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140660751,
+ "shortestRoundTripNano": 66421301,
+ "longestRoundTripNano": 164668583,
+ "averageApexExecutionNano": 60562960,
+ "shortestApexExecutionNano": 17439656,
+ "longestApexExecutionNano": 118827534
+ },
+ {
+ "batchNumber": 1380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132036535,
+ "shortestRoundTripNano": 56025357,
+ "longestRoundTripNano": 161613313,
+ "averageApexExecutionNano": 52204222,
+ "shortestApexExecutionNano": 6237311,
+ "longestApexExecutionNano": 111658441
+ },
+ {
+ "batchNumber": 1381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147058209,
+ "shortestRoundTripNano": 56273200,
+ "longestRoundTripNano": 181113270,
+ "averageApexExecutionNano": 61045514,
+ "shortestApexExecutionNano": 10872013,
+ "longestApexExecutionNano": 106168063
+ },
+ {
+ "batchNumber": 1382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134362736,
+ "shortestRoundTripNano": 41134950,
+ "longestRoundTripNano": 174605818,
+ "averageApexExecutionNano": 66406789,
+ "shortestApexExecutionNano": 14324940,
+ "longestApexExecutionNano": 124372008
+ },
+ {
+ "batchNumber": 1383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138696827,
+ "shortestRoundTripNano": 68065771,
+ "longestRoundTripNano": 171473111,
+ "averageApexExecutionNano": 40805732,
+ "shortestApexExecutionNano": 6472385,
+ "longestApexExecutionNano": 133958955
+ },
+ {
+ "batchNumber": 1384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129633334,
+ "shortestRoundTripNano": 68602848,
+ "longestRoundTripNano": 157362144,
+ "averageApexExecutionNano": 57437685,
+ "shortestApexExecutionNano": 10055234,
+ "longestApexExecutionNano": 102912546
+ },
+ {
+ "batchNumber": 1385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169282558,
+ "shortestRoundTripNano": 66413802,
+ "longestRoundTripNano": 200697169,
+ "averageApexExecutionNano": 73992011,
+ "shortestApexExecutionNano": 15127050,
+ "longestApexExecutionNano": 135921624
+ },
+ {
+ "batchNumber": 1386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131453524,
+ "shortestRoundTripNano": 58561941,
+ "longestRoundTripNano": 156346315,
+ "averageApexExecutionNano": 54178681,
+ "shortestApexExecutionNano": 9008900,
+ "longestApexExecutionNano": 118228276
+ },
+ {
+ "batchNumber": 1387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144994336,
+ "shortestRoundTripNano": 77516108,
+ "longestRoundTripNano": 168315266,
+ "averageApexExecutionNano": 54443473,
+ "shortestApexExecutionNano": 6551974,
+ "longestApexExecutionNano": 111331100
+ },
+ {
+ "batchNumber": 1388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139835953,
+ "shortestRoundTripNano": 62445776,
+ "longestRoundTripNano": 164406956,
+ "averageApexExecutionNano": 50924400,
+ "shortestApexExecutionNano": 8347221,
+ "longestApexExecutionNano": 109185026
+ },
+ {
+ "batchNumber": 1389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146856558,
+ "shortestRoundTripNano": 60090275,
+ "longestRoundTripNano": 199357448,
+ "averageApexExecutionNano": 65719007,
+ "shortestApexExecutionNano": 5942265,
+ "longestApexExecutionNano": 129370641
+ },
+ {
+ "batchNumber": 1390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162082573,
+ "shortestRoundTripNano": 65656024,
+ "longestRoundTripNano": 189174802,
+ "averageApexExecutionNano": 70181587,
+ "shortestApexExecutionNano": 13598570,
+ "longestApexExecutionNano": 130147143
+ },
+ {
+ "batchNumber": 1391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178193349,
+ "shortestRoundTripNano": 82652189,
+ "longestRoundTripNano": 203566062,
+ "averageApexExecutionNano": 77697453,
+ "shortestApexExecutionNano": 11681289,
+ "longestApexExecutionNano": 131109561
+ },
+ {
+ "batchNumber": 1392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179947299,
+ "shortestRoundTripNano": 75655847,
+ "longestRoundTripNano": 218541212,
+ "averageApexExecutionNano": 70269322,
+ "shortestApexExecutionNano": 15296367,
+ "longestApexExecutionNano": 156543679
+ },
+ {
+ "batchNumber": 1393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129359022,
+ "shortestRoundTripNano": 75184747,
+ "longestRoundTripNano": 162988062,
+ "averageApexExecutionNano": 61739745,
+ "shortestApexExecutionNano": 6711631,
+ "longestApexExecutionNano": 115883974
+ },
+ {
+ "batchNumber": 1394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151385297,
+ "shortestRoundTripNano": 60796931,
+ "longestRoundTripNano": 215333470,
+ "averageApexExecutionNano": 57048399,
+ "shortestApexExecutionNano": 11389193,
+ "longestApexExecutionNano": 133110196
+ },
+ {
+ "batchNumber": 1395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153282013,
+ "shortestRoundTripNano": 89781464,
+ "longestRoundTripNano": 178634831,
+ "averageApexExecutionNano": 77448093,
+ "shortestApexExecutionNano": 5338382,
+ "longestApexExecutionNano": 134892573
+ },
+ {
+ "batchNumber": 1396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124499297,
+ "shortestRoundTripNano": 64380093,
+ "longestRoundTripNano": 156550792,
+ "averageApexExecutionNano": 53633536,
+ "shortestApexExecutionNano": 12760245,
+ "longestApexExecutionNano": 105660223
+ },
+ {
+ "batchNumber": 1397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145934588,
+ "shortestRoundTripNano": 50647316,
+ "longestRoundTripNano": 174837574,
+ "averageApexExecutionNano": 73849370,
+ "shortestApexExecutionNano": 7327437,
+ "longestApexExecutionNano": 128643363
+ },
+ {
+ "batchNumber": 1398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128610523,
+ "shortestRoundTripNano": 47435709,
+ "longestRoundTripNano": 157960195,
+ "averageApexExecutionNano": 45188926,
+ "shortestApexExecutionNano": 7738880,
+ "longestApexExecutionNano": 92813516
+ },
+ {
+ "batchNumber": 1399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141212115,
+ "shortestRoundTripNano": 75291467,
+ "longestRoundTripNano": 172955857,
+ "averageApexExecutionNano": 69398081,
+ "shortestApexExecutionNano": 10871917,
+ "longestApexExecutionNano": 116262190
+ },
+ {
+ "batchNumber": 1400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155024980,
+ "shortestRoundTripNano": 68807387,
+ "longestRoundTripNano": 185042291,
+ "averageApexExecutionNano": 62893032,
+ "shortestApexExecutionNano": 8141316,
+ "longestApexExecutionNano": 118637502
+ },
+ {
+ "batchNumber": 1401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142284510,
+ "shortestRoundTripNano": 77840176,
+ "longestRoundTripNano": 164684943,
+ "averageApexExecutionNano": 45869153,
+ "shortestApexExecutionNano": 10007602,
+ "longestApexExecutionNano": 110264245
+ },
+ {
+ "batchNumber": 1402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140337316,
+ "shortestRoundTripNano": 38684084,
+ "longestRoundTripNano": 174469123,
+ "averageApexExecutionNano": 64748289,
+ "shortestApexExecutionNano": 5474490,
+ "longestApexExecutionNano": 130958897
+ },
+ {
+ "batchNumber": 1403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149131641,
+ "shortestRoundTripNano": 61798038,
+ "longestRoundTripNano": 172941693,
+ "averageApexExecutionNano": 65380543,
+ "shortestApexExecutionNano": 6444981,
+ "longestApexExecutionNano": 129606665
+ },
+ {
+ "batchNumber": 1404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152878582,
+ "shortestRoundTripNano": 67871506,
+ "longestRoundTripNano": 185055059,
+ "averageApexExecutionNano": 67833447,
+ "shortestApexExecutionNano": 9750363,
+ "longestApexExecutionNano": 117865332
+ },
+ {
+ "batchNumber": 1405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149794185,
+ "shortestRoundTripNano": 44744688,
+ "longestRoundTripNano": 188522235,
+ "averageApexExecutionNano": 65262354,
+ "shortestApexExecutionNano": 6942673,
+ "longestApexExecutionNano": 144981111
+ },
+ {
+ "batchNumber": 1406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126967738,
+ "shortestRoundTripNano": 49183452,
+ "longestRoundTripNano": 163382856,
+ "averageApexExecutionNano": 45743997,
+ "shortestApexExecutionNano": 5344918,
+ "longestApexExecutionNano": 100710807
+ },
+ {
+ "batchNumber": 1407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121026553,
+ "shortestRoundTripNano": 38064832,
+ "longestRoundTripNano": 147530194,
+ "averageApexExecutionNano": 42099893,
+ "shortestApexExecutionNano": 5331837,
+ "longestApexExecutionNano": 103179839
+ },
+ {
+ "batchNumber": 1408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167833081,
+ "shortestRoundTripNano": 93145019,
+ "longestRoundTripNano": 197974325,
+ "averageApexExecutionNano": 86352911,
+ "shortestApexExecutionNano": 15147767,
+ "longestApexExecutionNano": 141131415
+ },
+ {
+ "batchNumber": 1409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150108123,
+ "shortestRoundTripNano": 72365955,
+ "longestRoundTripNano": 179665663,
+ "averageApexExecutionNano": 71351578,
+ "shortestApexExecutionNano": 10850005,
+ "longestApexExecutionNano": 121232174
+ },
+ {
+ "batchNumber": 1410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138159222,
+ "shortestRoundTripNano": 49800908,
+ "longestRoundTripNano": 164214683,
+ "averageApexExecutionNano": 41769556,
+ "shortestApexExecutionNano": 7164964,
+ "longestApexExecutionNano": 116847512
+ },
+ {
+ "batchNumber": 1411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127555369,
+ "shortestRoundTripNano": 58461509,
+ "longestRoundTripNano": 163893591,
+ "averageApexExecutionNano": 61016785,
+ "shortestApexExecutionNano": 10671932,
+ "longestApexExecutionNano": 123187506
+ },
+ {
+ "batchNumber": 1412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157829807,
+ "shortestRoundTripNano": 36591273,
+ "longestRoundTripNano": 188996572,
+ "averageApexExecutionNano": 67244325,
+ "shortestApexExecutionNano": 6674971,
+ "longestApexExecutionNano": 130105854
+ },
+ {
+ "batchNumber": 1413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130970803,
+ "shortestRoundTripNano": 57158601,
+ "longestRoundTripNano": 159573462,
+ "averageApexExecutionNano": 51012686,
+ "shortestApexExecutionNano": 7305632,
+ "longestApexExecutionNano": 103638917
+ },
+ {
+ "batchNumber": 1414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166234781,
+ "shortestRoundTripNano": 42224289,
+ "longestRoundTripNano": 203949355,
+ "averageApexExecutionNano": 65237566,
+ "shortestApexExecutionNano": 5493692,
+ "longestApexExecutionNano": 145836181
+ },
+ {
+ "batchNumber": 1415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129723601,
+ "shortestRoundTripNano": 69235997,
+ "longestRoundTripNano": 163701508,
+ "averageApexExecutionNano": 56545447,
+ "shortestApexExecutionNano": 8793573,
+ "longestApexExecutionNano": 97626681
+ },
+ {
+ "batchNumber": 1416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133085349,
+ "shortestRoundTripNano": 43687096,
+ "longestRoundTripNano": 165882887,
+ "averageApexExecutionNano": 66141210,
+ "shortestApexExecutionNano": 16513570,
+ "longestApexExecutionNano": 124615304
+ },
+ {
+ "batchNumber": 1417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147007946,
+ "shortestRoundTripNano": 25404307,
+ "longestRoundTripNano": 188128727,
+ "averageApexExecutionNano": 49428242,
+ "shortestApexExecutionNano": 7594063,
+ "longestApexExecutionNano": 147573746
+ },
+ {
+ "batchNumber": 1418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168800825,
+ "shortestRoundTripNano": 57706776,
+ "longestRoundTripNano": 202209747,
+ "averageApexExecutionNano": 70977222,
+ "shortestApexExecutionNano": 11018975,
+ "longestApexExecutionNano": 134885977
+ },
+ {
+ "batchNumber": 1419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139312691,
+ "shortestRoundTripNano": 58599456,
+ "longestRoundTripNano": 171091948,
+ "averageApexExecutionNano": 53655492,
+ "shortestApexExecutionNano": 6918913,
+ "longestApexExecutionNano": 128599627
+ },
+ {
+ "batchNumber": 1420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135004044,
+ "shortestRoundTripNano": 64082363,
+ "longestRoundTripNano": 169852327,
+ "averageApexExecutionNano": 54480326,
+ "shortestApexExecutionNano": 12718432,
+ "longestApexExecutionNano": 102431482
+ },
+ {
+ "batchNumber": 1421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140770374,
+ "shortestRoundTripNano": 67674161,
+ "longestRoundTripNano": 178714904,
+ "averageApexExecutionNano": 46632420,
+ "shortestApexExecutionNano": 7460360,
+ "longestApexExecutionNano": 128754481
+ },
+ {
+ "batchNumber": 1422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152647593,
+ "shortestRoundTripNano": 54168283,
+ "longestRoundTripNano": 188902701,
+ "averageApexExecutionNano": 65065463,
+ "shortestApexExecutionNano": 8507276,
+ "longestApexExecutionNano": 127748090
+ },
+ {
+ "batchNumber": 1423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154841769,
+ "shortestRoundTripNano": 79363158,
+ "longestRoundTripNano": 187319375,
+ "averageApexExecutionNano": 59842963,
+ "shortestApexExecutionNano": 8402882,
+ "longestApexExecutionNano": 118449815
+ },
+ {
+ "batchNumber": 1424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159284659,
+ "shortestRoundTripNano": 78708829,
+ "longestRoundTripNano": 182651535,
+ "averageApexExecutionNano": 66105864,
+ "shortestApexExecutionNano": 8012010,
+ "longestApexExecutionNano": 137295288
+ },
+ {
+ "batchNumber": 1425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 328629204,
+ "shortestRoundTripNano": 205713122,
+ "longestRoundTripNano": 359703956,
+ "averageApexExecutionNano": 152698961,
+ "shortestApexExecutionNano": 7639613,
+ "longestApexExecutionNano": 312462097
+ },
+ {
+ "batchNumber": 1426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150379719,
+ "shortestRoundTripNano": 58866466,
+ "longestRoundTripNano": 181041065,
+ "averageApexExecutionNano": 60420433,
+ "shortestApexExecutionNano": 14955921,
+ "longestApexExecutionNano": 126301268
+ },
+ {
+ "batchNumber": 1427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177753810,
+ "shortestRoundTripNano": 129287189,
+ "longestRoundTripNano": 203553882,
+ "averageApexExecutionNano": 71796948,
+ "shortestApexExecutionNano": 19173473,
+ "longestApexExecutionNano": 132923869
+ },
+ {
+ "batchNumber": 1428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145816010,
+ "shortestRoundTripNano": 58963932,
+ "longestRoundTripNano": 201751849,
+ "averageApexExecutionNano": 50718452,
+ "shortestApexExecutionNano": 6035390,
+ "longestApexExecutionNano": 108677580
+ },
+ {
+ "batchNumber": 1429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 251047376,
+ "shortestRoundTripNano": 114078501,
+ "longestRoundTripNano": 308732788,
+ "averageApexExecutionNano": 120663904,
+ "shortestApexExecutionNano": 13149595,
+ "longestApexExecutionNano": 211354777
+ },
+ {
+ "batchNumber": 1430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149625518,
+ "shortestRoundTripNano": 42376598,
+ "longestRoundTripNano": 185585007,
+ "averageApexExecutionNano": 73592160,
+ "shortestApexExecutionNano": 10572565,
+ "longestApexExecutionNano": 155028471
+ },
+ {
+ "batchNumber": 1431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143077599,
+ "shortestRoundTripNano": 69142124,
+ "longestRoundTripNano": 171909357,
+ "averageApexExecutionNano": 53277931,
+ "shortestApexExecutionNano": 7329562,
+ "longestApexExecutionNano": 120395825
+ },
+ {
+ "batchNumber": 1432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145066793,
+ "shortestRoundTripNano": 42829194,
+ "longestRoundTripNano": 178755420,
+ "averageApexExecutionNano": 64834276,
+ "shortestApexExecutionNano": 11324738,
+ "longestApexExecutionNano": 127756572
+ },
+ {
+ "batchNumber": 1433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151327370,
+ "shortestRoundTripNano": 69725371,
+ "longestRoundTripNano": 174107802,
+ "averageApexExecutionNano": 65230654,
+ "shortestApexExecutionNano": 12936257,
+ "longestApexExecutionNano": 119477300
+ },
+ {
+ "batchNumber": 1434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149432760,
+ "shortestRoundTripNano": 62676938,
+ "longestRoundTripNano": 180578675,
+ "averageApexExecutionNano": 60571801,
+ "shortestApexExecutionNano": 10486879,
+ "longestApexExecutionNano": 117037474
+ },
+ {
+ "batchNumber": 1435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133446731,
+ "shortestRoundTripNano": 45859150,
+ "longestRoundTripNano": 160430502,
+ "averageApexExecutionNano": 56334748,
+ "shortestApexExecutionNano": 8388077,
+ "longestApexExecutionNano": 107971893
+ },
+ {
+ "batchNumber": 1436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126825482,
+ "shortestRoundTripNano": 61306151,
+ "longestRoundTripNano": 154476489,
+ "averageApexExecutionNano": 57820071,
+ "shortestApexExecutionNano": 6314811,
+ "longestApexExecutionNano": 120738226
+ },
+ {
+ "batchNumber": 1437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139396650,
+ "shortestRoundTripNano": 62063022,
+ "longestRoundTripNano": 170368367,
+ "averageApexExecutionNano": 59809887,
+ "shortestApexExecutionNano": 6398886,
+ "longestApexExecutionNano": 120734303
+ },
+ {
+ "batchNumber": 1438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159744283,
+ "shortestRoundTripNano": 74066543,
+ "longestRoundTripNano": 192284154,
+ "averageApexExecutionNano": 62751201,
+ "shortestApexExecutionNano": 13798273,
+ "longestApexExecutionNano": 122715619
+ },
+ {
+ "batchNumber": 1439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154012322,
+ "shortestRoundTripNano": 72800567,
+ "longestRoundTripNano": 185808297,
+ "averageApexExecutionNano": 64925656,
+ "shortestApexExecutionNano": 12666589,
+ "longestApexExecutionNano": 126357006
+ },
+ {
+ "batchNumber": 1440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144529905,
+ "shortestRoundTripNano": 65228618,
+ "longestRoundTripNano": 169995335,
+ "averageApexExecutionNano": 60445228,
+ "shortestApexExecutionNano": 7427929,
+ "longestApexExecutionNano": 122473611
+ },
+ {
+ "batchNumber": 1441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134299728,
+ "shortestRoundTripNano": 59478955,
+ "longestRoundTripNano": 164456960,
+ "averageApexExecutionNano": 53704952,
+ "shortestApexExecutionNano": 5229880,
+ "longestApexExecutionNano": 103812041
+ },
+ {
+ "batchNumber": 1442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148215922,
+ "shortestRoundTripNano": 61457981,
+ "longestRoundTripNano": 174336570,
+ "averageApexExecutionNano": 55935970,
+ "shortestApexExecutionNano": 11989008,
+ "longestApexExecutionNano": 109144571
+ },
+ {
+ "batchNumber": 1443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136962165,
+ "shortestRoundTripNano": 57499742,
+ "longestRoundTripNano": 165690823,
+ "averageApexExecutionNano": 64501144,
+ "shortestApexExecutionNano": 18219104,
+ "longestApexExecutionNano": 100192068
+ },
+ {
+ "batchNumber": 1444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146625704,
+ "shortestRoundTripNano": 55297970,
+ "longestRoundTripNano": 179148031,
+ "averageApexExecutionNano": 62146789,
+ "shortestApexExecutionNano": 9610728,
+ "longestApexExecutionNano": 121866375
+ },
+ {
+ "batchNumber": 1445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134522570,
+ "shortestRoundTripNano": 44279432,
+ "longestRoundTripNano": 164364283,
+ "averageApexExecutionNano": 53621489,
+ "shortestApexExecutionNano": 8678980,
+ "longestApexExecutionNano": 106284388
+ },
+ {
+ "batchNumber": 1446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169379486,
+ "shortestRoundTripNano": 54583815,
+ "longestRoundTripNano": 206462980,
+ "averageApexExecutionNano": 73413580,
+ "shortestApexExecutionNano": 10355953,
+ "longestApexExecutionNano": 141706292
+ },
+ {
+ "batchNumber": 1447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143096430,
+ "shortestRoundTripNano": 47975076,
+ "longestRoundTripNano": 181439057,
+ "averageApexExecutionNano": 66388624,
+ "shortestApexExecutionNano": 9310331,
+ "longestApexExecutionNano": 116706612
+ },
+ {
+ "batchNumber": 1448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128947546,
+ "shortestRoundTripNano": 56759492,
+ "longestRoundTripNano": 158022747,
+ "averageApexExecutionNano": 52092540,
+ "shortestApexExecutionNano": 7626050,
+ "longestApexExecutionNano": 111554454
+ },
+ {
+ "batchNumber": 1449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141129794,
+ "shortestRoundTripNano": 71540894,
+ "longestRoundTripNano": 164945080,
+ "averageApexExecutionNano": 45313650,
+ "shortestApexExecutionNano": 5463251,
+ "longestApexExecutionNano": 101091638
+ },
+ {
+ "batchNumber": 1450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136142691,
+ "shortestRoundTripNano": 73677831,
+ "longestRoundTripNano": 171568930,
+ "averageApexExecutionNano": 61615588,
+ "shortestApexExecutionNano": 8210628,
+ "longestApexExecutionNano": 112834765
+ },
+ {
+ "batchNumber": 1451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150809504,
+ "shortestRoundTripNano": 78477757,
+ "longestRoundTripNano": 176107796,
+ "averageApexExecutionNano": 77141065,
+ "shortestApexExecutionNano": 21156105,
+ "longestApexExecutionNano": 115161565
+ },
+ {
+ "batchNumber": 1452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138544088,
+ "shortestRoundTripNano": 55176762,
+ "longestRoundTripNano": 169785524,
+ "averageApexExecutionNano": 51154150,
+ "shortestApexExecutionNano": 6680752,
+ "longestApexExecutionNano": 111426929
+ },
+ {
+ "batchNumber": 1453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160889105,
+ "shortestRoundTripNano": 47329959,
+ "longestRoundTripNano": 191377308,
+ "averageApexExecutionNano": 58159289,
+ "shortestApexExecutionNano": 10015448,
+ "longestApexExecutionNano": 139041200
+ },
+ {
+ "batchNumber": 1454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125360367,
+ "shortestRoundTripNano": 57724471,
+ "longestRoundTripNano": 152001913,
+ "averageApexExecutionNano": 59576008,
+ "shortestApexExecutionNano": 11639820,
+ "longestApexExecutionNano": 103422071
+ },
+ {
+ "batchNumber": 1455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135116653,
+ "shortestRoundTripNano": 56149352,
+ "longestRoundTripNano": 164687307,
+ "averageApexExecutionNano": 47633721,
+ "shortestApexExecutionNano": 7996717,
+ "longestApexExecutionNano": 116922411
+ },
+ {
+ "batchNumber": 1456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170761592,
+ "shortestRoundTripNano": 46332171,
+ "longestRoundTripNano": 207635051,
+ "averageApexExecutionNano": 70403524,
+ "shortestApexExecutionNano": 6926552,
+ "longestApexExecutionNano": 144139241
+ },
+ {
+ "batchNumber": 1457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133691405,
+ "shortestRoundTripNano": 70895779,
+ "longestRoundTripNano": 163866979,
+ "averageApexExecutionNano": 56668124,
+ "shortestApexExecutionNano": 9689997,
+ "longestApexExecutionNano": 119694804
+ },
+ {
+ "batchNumber": 1458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162217080,
+ "shortestRoundTripNano": 86313910,
+ "longestRoundTripNano": 195517326,
+ "averageApexExecutionNano": 63308044,
+ "shortestApexExecutionNano": 11059764,
+ "longestApexExecutionNano": 127944198
+ },
+ {
+ "batchNumber": 1459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148756323,
+ "shortestRoundTripNano": 67413309,
+ "longestRoundTripNano": 175938178,
+ "averageApexExecutionNano": 73213557,
+ "shortestApexExecutionNano": 8609592,
+ "longestApexExecutionNano": 118444450
+ },
+ {
+ "batchNumber": 1460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120429461,
+ "shortestRoundTripNano": 46882127,
+ "longestRoundTripNano": 150010147,
+ "averageApexExecutionNano": 47505814,
+ "shortestApexExecutionNano": 5715982,
+ "longestApexExecutionNano": 102959627
+ },
+ {
+ "batchNumber": 1461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127198351,
+ "shortestRoundTripNano": 53082343,
+ "longestRoundTripNano": 155383602,
+ "averageApexExecutionNano": 54970261,
+ "shortestApexExecutionNano": 5455053,
+ "longestApexExecutionNano": 102044444
+ },
+ {
+ "batchNumber": 1462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131693982,
+ "shortestRoundTripNano": 50154049,
+ "longestRoundTripNano": 161249767,
+ "averageApexExecutionNano": 55244630,
+ "shortestApexExecutionNano": 6115389,
+ "longestApexExecutionNano": 107915833
+ },
+ {
+ "batchNumber": 1463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141621193,
+ "shortestRoundTripNano": 60475693,
+ "longestRoundTripNano": 175109425,
+ "averageApexExecutionNano": 51300397,
+ "shortestApexExecutionNano": 10143318,
+ "longestApexExecutionNano": 104259072
+ },
+ {
+ "batchNumber": 1464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131531917,
+ "shortestRoundTripNano": 47076023,
+ "longestRoundTripNano": 161244666,
+ "averageApexExecutionNano": 41360034,
+ "shortestApexExecutionNano": 6481140,
+ "longestApexExecutionNano": 100128427
+ },
+ {
+ "batchNumber": 1465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150702597,
+ "shortestRoundTripNano": 69893564,
+ "longestRoundTripNano": 181226816,
+ "averageApexExecutionNano": 71698701,
+ "shortestApexExecutionNano": 7162089,
+ "longestApexExecutionNano": 135129673
+ },
+ {
+ "batchNumber": 1466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139382818,
+ "shortestRoundTripNano": 61304265,
+ "longestRoundTripNano": 169733292,
+ "averageApexExecutionNano": 59357927,
+ "shortestApexExecutionNano": 12359662,
+ "longestApexExecutionNano": 117744289
+ },
+ {
+ "batchNumber": 1467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128523675,
+ "shortestRoundTripNano": 65606702,
+ "longestRoundTripNano": 156916083,
+ "averageApexExecutionNano": 44359392,
+ "shortestApexExecutionNano": 6274571,
+ "longestApexExecutionNano": 90152680
+ },
+ {
+ "batchNumber": 1468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152967184,
+ "shortestRoundTripNano": 69109393,
+ "longestRoundTripNano": 177433215,
+ "averageApexExecutionNano": 65243118,
+ "shortestApexExecutionNano": 10751716,
+ "longestApexExecutionNano": 118898957
+ },
+ {
+ "batchNumber": 1469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147266511,
+ "shortestRoundTripNano": 58501891,
+ "longestRoundTripNano": 178588231,
+ "averageApexExecutionNano": 65759616,
+ "shortestApexExecutionNano": 11815960,
+ "longestApexExecutionNano": 125658310
+ },
+ {
+ "batchNumber": 1470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125836870,
+ "shortestRoundTripNano": 48897426,
+ "longestRoundTripNano": 162313115,
+ "averageApexExecutionNano": 49862148,
+ "shortestApexExecutionNano": 7027654,
+ "longestApexExecutionNano": 107526655
+ },
+ {
+ "batchNumber": 1471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136596467,
+ "shortestRoundTripNano": 67360208,
+ "longestRoundTripNano": 161855687,
+ "averageApexExecutionNano": 50353881,
+ "shortestApexExecutionNano": 7769193,
+ "longestApexExecutionNano": 109306446
+ },
+ {
+ "batchNumber": 1472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136308948,
+ "shortestRoundTripNano": 70914951,
+ "longestRoundTripNano": 162557879,
+ "averageApexExecutionNano": 57764879,
+ "shortestApexExecutionNano": 15854780,
+ "longestApexExecutionNano": 109206024
+ },
+ {
+ "batchNumber": 1473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163454028,
+ "shortestRoundTripNano": 88283267,
+ "longestRoundTripNano": 192706258,
+ "averageApexExecutionNano": 55883246,
+ "shortestApexExecutionNano": 13205841,
+ "longestApexExecutionNano": 125344752
+ },
+ {
+ "batchNumber": 1474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128423660,
+ "shortestRoundTripNano": 54313318,
+ "longestRoundTripNano": 161358551,
+ "averageApexExecutionNano": 40013849,
+ "shortestApexExecutionNano": 6694653,
+ "longestApexExecutionNano": 108969659
+ },
+ {
+ "batchNumber": 1475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149728352,
+ "shortestRoundTripNano": 54036314,
+ "longestRoundTripNano": 189640155,
+ "averageApexExecutionNano": 54810700,
+ "shortestApexExecutionNano": 13288277,
+ "longestApexExecutionNano": 130143242
+ },
+ {
+ "batchNumber": 1476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131017054,
+ "shortestRoundTripNano": 58710349,
+ "longestRoundTripNano": 158758281,
+ "averageApexExecutionNano": 67308331,
+ "shortestApexExecutionNano": 7034795,
+ "longestApexExecutionNano": 116962268
+ },
+ {
+ "batchNumber": 1477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140029068,
+ "shortestRoundTripNano": 94957307,
+ "longestRoundTripNano": 160559646,
+ "averageApexExecutionNano": 57284577,
+ "shortestApexExecutionNano": 10979595,
+ "longestApexExecutionNano": 107029876
+ },
+ {
+ "batchNumber": 1478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144587651,
+ "shortestRoundTripNano": 42300251,
+ "longestRoundTripNano": 171193048,
+ "averageApexExecutionNano": 55951758,
+ "shortestApexExecutionNano": 6326835,
+ "longestApexExecutionNano": 110686268
+ },
+ {
+ "batchNumber": 1479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143978138,
+ "shortestRoundTripNano": 68637253,
+ "longestRoundTripNano": 169015885,
+ "averageApexExecutionNano": 67238420,
+ "shortestApexExecutionNano": 8716548,
+ "longestApexExecutionNano": 111090258
+ },
+ {
+ "batchNumber": 1480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158535961,
+ "shortestRoundTripNano": 59123030,
+ "longestRoundTripNano": 195857605,
+ "averageApexExecutionNano": 70330087,
+ "shortestApexExecutionNano": 7666718,
+ "longestApexExecutionNano": 135829358
+ },
+ {
+ "batchNumber": 1481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131540695,
+ "shortestRoundTripNano": 34207254,
+ "longestRoundTripNano": 161365600,
+ "averageApexExecutionNano": 58572560,
+ "shortestApexExecutionNano": 5454938,
+ "longestApexExecutionNano": 112219359
+ },
+ {
+ "batchNumber": 1482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160927595,
+ "shortestRoundTripNano": 85143786,
+ "longestRoundTripNano": 189511195,
+ "averageApexExecutionNano": 83158182,
+ "shortestApexExecutionNano": 16665992,
+ "longestApexExecutionNano": 128914020
+ },
+ {
+ "batchNumber": 1483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150268538,
+ "shortestRoundTripNano": 53403868,
+ "longestRoundTripNano": 178246277,
+ "averageApexExecutionNano": 49365339,
+ "shortestApexExecutionNano": 9001744,
+ "longestApexExecutionNano": 110145281
+ },
+ {
+ "batchNumber": 1484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137127367,
+ "shortestRoundTripNano": 55393849,
+ "longestRoundTripNano": 165741107,
+ "averageApexExecutionNano": 58924213,
+ "shortestApexExecutionNano": 10596487,
+ "longestApexExecutionNano": 103761888
+ },
+ {
+ "batchNumber": 1485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146219432,
+ "shortestRoundTripNano": 69828475,
+ "longestRoundTripNano": 179609899,
+ "averageApexExecutionNano": 52194257,
+ "shortestApexExecutionNano": 9477931,
+ "longestApexExecutionNano": 123342480
+ },
+ {
+ "batchNumber": 1486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135782004,
+ "shortestRoundTripNano": 71512832,
+ "longestRoundTripNano": 162070107,
+ "averageApexExecutionNano": 56598780,
+ "shortestApexExecutionNano": 6762828,
+ "longestApexExecutionNano": 109331057
+ },
+ {
+ "batchNumber": 1487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155402650,
+ "shortestRoundTripNano": 62344658,
+ "longestRoundTripNano": 191651536,
+ "averageApexExecutionNano": 80754596,
+ "shortestApexExecutionNano": 6234053,
+ "longestApexExecutionNano": 147163941
+ },
+ {
+ "batchNumber": 1488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133238502,
+ "shortestRoundTripNano": 56004407,
+ "longestRoundTripNano": 159250863,
+ "averageApexExecutionNano": 57208325,
+ "shortestApexExecutionNano": 7099650,
+ "longestApexExecutionNano": 112122499
+ },
+ {
+ "batchNumber": 1489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132922477,
+ "shortestRoundTripNano": 57343301,
+ "longestRoundTripNano": 170651867,
+ "averageApexExecutionNano": 48089563,
+ "shortestApexExecutionNano": 5711130,
+ "longestApexExecutionNano": 114460267
+ },
+ {
+ "batchNumber": 1490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154747246,
+ "shortestRoundTripNano": 93757936,
+ "longestRoundTripNano": 186158853,
+ "averageApexExecutionNano": 72644851,
+ "shortestApexExecutionNano": 9942865,
+ "longestApexExecutionNano": 124144067
+ },
+ {
+ "batchNumber": 1491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134147717,
+ "shortestRoundTripNano": 48647313,
+ "longestRoundTripNano": 164894923,
+ "averageApexExecutionNano": 60766163,
+ "shortestApexExecutionNano": 9524609,
+ "longestApexExecutionNano": 113745521
+ },
+ {
+ "batchNumber": 1492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137656020,
+ "shortestRoundTripNano": 43279345,
+ "longestRoundTripNano": 174838311,
+ "averageApexExecutionNano": 64426633,
+ "shortestApexExecutionNano": 9353764,
+ "longestApexExecutionNano": 131328350
+ },
+ {
+ "batchNumber": 1493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131808166,
+ "shortestRoundTripNano": 67783197,
+ "longestRoundTripNano": 162690046,
+ "averageApexExecutionNano": 46956359,
+ "shortestApexExecutionNano": 7506810,
+ "longestApexExecutionNano": 100249016
+ },
+ {
+ "batchNumber": 1494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176551338,
+ "shortestRoundTripNano": 92074000,
+ "longestRoundTripNano": 224125899,
+ "averageApexExecutionNano": 85074486,
+ "shortestApexExecutionNano": 10984606,
+ "longestApexExecutionNano": 146118505
+ },
+ {
+ "batchNumber": 1495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150549978,
+ "shortestRoundTripNano": 74515404,
+ "longestRoundTripNano": 174989323,
+ "averageApexExecutionNano": 59603788,
+ "shortestApexExecutionNano": 10012915,
+ "longestApexExecutionNano": 117404578
+ },
+ {
+ "batchNumber": 1496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165380797,
+ "shortestRoundTripNano": 64407835,
+ "longestRoundTripNano": 195668774,
+ "averageApexExecutionNano": 74180012,
+ "shortestApexExecutionNano": 13145591,
+ "longestApexExecutionNano": 143791081
+ },
+ {
+ "batchNumber": 1497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147161604,
+ "shortestRoundTripNano": 58384862,
+ "longestRoundTripNano": 187349583,
+ "averageApexExecutionNano": 66689843,
+ "shortestApexExecutionNano": 10554913,
+ "longestApexExecutionNano": 142934225
+ },
+ {
+ "batchNumber": 1498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184798014,
+ "shortestRoundTripNano": 63212247,
+ "longestRoundTripNano": 228372687,
+ "averageApexExecutionNano": 83528858,
+ "shortestApexExecutionNano": 6413098,
+ "longestApexExecutionNano": 165614127
+ },
+ {
+ "batchNumber": 1499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149340182,
+ "shortestRoundTripNano": 75469091,
+ "longestRoundTripNano": 179906474,
+ "averageApexExecutionNano": 53483654,
+ "shortestApexExecutionNano": 8541625,
+ "longestApexExecutionNano": 133266312
+ },
+ {
+ "batchNumber": 1500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145096150,
+ "shortestRoundTripNano": 55403363,
+ "longestRoundTripNano": 176561206,
+ "averageApexExecutionNano": 70258917,
+ "shortestApexExecutionNano": 13447111,
+ "longestApexExecutionNano": 139623436
+ },
+ {
+ "batchNumber": 1501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154093574,
+ "shortestRoundTripNano": 53272959,
+ "longestRoundTripNano": 204108617,
+ "averageApexExecutionNano": 58131106,
+ "shortestApexExecutionNano": 7413938,
+ "longestApexExecutionNano": 110744267
+ },
+ {
+ "batchNumber": 1502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136776402,
+ "shortestRoundTripNano": 57502979,
+ "longestRoundTripNano": 169476009,
+ "averageApexExecutionNano": 49930809,
+ "shortestApexExecutionNano": 7731366,
+ "longestApexExecutionNano": 116390459
+ },
+ {
+ "batchNumber": 1503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140005913,
+ "shortestRoundTripNano": 32615481,
+ "longestRoundTripNano": 170344808,
+ "averageApexExecutionNano": 51712039,
+ "shortestApexExecutionNano": 4745483,
+ "longestApexExecutionNano": 109926271
+ },
+ {
+ "batchNumber": 1504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162136639,
+ "shortestRoundTripNano": 36916962,
+ "longestRoundTripNano": 191084125,
+ "averageApexExecutionNano": 71977422,
+ "shortestApexExecutionNano": 10404902,
+ "longestApexExecutionNano": 136239827
+ },
+ {
+ "batchNumber": 1505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160109869,
+ "shortestRoundTripNano": 49997814,
+ "longestRoundTripNano": 187781793,
+ "averageApexExecutionNano": 51381085,
+ "shortestApexExecutionNano": 7808650,
+ "longestApexExecutionNano": 119328725
+ },
+ {
+ "batchNumber": 1506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150184648,
+ "shortestRoundTripNano": 57375131,
+ "longestRoundTripNano": 184255920,
+ "averageApexExecutionNano": 68062764,
+ "shortestApexExecutionNano": 7755647,
+ "longestApexExecutionNano": 146096157
+ },
+ {
+ "batchNumber": 1507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146971322,
+ "shortestRoundTripNano": 69828053,
+ "longestRoundTripNano": 173813152,
+ "averageApexExecutionNano": 71702537,
+ "shortestApexExecutionNano": 7038497,
+ "longestApexExecutionNano": 137738078
+ },
+ {
+ "batchNumber": 1508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158827580,
+ "shortestRoundTripNano": 41643859,
+ "longestRoundTripNano": 215921492,
+ "averageApexExecutionNano": 56195441,
+ "shortestApexExecutionNano": 9146545,
+ "longestApexExecutionNano": 136963408
+ },
+ {
+ "batchNumber": 1509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153459396,
+ "shortestRoundTripNano": 52893384,
+ "longestRoundTripNano": 181454742,
+ "averageApexExecutionNano": 66002132,
+ "shortestApexExecutionNano": 8431932,
+ "longestApexExecutionNano": 139048381
+ },
+ {
+ "batchNumber": 1510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143840158,
+ "shortestRoundTripNano": 67676676,
+ "longestRoundTripNano": 171437436,
+ "averageApexExecutionNano": 62365580,
+ "shortestApexExecutionNano": 6284761,
+ "longestApexExecutionNano": 115855176
+ },
+ {
+ "batchNumber": 1511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164740392,
+ "shortestRoundTripNano": 65357764,
+ "longestRoundTripNano": 193933599,
+ "averageApexExecutionNano": 45566834,
+ "shortestApexExecutionNano": 6909098,
+ "longestApexExecutionNano": 130438560
+ },
+ {
+ "batchNumber": 1512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160342142,
+ "shortestRoundTripNano": 48883339,
+ "longestRoundTripNano": 190383601,
+ "averageApexExecutionNano": 59058562,
+ "shortestApexExecutionNano": 8178719,
+ "longestApexExecutionNano": 128610337
+ },
+ {
+ "batchNumber": 1513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160450099,
+ "shortestRoundTripNano": 66047261,
+ "longestRoundTripNano": 188917492,
+ "averageApexExecutionNano": 82104846,
+ "shortestApexExecutionNano": 9446290,
+ "longestApexExecutionNano": 134602758
+ },
+ {
+ "batchNumber": 1514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148730901,
+ "shortestRoundTripNano": 56114556,
+ "longestRoundTripNano": 180735244,
+ "averageApexExecutionNano": 51694559,
+ "shortestApexExecutionNano": 7830737,
+ "longestApexExecutionNano": 119967871
+ },
+ {
+ "batchNumber": 1515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140797352,
+ "shortestRoundTripNano": 59391923,
+ "longestRoundTripNano": 176614561,
+ "averageApexExecutionNano": 68323356,
+ "shortestApexExecutionNano": 9934977,
+ "longestApexExecutionNano": 124502209
+ },
+ {
+ "batchNumber": 1516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154995424,
+ "shortestRoundTripNano": 76614061,
+ "longestRoundTripNano": 189158927,
+ "averageApexExecutionNano": 48708142,
+ "shortestApexExecutionNano": 10667947,
+ "longestApexExecutionNano": 95674176
+ },
+ {
+ "batchNumber": 1517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141631395,
+ "shortestRoundTripNano": 66910933,
+ "longestRoundTripNano": 173187194,
+ "averageApexExecutionNano": 70558171,
+ "shortestApexExecutionNano": 13761295,
+ "longestApexExecutionNano": 118245328
+ },
+ {
+ "batchNumber": 1518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136922516,
+ "shortestRoundTripNano": 49307428,
+ "longestRoundTripNano": 168170615,
+ "averageApexExecutionNano": 60536093,
+ "shortestApexExecutionNano": 6901288,
+ "longestApexExecutionNano": 111257270
+ },
+ {
+ "batchNumber": 1519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156185074,
+ "shortestRoundTripNano": 86270135,
+ "longestRoundTripNano": 182364635,
+ "averageApexExecutionNano": 62850853,
+ "shortestApexExecutionNano": 16499745,
+ "longestApexExecutionNano": 119138875
+ },
+ {
+ "batchNumber": 1520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160787949,
+ "shortestRoundTripNano": 59336364,
+ "longestRoundTripNano": 203942393,
+ "averageApexExecutionNano": 74398285,
+ "shortestApexExecutionNano": 8600956,
+ "longestApexExecutionNano": 158305286
+ },
+ {
+ "batchNumber": 1521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131369436,
+ "shortestRoundTripNano": 64974902,
+ "longestRoundTripNano": 162263702,
+ "averageApexExecutionNano": 65237393,
+ "shortestApexExecutionNano": 7240877,
+ "longestApexExecutionNano": 124527915
+ },
+ {
+ "batchNumber": 1522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149611989,
+ "shortestRoundTripNano": 62138611,
+ "longestRoundTripNano": 188521958,
+ "averageApexExecutionNano": 58267054,
+ "shortestApexExecutionNano": 8668992,
+ "longestApexExecutionNano": 135837319
+ },
+ {
+ "batchNumber": 1523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141570360,
+ "shortestRoundTripNano": 45807941,
+ "longestRoundTripNano": 175279144,
+ "averageApexExecutionNano": 49926843,
+ "shortestApexExecutionNano": 9017316,
+ "longestApexExecutionNano": 111129673
+ },
+ {
+ "batchNumber": 1524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147220963,
+ "shortestRoundTripNano": 84600221,
+ "longestRoundTripNano": 173135041,
+ "averageApexExecutionNano": 52064912,
+ "shortestApexExecutionNano": 5465012,
+ "longestApexExecutionNano": 126539482
+ },
+ {
+ "batchNumber": 1525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158309951,
+ "shortestRoundTripNano": 81115511,
+ "longestRoundTripNano": 191850793,
+ "averageApexExecutionNano": 61191166,
+ "shortestApexExecutionNano": 8083603,
+ "longestApexExecutionNano": 132269085
+ },
+ {
+ "batchNumber": 1526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171919344,
+ "shortestRoundTripNano": 99621972,
+ "longestRoundTripNano": 199435897,
+ "averageApexExecutionNano": 60246644,
+ "shortestApexExecutionNano": 9249581,
+ "longestApexExecutionNano": 118485825
+ },
+ {
+ "batchNumber": 1527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158108125,
+ "shortestRoundTripNano": 72987494,
+ "longestRoundTripNano": 184147228,
+ "averageApexExecutionNano": 77405873,
+ "shortestApexExecutionNano": 12007441,
+ "longestApexExecutionNano": 144161665
+ },
+ {
+ "batchNumber": 1528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142889803,
+ "shortestRoundTripNano": 55793132,
+ "longestRoundTripNano": 210413804,
+ "averageApexExecutionNano": 53921764,
+ "shortestApexExecutionNano": 6565513,
+ "longestApexExecutionNano": 109823892
+ },
+ {
+ "batchNumber": 1529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164410471,
+ "shortestRoundTripNano": 75277552,
+ "longestRoundTripNano": 195333384,
+ "averageApexExecutionNano": 68723122,
+ "shortestApexExecutionNano": 5749728,
+ "longestApexExecutionNano": 117103713
+ },
+ {
+ "batchNumber": 1530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163038716,
+ "shortestRoundTripNano": 59052613,
+ "longestRoundTripNano": 200710316,
+ "averageApexExecutionNano": 51855935,
+ "shortestApexExecutionNano": 6233867,
+ "longestApexExecutionNano": 114528319
+ },
+ {
+ "batchNumber": 1531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150533875,
+ "shortestRoundTripNano": 70170206,
+ "longestRoundTripNano": 186265916,
+ "averageApexExecutionNano": 58765766,
+ "shortestApexExecutionNano": 8366975,
+ "longestApexExecutionNano": 121086290
+ },
+ {
+ "batchNumber": 1532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149249527,
+ "shortestRoundTripNano": 54035438,
+ "longestRoundTripNano": 185145320,
+ "averageApexExecutionNano": 59949138,
+ "shortestApexExecutionNano": 8012058,
+ "longestApexExecutionNano": 129935199
+ },
+ {
+ "batchNumber": 1533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159290683,
+ "shortestRoundTripNano": 63391188,
+ "longestRoundTripNano": 186084762,
+ "averageApexExecutionNano": 60273275,
+ "shortestApexExecutionNano": 7002183,
+ "longestApexExecutionNano": 141976037
+ },
+ {
+ "batchNumber": 1534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139500191,
+ "shortestRoundTripNano": 61212113,
+ "longestRoundTripNano": 168179125,
+ "averageApexExecutionNano": 49195785,
+ "shortestApexExecutionNano": 7365545,
+ "longestApexExecutionNano": 112201911
+ },
+ {
+ "batchNumber": 1535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163436477,
+ "shortestRoundTripNano": 69204723,
+ "longestRoundTripNano": 200090898,
+ "averageApexExecutionNano": 61210637,
+ "shortestApexExecutionNano": 8871572,
+ "longestApexExecutionNano": 118280756
+ },
+ {
+ "batchNumber": 1536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147865043,
+ "shortestRoundTripNano": 49029518,
+ "longestRoundTripNano": 176903523,
+ "averageApexExecutionNano": 63664991,
+ "shortestApexExecutionNano": 9913555,
+ "longestApexExecutionNano": 115811837
+ },
+ {
+ "batchNumber": 1537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134683475,
+ "shortestRoundTripNano": 73690788,
+ "longestRoundTripNano": 161310209,
+ "averageApexExecutionNano": 62299816,
+ "shortestApexExecutionNano": 7556248,
+ "longestApexExecutionNano": 119887320
+ },
+ {
+ "batchNumber": 1538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157732642,
+ "shortestRoundTripNano": 67445257,
+ "longestRoundTripNano": 194185164,
+ "averageApexExecutionNano": 64397821,
+ "shortestApexExecutionNano": 8426295,
+ "longestApexExecutionNano": 120873470
+ },
+ {
+ "batchNumber": 1539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189770836,
+ "shortestRoundTripNano": 44848322,
+ "longestRoundTripNano": 228357306,
+ "averageApexExecutionNano": 89236611,
+ "shortestApexExecutionNano": 11435371,
+ "longestApexExecutionNano": 181315805
+ },
+ {
+ "batchNumber": 1540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150958003,
+ "shortestRoundTripNano": 68913162,
+ "longestRoundTripNano": 186036572,
+ "averageApexExecutionNano": 68060579,
+ "shortestApexExecutionNano": 4454426,
+ "longestApexExecutionNano": 120778008
+ },
+ {
+ "batchNumber": 1541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141490325,
+ "shortestRoundTripNano": 33913910,
+ "longestRoundTripNano": 171326508,
+ "averageApexExecutionNano": 66889872,
+ "shortestApexExecutionNano": 4925831,
+ "longestApexExecutionNano": 133335373
+ },
+ {
+ "batchNumber": 1542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140148156,
+ "shortestRoundTripNano": 59815686,
+ "longestRoundTripNano": 176279017,
+ "averageApexExecutionNano": 60551176,
+ "shortestApexExecutionNano": 9873632,
+ "longestApexExecutionNano": 113287736
+ },
+ {
+ "batchNumber": 1543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145817520,
+ "shortestRoundTripNano": 46829366,
+ "longestRoundTripNano": 176243296,
+ "averageApexExecutionNano": 64145896,
+ "shortestApexExecutionNano": 12859412,
+ "longestApexExecutionNano": 124435150
+ },
+ {
+ "batchNumber": 1544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139128036,
+ "shortestRoundTripNano": 60043269,
+ "longestRoundTripNano": 174863008,
+ "averageApexExecutionNano": 47497535,
+ "shortestApexExecutionNano": 7072663,
+ "longestApexExecutionNano": 106710801
+ },
+ {
+ "batchNumber": 1545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152012728,
+ "shortestRoundTripNano": 48396422,
+ "longestRoundTripNano": 180786060,
+ "averageApexExecutionNano": 65971653,
+ "shortestApexExecutionNano": 8552212,
+ "longestApexExecutionNano": 128268368
+ },
+ {
+ "batchNumber": 1546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141961892,
+ "shortestRoundTripNano": 63522912,
+ "longestRoundTripNano": 172593048,
+ "averageApexExecutionNano": 54909441,
+ "shortestApexExecutionNano": 9765417,
+ "longestApexExecutionNano": 129290319
+ },
+ {
+ "batchNumber": 1547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153005743,
+ "shortestRoundTripNano": 88884950,
+ "longestRoundTripNano": 181057059,
+ "averageApexExecutionNano": 73871509,
+ "shortestApexExecutionNano": 9929113,
+ "longestApexExecutionNano": 129801040
+ },
+ {
+ "batchNumber": 1548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174864954,
+ "shortestRoundTripNano": 81422409,
+ "longestRoundTripNano": 231336873,
+ "averageApexExecutionNano": 80671992,
+ "shortestApexExecutionNano": 12106346,
+ "longestApexExecutionNano": 146278880
+ },
+ {
+ "batchNumber": 1549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155000824,
+ "shortestRoundTripNano": 80599724,
+ "longestRoundTripNano": 179966588,
+ "averageApexExecutionNano": 55679695,
+ "shortestApexExecutionNano": 7495998,
+ "longestApexExecutionNano": 127798357
+ },
+ {
+ "batchNumber": 1550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158216365,
+ "shortestRoundTripNano": 91458388,
+ "longestRoundTripNano": 186096117,
+ "averageApexExecutionNano": 61749678,
+ "shortestApexExecutionNano": 7230327,
+ "longestApexExecutionNano": 124503044
+ },
+ {
+ "batchNumber": 1551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159040209,
+ "shortestRoundTripNano": 78518445,
+ "longestRoundTripNano": 186989435,
+ "averageApexExecutionNano": 61391103,
+ "shortestApexExecutionNano": 6991969,
+ "longestApexExecutionNano": 128826506
+ },
+ {
+ "batchNumber": 1552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141334402,
+ "shortestRoundTripNano": 65006373,
+ "longestRoundTripNano": 187158699,
+ "averageApexExecutionNano": 61771829,
+ "shortestApexExecutionNano": 7197312,
+ "longestApexExecutionNano": 109013730
+ },
+ {
+ "batchNumber": 1553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152497193,
+ "shortestRoundTripNano": 66691813,
+ "longestRoundTripNano": 188646203,
+ "averageApexExecutionNano": 57893208,
+ "shortestApexExecutionNano": 9415197,
+ "longestApexExecutionNano": 115902823
+ },
+ {
+ "batchNumber": 1554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138684139,
+ "shortestRoundTripNano": 45137208,
+ "longestRoundTripNano": 173982960,
+ "averageApexExecutionNano": 48370916,
+ "shortestApexExecutionNano": 5781301,
+ "longestApexExecutionNano": 117161101
+ },
+ {
+ "batchNumber": 1555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169662088,
+ "shortestRoundTripNano": 44668171,
+ "longestRoundTripNano": 203117608,
+ "averageApexExecutionNano": 76534356,
+ "shortestApexExecutionNano": 7260305,
+ "longestApexExecutionNano": 141478498
+ },
+ {
+ "batchNumber": 1556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129432830,
+ "shortestRoundTripNano": 43971013,
+ "longestRoundTripNano": 152252850,
+ "averageApexExecutionNano": 44079211,
+ "shortestApexExecutionNano": 5196972,
+ "longestApexExecutionNano": 100827627
+ },
+ {
+ "batchNumber": 1557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156418746,
+ "shortestRoundTripNano": 62806816,
+ "longestRoundTripNano": 188997663,
+ "averageApexExecutionNano": 59243952,
+ "shortestApexExecutionNano": 13213218,
+ "longestApexExecutionNano": 127137464
+ },
+ {
+ "batchNumber": 1558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131942252,
+ "shortestRoundTripNano": 66645235,
+ "longestRoundTripNano": 163167039,
+ "averageApexExecutionNano": 58841510,
+ "shortestApexExecutionNano": 8543250,
+ "longestApexExecutionNano": 114071267
+ },
+ {
+ "batchNumber": 1559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151502355,
+ "shortestRoundTripNano": 88673938,
+ "longestRoundTripNano": 177373843,
+ "averageApexExecutionNano": 72026353,
+ "shortestApexExecutionNano": 13674850,
+ "longestApexExecutionNano": 122128403
+ },
+ {
+ "batchNumber": 1560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153867812,
+ "shortestRoundTripNano": 51207992,
+ "longestRoundTripNano": 180586063,
+ "averageApexExecutionNano": 61813623,
+ "shortestApexExecutionNano": 9961195,
+ "longestApexExecutionNano": 137148162
+ },
+ {
+ "batchNumber": 1561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167487370,
+ "shortestRoundTripNano": 72087740,
+ "longestRoundTripNano": 201325266,
+ "averageApexExecutionNano": 81675270,
+ "shortestApexExecutionNano": 13550261,
+ "longestApexExecutionNano": 146015200
+ },
+ {
+ "batchNumber": 1562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134361584,
+ "shortestRoundTripNano": 51228380,
+ "longestRoundTripNano": 163277717,
+ "averageApexExecutionNano": 39850575,
+ "shortestApexExecutionNano": 7642667,
+ "longestApexExecutionNano": 97928895
+ },
+ {
+ "batchNumber": 1563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142555928,
+ "shortestRoundTripNano": 82675401,
+ "longestRoundTripNano": 170983345,
+ "averageApexExecutionNano": 59375614,
+ "shortestApexExecutionNano": 9899876,
+ "longestApexExecutionNano": 116979500
+ },
+ {
+ "batchNumber": 1564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176173116,
+ "shortestRoundTripNano": 74609430,
+ "longestRoundTripNano": 209138851,
+ "averageApexExecutionNano": 81177229,
+ "shortestApexExecutionNano": 11555895,
+ "longestApexExecutionNano": 150628767
+ },
+ {
+ "batchNumber": 1565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161723054,
+ "shortestRoundTripNano": 72859162,
+ "longestRoundTripNano": 185992527,
+ "averageApexExecutionNano": 61806910,
+ "shortestApexExecutionNano": 6661118,
+ "longestApexExecutionNano": 134285684
+ },
+ {
+ "batchNumber": 1566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161310000,
+ "shortestRoundTripNano": 68047434,
+ "longestRoundTripNano": 197455333,
+ "averageApexExecutionNano": 69653279,
+ "shortestApexExecutionNano": 14647937,
+ "longestApexExecutionNano": 130216433
+ },
+ {
+ "batchNumber": 1567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154772919,
+ "shortestRoundTripNano": 69044310,
+ "longestRoundTripNano": 190323060,
+ "averageApexExecutionNano": 66187908,
+ "shortestApexExecutionNano": 6143906,
+ "longestApexExecutionNano": 142675958
+ },
+ {
+ "batchNumber": 1568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131837614,
+ "shortestRoundTripNano": 58608728,
+ "longestRoundTripNano": 171325302,
+ "averageApexExecutionNano": 44828278,
+ "shortestApexExecutionNano": 5516979,
+ "longestApexExecutionNano": 142092374
+ },
+ {
+ "batchNumber": 1569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136714597,
+ "shortestRoundTripNano": 63181793,
+ "longestRoundTripNano": 162601595,
+ "averageApexExecutionNano": 51097872,
+ "shortestApexExecutionNano": 8847910,
+ "longestApexExecutionNano": 104069279
+ },
+ {
+ "batchNumber": 1570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127524771,
+ "shortestRoundTripNano": 61365355,
+ "longestRoundTripNano": 157780457,
+ "averageApexExecutionNano": 55853742,
+ "shortestApexExecutionNano": 6075578,
+ "longestApexExecutionNano": 110909980
+ },
+ {
+ "batchNumber": 1571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142172711,
+ "shortestRoundTripNano": 60730237,
+ "longestRoundTripNano": 170011961,
+ "averageApexExecutionNano": 55542611,
+ "shortestApexExecutionNano": 9318106,
+ "longestApexExecutionNano": 110117491
+ },
+ {
+ "batchNumber": 1572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140488947,
+ "shortestRoundTripNano": 73729100,
+ "longestRoundTripNano": 174015727,
+ "averageApexExecutionNano": 62375354,
+ "shortestApexExecutionNano": 6447650,
+ "longestApexExecutionNano": 124011148
+ },
+ {
+ "batchNumber": 1573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154552556,
+ "shortestRoundTripNano": 59252728,
+ "longestRoundTripNano": 190392530,
+ "averageApexExecutionNano": 68676526,
+ "shortestApexExecutionNano": 10204298,
+ "longestApexExecutionNano": 135940405
+ },
+ {
+ "batchNumber": 1574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155932510,
+ "shortestRoundTripNano": 64813643,
+ "longestRoundTripNano": 186345074,
+ "averageApexExecutionNano": 74482115,
+ "shortestApexExecutionNano": 14154050,
+ "longestApexExecutionNano": 139511444
+ },
+ {
+ "batchNumber": 1575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 212248745,
+ "shortestRoundTripNano": 61231680,
+ "longestRoundTripNano": 257603316,
+ "averageApexExecutionNano": 137401712,
+ "shortestApexExecutionNano": 8018579,
+ "longestApexExecutionNano": 208221922
+ },
+ {
+ "batchNumber": 1576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150472676,
+ "shortestRoundTripNano": 73040962,
+ "longestRoundTripNano": 186653980,
+ "averageApexExecutionNano": 60654551,
+ "shortestApexExecutionNano": 8946376,
+ "longestApexExecutionNano": 142174611
+ },
+ {
+ "batchNumber": 1577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160011795,
+ "shortestRoundTripNano": 92408039,
+ "longestRoundTripNano": 188628499,
+ "averageApexExecutionNano": 66087464,
+ "shortestApexExecutionNano": 10045409,
+ "longestApexExecutionNano": 125679428
+ },
+ {
+ "batchNumber": 1578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140278858,
+ "shortestRoundTripNano": 66848979,
+ "longestRoundTripNano": 164506111,
+ "averageApexExecutionNano": 47535276,
+ "shortestApexExecutionNano": 5750650,
+ "longestApexExecutionNano": 119545550
+ },
+ {
+ "batchNumber": 1579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136929144,
+ "shortestRoundTripNano": 58426320,
+ "longestRoundTripNano": 168167593,
+ "averageApexExecutionNano": 58342776,
+ "shortestApexExecutionNano": 13423083,
+ "longestApexExecutionNano": 110259569
+ },
+ {
+ "batchNumber": 1580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148407236,
+ "shortestRoundTripNano": 75363176,
+ "longestRoundTripNano": 182818781,
+ "averageApexExecutionNano": 56790630,
+ "shortestApexExecutionNano": 10135897,
+ "longestApexExecutionNano": 107611409
+ },
+ {
+ "batchNumber": 1581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160436840,
+ "shortestRoundTripNano": 44743035,
+ "longestRoundTripNano": 195590901,
+ "averageApexExecutionNano": 63879044,
+ "shortestApexExecutionNano": 15680991,
+ "longestApexExecutionNano": 135551646
+ },
+ {
+ "batchNumber": 1582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120424291,
+ "shortestRoundTripNano": 54963655,
+ "longestRoundTripNano": 158309868,
+ "averageApexExecutionNano": 51625820,
+ "shortestApexExecutionNano": 7111037,
+ "longestApexExecutionNano": 105490312
+ },
+ {
+ "batchNumber": 1583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143455440,
+ "shortestRoundTripNano": 56285547,
+ "longestRoundTripNano": 173258214,
+ "averageApexExecutionNano": 61736618,
+ "shortestApexExecutionNano": 7491102,
+ "longestApexExecutionNano": 112944949
+ },
+ {
+ "batchNumber": 1584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142754239,
+ "shortestRoundTripNano": 66769957,
+ "longestRoundTripNano": 173133038,
+ "averageApexExecutionNano": 65218951,
+ "shortestApexExecutionNano": 8315898,
+ "longestApexExecutionNano": 126293632
+ },
+ {
+ "batchNumber": 1585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127608854,
+ "shortestRoundTripNano": 56132366,
+ "longestRoundTripNano": 160632975,
+ "averageApexExecutionNano": 37335619,
+ "shortestApexExecutionNano": 5958552,
+ "longestApexExecutionNano": 93028747
+ },
+ {
+ "batchNumber": 1586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151371995,
+ "shortestRoundTripNano": 69180549,
+ "longestRoundTripNano": 188195522,
+ "averageApexExecutionNano": 66767633,
+ "shortestApexExecutionNano": 9425135,
+ "longestApexExecutionNano": 131934455
+ },
+ {
+ "batchNumber": 1587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171693900,
+ "shortestRoundTripNano": 64896445,
+ "longestRoundTripNano": 211152825,
+ "averageApexExecutionNano": 56081393,
+ "shortestApexExecutionNano": 6420839,
+ "longestApexExecutionNano": 123959279
+ },
+ {
+ "batchNumber": 1588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35268",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155222788,
+ "shortestRoundTripNano": 66941284,
+ "longestRoundTripNano": 188150610,
+ "averageApexExecutionNano": 77137154,
+ "shortestApexExecutionNano": 11499276,
+ "longestApexExecutionNano": 146773836
+ },
+ {
+ "batchNumber": 1589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35268",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150211190,
+ "shortestRoundTripNano": 69487295,
+ "longestRoundTripNano": 185708414,
+ "averageApexExecutionNano": 68159123,
+ "shortestApexExecutionNano": 5374730,
+ "longestApexExecutionNano": 143949494
+ },
+ {
+ "batchNumber": 1590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35268",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165726510,
+ "shortestRoundTripNano": 72921635,
+ "longestRoundTripNano": 203700084,
+ "averageApexExecutionNano": 70489261,
+ "shortestApexExecutionNano": 16283800,
+ "longestApexExecutionNano": 124948416
+ },
+ {
+ "batchNumber": 1591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138577486,
+ "shortestRoundTripNano": 54947948,
+ "longestRoundTripNano": 172631719,
+ "averageApexExecutionNano": 63286727,
+ "shortestApexExecutionNano": 7712257,
+ "longestApexExecutionNano": 136714840
+ },
+ {
+ "batchNumber": 1592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148854629,
+ "shortestRoundTripNano": 65901017,
+ "longestRoundTripNano": 184154170,
+ "averageApexExecutionNano": 59306864,
+ "shortestApexExecutionNano": 8876803,
+ "longestApexExecutionNano": 119731822
+ },
+ {
+ "batchNumber": 1593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140488216,
+ "shortestRoundTripNano": 77761139,
+ "longestRoundTripNano": 172757090,
+ "averageApexExecutionNano": 69759572,
+ "shortestApexExecutionNano": 13579882,
+ "longestApexExecutionNano": 118984985
+ },
+ {
+ "batchNumber": 1594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 262751150,
+ "shortestRoundTripNano": 64211110,
+ "longestRoundTripNano": 293635471,
+ "averageApexExecutionNano": 132266774,
+ "shortestApexExecutionNano": 16270151,
+ "longestApexExecutionNano": 250980583
+ },
+ {
+ "batchNumber": 1595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160465591,
+ "shortestRoundTripNano": 82494081,
+ "longestRoundTripNano": 191866012,
+ "averageApexExecutionNano": 63273348,
+ "shortestApexExecutionNano": 13199667,
+ "longestApexExecutionNano": 112252775
+ },
+ {
+ "batchNumber": 1596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174530996,
+ "shortestRoundTripNano": 96746380,
+ "longestRoundTripNano": 206485240,
+ "averageApexExecutionNano": 66893592,
+ "shortestApexExecutionNano": 15306787,
+ "longestApexExecutionNano": 115260641
+ },
+ {
+ "batchNumber": 1597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143529113,
+ "shortestRoundTripNano": 71892413,
+ "longestRoundTripNano": 174604348,
+ "averageApexExecutionNano": 47577026,
+ "shortestApexExecutionNano": 6656253,
+ "longestApexExecutionNano": 114697648
+ },
+ {
+ "batchNumber": 1598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156101992,
+ "shortestRoundTripNano": 51726335,
+ "longestRoundTripNano": 180434339,
+ "averageApexExecutionNano": 61884362,
+ "shortestApexExecutionNano": 7449713,
+ "longestApexExecutionNano": 119545800
+ },
+ {
+ "batchNumber": 1599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148141713,
+ "shortestRoundTripNano": 74785663,
+ "longestRoundTripNano": 178268223,
+ "averageApexExecutionNano": 77322234,
+ "shortestApexExecutionNano": 6587232,
+ "longestApexExecutionNano": 137860137
+ },
+ {
+ "batchNumber": 1600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129562027,
+ "shortestRoundTripNano": 65377951,
+ "longestRoundTripNano": 161016510,
+ "averageApexExecutionNano": 40672868,
+ "shortestApexExecutionNano": 6880275,
+ "longestApexExecutionNano": 107018888
+ },
+ {
+ "batchNumber": 1601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155022352,
+ "shortestRoundTripNano": 64222409,
+ "longestRoundTripNano": 204722007,
+ "averageApexExecutionNano": 54932211,
+ "shortestApexExecutionNano": 6510041,
+ "longestApexExecutionNano": 104322627
+ },
+ {
+ "batchNumber": 1602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137860737,
+ "shortestRoundTripNano": 61905710,
+ "longestRoundTripNano": 166610994,
+ "averageApexExecutionNano": 56596523,
+ "shortestApexExecutionNano": 9345662,
+ "longestApexExecutionNano": 105538813
+ },
+ {
+ "batchNumber": 1603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144011446,
+ "shortestRoundTripNano": 58814319,
+ "longestRoundTripNano": 175154852,
+ "averageApexExecutionNano": 64460549,
+ "shortestApexExecutionNano": 9943628,
+ "longestApexExecutionNano": 122319066
+ },
+ {
+ "batchNumber": 1604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159359426,
+ "shortestRoundTripNano": 57903127,
+ "longestRoundTripNano": 197862408,
+ "averageApexExecutionNano": 59573236,
+ "shortestApexExecutionNano": 6503675,
+ "longestApexExecutionNano": 127981939
+ },
+ {
+ "batchNumber": 1605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135732635,
+ "shortestRoundTripNano": 50730127,
+ "longestRoundTripNano": 162435097,
+ "averageApexExecutionNano": 52687118,
+ "shortestApexExecutionNano": 10553677,
+ "longestApexExecutionNano": 112590269
+ },
+ {
+ "batchNumber": 1606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172331805,
+ "shortestRoundTripNano": 43488168,
+ "longestRoundTripNano": 197579011,
+ "averageApexExecutionNano": 76956054,
+ "shortestApexExecutionNano": 6973939,
+ "longestApexExecutionNano": 143916349
+ },
+ {
+ "batchNumber": 1607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141067723,
+ "shortestRoundTripNano": 59406067,
+ "longestRoundTripNano": 172994419,
+ "averageApexExecutionNano": 54854250,
+ "shortestApexExecutionNano": 7815315,
+ "longestApexExecutionNano": 106806227
+ },
+ {
+ "batchNumber": 1608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144398209,
+ "shortestRoundTripNano": 59303122,
+ "longestRoundTripNano": 169626933,
+ "averageApexExecutionNano": 60135867,
+ "shortestApexExecutionNano": 8571687,
+ "longestApexExecutionNano": 118329688
+ },
+ {
+ "batchNumber": 1609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137721764,
+ "shortestRoundTripNano": 61432070,
+ "longestRoundTripNano": 163988090,
+ "averageApexExecutionNano": 59028297,
+ "shortestApexExecutionNano": 9501540,
+ "longestApexExecutionNano": 112465349
+ },
+ {
+ "batchNumber": 1610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153393018,
+ "shortestRoundTripNano": 62969967,
+ "longestRoundTripNano": 184844375,
+ "averageApexExecutionNano": 59884602,
+ "shortestApexExecutionNano": 8960604,
+ "longestApexExecutionNano": 116385384
+ },
+ {
+ "batchNumber": 1611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131222549,
+ "shortestRoundTripNano": 63462321,
+ "longestRoundTripNano": 164677081,
+ "averageApexExecutionNano": 51894091,
+ "shortestApexExecutionNano": 8229872,
+ "longestApexExecutionNano": 113558397
+ },
+ {
+ "batchNumber": 1612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186841997,
+ "shortestRoundTripNano": 35939312,
+ "longestRoundTripNano": 216830413,
+ "averageApexExecutionNano": 82523069,
+ "shortestApexExecutionNano": 7649506,
+ "longestApexExecutionNano": 165982158
+ },
+ {
+ "batchNumber": 1613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175288607,
+ "shortestRoundTripNano": 64873303,
+ "longestRoundTripNano": 210353423,
+ "averageApexExecutionNano": 65452921,
+ "shortestApexExecutionNano": 9831906,
+ "longestApexExecutionNano": 132261219
+ },
+ {
+ "batchNumber": 1614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162936419,
+ "shortestRoundTripNano": 36361348,
+ "longestRoundTripNano": 200596851,
+ "averageApexExecutionNano": 72658484,
+ "shortestApexExecutionNano": 6215859,
+ "longestApexExecutionNano": 139543783
+ },
+ {
+ "batchNumber": 1615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159418390,
+ "shortestRoundTripNano": 94357649,
+ "longestRoundTripNano": 199376881,
+ "averageApexExecutionNano": 53749740,
+ "shortestApexExecutionNano": 6423708,
+ "longestApexExecutionNano": 147642097
+ },
+ {
+ "batchNumber": 1616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144535537,
+ "shortestRoundTripNano": 51051100,
+ "longestRoundTripNano": 175581524,
+ "averageApexExecutionNano": 55731054,
+ "shortestApexExecutionNano": 6571606,
+ "longestApexExecutionNano": 112304180
+ },
+ {
+ "batchNumber": 1617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157992346,
+ "shortestRoundTripNano": 76122121,
+ "longestRoundTripNano": 186414066,
+ "averageApexExecutionNano": 61280057,
+ "shortestApexExecutionNano": 9704277,
+ "longestApexExecutionNano": 129429562
+ },
+ {
+ "batchNumber": 1618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154722649,
+ "shortestRoundTripNano": 67875332,
+ "longestRoundTripNano": 185903150,
+ "averageApexExecutionNano": 49772039,
+ "shortestApexExecutionNano": 6882464,
+ "longestApexExecutionNano": 111586667
+ },
+ {
+ "batchNumber": 1619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161157442,
+ "shortestRoundTripNano": 46403309,
+ "longestRoundTripNano": 192852477,
+ "averageApexExecutionNano": 60296420,
+ "shortestApexExecutionNano": 10356778,
+ "longestApexExecutionNano": 126722948
+ },
+ {
+ "batchNumber": 1620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149265943,
+ "shortestRoundTripNano": 64140123,
+ "longestRoundTripNano": 192925300,
+ "averageApexExecutionNano": 75134130,
+ "shortestApexExecutionNano": 10363543,
+ "longestApexExecutionNano": 142176889
+ },
+ {
+ "batchNumber": 1621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150363277,
+ "shortestRoundTripNano": 79057031,
+ "longestRoundTripNano": 179204057,
+ "averageApexExecutionNano": 78074011,
+ "shortestApexExecutionNano": 7145375,
+ "longestApexExecutionNano": 128705761
+ },
+ {
+ "batchNumber": 1622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135240462,
+ "shortestRoundTripNano": 60809117,
+ "longestRoundTripNano": 165567282,
+ "averageApexExecutionNano": 60189873,
+ "shortestApexExecutionNano": 6664144,
+ "longestApexExecutionNano": 112056765
+ },
+ {
+ "batchNumber": 1623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158930624,
+ "shortestRoundTripNano": 74048486,
+ "longestRoundTripNano": 189539543,
+ "averageApexExecutionNano": 66406967,
+ "shortestApexExecutionNano": 9387266,
+ "longestApexExecutionNano": 136856973
+ },
+ {
+ "batchNumber": 1624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128668909,
+ "shortestRoundTripNano": 45076684,
+ "longestRoundTripNano": 166472599,
+ "averageApexExecutionNano": 43886249,
+ "shortestApexExecutionNano": 6268634,
+ "longestApexExecutionNano": 127352522
+ },
+ {
+ "batchNumber": 1625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150631515,
+ "shortestRoundTripNano": 76173135,
+ "longestRoundTripNano": 178164607,
+ "averageApexExecutionNano": 74994132,
+ "shortestApexExecutionNano": 5480350,
+ "longestApexExecutionNano": 124498688
+ },
+ {
+ "batchNumber": 1626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152817064,
+ "shortestRoundTripNano": 74536776,
+ "longestRoundTripNano": 181173478,
+ "averageApexExecutionNano": 58041764,
+ "shortestApexExecutionNano": 9797448,
+ "longestApexExecutionNano": 123615371
+ },
+ {
+ "batchNumber": 1627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147932025,
+ "shortestRoundTripNano": 70584254,
+ "longestRoundTripNano": 175776126,
+ "averageApexExecutionNano": 71928735,
+ "shortestApexExecutionNano": 10908958,
+ "longestApexExecutionNano": 130146511
+ },
+ {
+ "batchNumber": 1628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152197258,
+ "shortestRoundTripNano": 67862534,
+ "longestRoundTripNano": 180763848,
+ "averageApexExecutionNano": 54121856,
+ "shortestApexExecutionNano": 9047471,
+ "longestApexExecutionNano": 109069794
+ },
+ {
+ "batchNumber": 1629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129156139,
+ "shortestRoundTripNano": 76346192,
+ "longestRoundTripNano": 151564760,
+ "averageApexExecutionNano": 58454333,
+ "shortestApexExecutionNano": 15140849,
+ "longestApexExecutionNano": 104722160
+ },
+ {
+ "batchNumber": 1630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157193090,
+ "shortestRoundTripNano": 49606998,
+ "longestRoundTripNano": 186391929,
+ "averageApexExecutionNano": 58597574,
+ "shortestApexExecutionNano": 7828474,
+ "longestApexExecutionNano": 117687807
+ },
+ {
+ "batchNumber": 1631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143699760,
+ "shortestRoundTripNano": 44916125,
+ "longestRoundTripNano": 178432891,
+ "averageApexExecutionNano": 48280564,
+ "shortestApexExecutionNano": 8246917,
+ "longestApexExecutionNano": 115201532
+ },
+ {
+ "batchNumber": 1632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150988829,
+ "shortestRoundTripNano": 75130191,
+ "longestRoundTripNano": 178728647,
+ "averageApexExecutionNano": 49970378,
+ "shortestApexExecutionNano": 8780285,
+ "longestApexExecutionNano": 109400444
+ },
+ {
+ "batchNumber": 1633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137639602,
+ "shortestRoundTripNano": 56196171,
+ "longestRoundTripNano": 163645943,
+ "averageApexExecutionNano": 62472025,
+ "shortestApexExecutionNano": 7224023,
+ "longestApexExecutionNano": 120742999
+ },
+ {
+ "batchNumber": 1634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141856925,
+ "shortestRoundTripNano": 70060790,
+ "longestRoundTripNano": 169163420,
+ "averageApexExecutionNano": 46133109,
+ "shortestApexExecutionNano": 6317898,
+ "longestApexExecutionNano": 115205345
+ },
+ {
+ "batchNumber": 1635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148032544,
+ "shortestRoundTripNano": 56730296,
+ "longestRoundTripNano": 186808907,
+ "averageApexExecutionNano": 67077771,
+ "shortestApexExecutionNano": 15293384,
+ "longestApexExecutionNano": 127882603
+ },
+ {
+ "batchNumber": 1636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131711536,
+ "shortestRoundTripNano": 64250199,
+ "longestRoundTripNano": 163607508,
+ "averageApexExecutionNano": 61980913,
+ "shortestApexExecutionNano": 6207088,
+ "longestApexExecutionNano": 112109170
+ },
+ {
+ "batchNumber": 1637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162132630,
+ "shortestRoundTripNano": 55333617,
+ "longestRoundTripNano": 194231944,
+ "averageApexExecutionNano": 70364550,
+ "shortestApexExecutionNano": 9284279,
+ "longestApexExecutionNano": 118706833
+ },
+ {
+ "batchNumber": 1638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153698219,
+ "shortestRoundTripNano": 60703506,
+ "longestRoundTripNano": 188481683,
+ "averageApexExecutionNano": 69317599,
+ "shortestApexExecutionNano": 5440168,
+ "longestApexExecutionNano": 137146626
+ },
+ {
+ "batchNumber": 1639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150655994,
+ "shortestRoundTripNano": 64886145,
+ "longestRoundTripNano": 189635450,
+ "averageApexExecutionNano": 45265978,
+ "shortestApexExecutionNano": 10216862,
+ "longestApexExecutionNano": 88722154
+ },
+ {
+ "batchNumber": 1640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148676073,
+ "shortestRoundTripNano": 33824668,
+ "longestRoundTripNano": 189433438,
+ "averageApexExecutionNano": 55452928,
+ "shortestApexExecutionNano": 8199159,
+ "longestApexExecutionNano": 124708066
+ },
+ {
+ "batchNumber": 1641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162589129,
+ "shortestRoundTripNano": 74232755,
+ "longestRoundTripNano": 194122889,
+ "averageApexExecutionNano": 62219761,
+ "shortestApexExecutionNano": 5653362,
+ "longestApexExecutionNano": 139740076
+ },
+ {
+ "batchNumber": 1642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151103045,
+ "shortestRoundTripNano": 53243636,
+ "longestRoundTripNano": 187065913,
+ "averageApexExecutionNano": 67926809,
+ "shortestApexExecutionNano": 7263689,
+ "longestApexExecutionNano": 139228783
+ },
+ {
+ "batchNumber": 1643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35292",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141391994,
+ "shortestRoundTripNano": 47892605,
+ "longestRoundTripNano": 172213693,
+ "averageApexExecutionNano": 61613655,
+ "shortestApexExecutionNano": 9802567,
+ "longestApexExecutionNano": 128538753
+ },
+ {
+ "batchNumber": 1644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35292",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144975041,
+ "shortestRoundTripNano": 67116878,
+ "longestRoundTripNano": 171821189,
+ "averageApexExecutionNano": 52266979,
+ "shortestApexExecutionNano": 6317989,
+ "longestApexExecutionNano": 115835622
+ },
+ {
+ "batchNumber": 1645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35292",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153826124,
+ "shortestRoundTripNano": 51969550,
+ "longestRoundTripNano": 184734666,
+ "averageApexExecutionNano": 46505596,
+ "shortestApexExecutionNano": 10978663,
+ "longestApexExecutionNano": 109674426
+ },
+ {
+ "batchNumber": 1646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148145911,
+ "shortestRoundTripNano": 65070537,
+ "longestRoundTripNano": 176880421,
+ "averageApexExecutionNano": 56999838,
+ "shortestApexExecutionNano": 6517292,
+ "longestApexExecutionNano": 103023862
+ },
+ {
+ "batchNumber": 1647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156119992,
+ "shortestRoundTripNano": 69070433,
+ "longestRoundTripNano": 194024938,
+ "averageApexExecutionNano": 74772511,
+ "shortestApexExecutionNano": 6497074,
+ "longestApexExecutionNano": 140383003
+ },
+ {
+ "batchNumber": 1648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158162994,
+ "shortestRoundTripNano": 65133518,
+ "longestRoundTripNano": 186158815,
+ "averageApexExecutionNano": 72053623,
+ "shortestApexExecutionNano": 15081150,
+ "longestApexExecutionNano": 147593304
+ },
+ {
+ "batchNumber": 1649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161473488,
+ "shortestRoundTripNano": 74581259,
+ "longestRoundTripNano": 192657548,
+ "averageApexExecutionNano": 59445709,
+ "shortestApexExecutionNano": 10127533,
+ "longestApexExecutionNano": 134376015
+ },
+ {
+ "batchNumber": 1650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140370380,
+ "shortestRoundTripNano": 56369633,
+ "longestRoundTripNano": 171796293,
+ "averageApexExecutionNano": 51307117,
+ "shortestApexExecutionNano": 8717620,
+ "longestApexExecutionNano": 107102877
+ },
+ {
+ "batchNumber": 1651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157939100,
+ "shortestRoundTripNano": 50480039,
+ "longestRoundTripNano": 190510322,
+ "averageApexExecutionNano": 67005653,
+ "shortestApexExecutionNano": 9280122,
+ "longestApexExecutionNano": 145667096
+ },
+ {
+ "batchNumber": 1652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171914864,
+ "shortestRoundTripNano": 61423754,
+ "longestRoundTripNano": 204163823,
+ "averageApexExecutionNano": 85254251,
+ "shortestApexExecutionNano": 7655333,
+ "longestApexExecutionNano": 151176739
+ },
+ {
+ "batchNumber": 1653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130707019,
+ "shortestRoundTripNano": 68130032,
+ "longestRoundTripNano": 164190487,
+ "averageApexExecutionNano": 47672076,
+ "shortestApexExecutionNano": 7310019,
+ "longestApexExecutionNano": 108798962
+ },
+ {
+ "batchNumber": 1654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166805412,
+ "shortestRoundTripNano": 85468724,
+ "longestRoundTripNano": 206429613,
+ "averageApexExecutionNano": 61308242,
+ "shortestApexExecutionNano": 14373451,
+ "longestApexExecutionNano": 116113032
+ },
+ {
+ "batchNumber": 1655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148879002,
+ "shortestRoundTripNano": 46315348,
+ "longestRoundTripNano": 182841693,
+ "averageApexExecutionNano": 62483473,
+ "shortestApexExecutionNano": 5169858,
+ "longestApexExecutionNano": 115360209
+ },
+ {
+ "batchNumber": 1656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151946690,
+ "shortestRoundTripNano": 59892256,
+ "longestRoundTripNano": 185493369,
+ "averageApexExecutionNano": 63014722,
+ "shortestApexExecutionNano": 10022733,
+ "longestApexExecutionNano": 125670435
+ },
+ {
+ "batchNumber": 1657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158340093,
+ "shortestRoundTripNano": 51080147,
+ "longestRoundTripNano": 187403822,
+ "averageApexExecutionNano": 55126247,
+ "shortestApexExecutionNano": 5944523,
+ "longestApexExecutionNano": 117324551
+ },
+ {
+ "batchNumber": 1658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133489869,
+ "shortestRoundTripNano": 68241587,
+ "longestRoundTripNano": 157790393,
+ "averageApexExecutionNano": 49977365,
+ "shortestApexExecutionNano": 9671537,
+ "longestApexExecutionNano": 114396990
+ },
+ {
+ "batchNumber": 1659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154931963,
+ "shortestRoundTripNano": 54345919,
+ "longestRoundTripNano": 212102163,
+ "averageApexExecutionNano": 56273056,
+ "shortestApexExecutionNano": 6751606,
+ "longestApexExecutionNano": 120622387
+ },
+ {
+ "batchNumber": 1660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151143919,
+ "shortestRoundTripNano": 76110497,
+ "longestRoundTripNano": 183926765,
+ "averageApexExecutionNano": 68168949,
+ "shortestApexExecutionNano": 9322214,
+ "longestApexExecutionNano": 136393772
+ },
+ {
+ "batchNumber": 1661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134775482,
+ "shortestRoundTripNano": 42464493,
+ "longestRoundTripNano": 181113705,
+ "averageApexExecutionNano": 43594984,
+ "shortestApexExecutionNano": 6004760,
+ "longestApexExecutionNano": 122501275
+ },
+ {
+ "batchNumber": 1662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157974774,
+ "shortestRoundTripNano": 70374048,
+ "longestRoundTripNano": 188847361,
+ "averageApexExecutionNano": 76482453,
+ "shortestApexExecutionNano": 7117018,
+ "longestApexExecutionNano": 137405232
+ },
+ {
+ "batchNumber": 1663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153857084,
+ "shortestRoundTripNano": 61921900,
+ "longestRoundTripNano": 184018653,
+ "averageApexExecutionNano": 52109064,
+ "shortestApexExecutionNano": 6479137,
+ "longestApexExecutionNano": 125407200
+ },
+ {
+ "batchNumber": 1664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149901779,
+ "shortestRoundTripNano": 67219539,
+ "longestRoundTripNano": 181611328,
+ "averageApexExecutionNano": 46572503,
+ "shortestApexExecutionNano": 6247917,
+ "longestApexExecutionNano": 135868020
+ },
+ {
+ "batchNumber": 1665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143521972,
+ "shortestRoundTripNano": 44403562,
+ "longestRoundTripNano": 172996255,
+ "averageApexExecutionNano": 60504506,
+ "shortestApexExecutionNano": 7267824,
+ "longestApexExecutionNano": 121823346
+ },
+ {
+ "batchNumber": 1666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131671856,
+ "shortestRoundTripNano": 71168718,
+ "longestRoundTripNano": 163954361,
+ "averageApexExecutionNano": 62513592,
+ "shortestApexExecutionNano": 6129470,
+ "longestApexExecutionNano": 129373163
+ },
+ {
+ "batchNumber": 1667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133344963,
+ "shortestRoundTripNano": 50599076,
+ "longestRoundTripNano": 163906898,
+ "averageApexExecutionNano": 48494165,
+ "shortestApexExecutionNano": 11480030,
+ "longestApexExecutionNano": 107769696
+ },
+ {
+ "batchNumber": 1668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147746249,
+ "shortestRoundTripNano": 63594724,
+ "longestRoundTripNano": 174793576,
+ "averageApexExecutionNano": 47448143,
+ "shortestApexExecutionNano": 6352703,
+ "longestApexExecutionNano": 107567067
+ },
+ {
+ "batchNumber": 1669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159318454,
+ "shortestRoundTripNano": 72148847,
+ "longestRoundTripNano": 202826567,
+ "averageApexExecutionNano": 68248815,
+ "shortestApexExecutionNano": 18497497,
+ "longestApexExecutionNano": 129317582
+ },
+ {
+ "batchNumber": 1670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172624092,
+ "shortestRoundTripNano": 37067419,
+ "longestRoundTripNano": 207687364,
+ "averageApexExecutionNano": 82395831,
+ "shortestApexExecutionNano": 12422853,
+ "longestApexExecutionNano": 150670682
+ },
+ {
+ "batchNumber": 1671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133008627,
+ "shortestRoundTripNano": 48862405,
+ "longestRoundTripNano": 167444049,
+ "averageApexExecutionNano": 50140597,
+ "shortestApexExecutionNano": 5135820,
+ "longestApexExecutionNano": 106623993
+ },
+ {
+ "batchNumber": 1672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141032300,
+ "shortestRoundTripNano": 41049993,
+ "longestRoundTripNano": 176014708,
+ "averageApexExecutionNano": 58215946,
+ "shortestApexExecutionNano": 8099293,
+ "longestApexExecutionNano": 136732862
+ },
+ {
+ "batchNumber": 1673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35304",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139136673,
+ "shortestRoundTripNano": 52565237,
+ "longestRoundTripNano": 170232205,
+ "averageApexExecutionNano": 53076599,
+ "shortestApexExecutionNano": 6103618,
+ "longestApexExecutionNano": 107923966
+ },
+ {
+ "batchNumber": 1674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35304",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151196585,
+ "shortestRoundTripNano": 43454628,
+ "longestRoundTripNano": 187234093,
+ "averageApexExecutionNano": 63433508,
+ "shortestApexExecutionNano": 6869001,
+ "longestApexExecutionNano": 123636025
+ },
+ {
+ "batchNumber": 1675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128496339,
+ "shortestRoundTripNano": 61879971,
+ "longestRoundTripNano": 155229410,
+ "averageApexExecutionNano": 41762932,
+ "shortestApexExecutionNano": 6234641,
+ "longestApexExecutionNano": 100634895
+ },
+ {
+ "batchNumber": 1676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161947370,
+ "shortestRoundTripNano": 79652156,
+ "longestRoundTripNano": 193871837,
+ "averageApexExecutionNano": 45579237,
+ "shortestApexExecutionNano": 8585595,
+ "longestApexExecutionNano": 99088145
+ },
+ {
+ "batchNumber": 1677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163599606,
+ "shortestRoundTripNano": 45348208,
+ "longestRoundTripNano": 211328455,
+ "averageApexExecutionNano": 60289789,
+ "shortestApexExecutionNano": 9108603,
+ "longestApexExecutionNano": 115110893
+ },
+ {
+ "batchNumber": 1678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148753067,
+ "shortestRoundTripNano": 84407171,
+ "longestRoundTripNano": 175872916,
+ "averageApexExecutionNano": 56713641,
+ "shortestApexExecutionNano": 7911347,
+ "longestApexExecutionNano": 131423300
+ },
+ {
+ "batchNumber": 1679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141934136,
+ "shortestRoundTripNano": 49520269,
+ "longestRoundTripNano": 173648634,
+ "averageApexExecutionNano": 60790696,
+ "shortestApexExecutionNano": 13896063,
+ "longestApexExecutionNano": 120841112
+ },
+ {
+ "batchNumber": 1680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152374879,
+ "shortestRoundTripNano": 83083726,
+ "longestRoundTripNano": 179978738,
+ "averageApexExecutionNano": 53588734,
+ "shortestApexExecutionNano": 10117440,
+ "longestApexExecutionNano": 96967783
+ },
+ {
+ "batchNumber": 1681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150572249,
+ "shortestRoundTripNano": 85342474,
+ "longestRoundTripNano": 187521557,
+ "averageApexExecutionNano": 62149798,
+ "shortestApexExecutionNano": 14261505,
+ "longestApexExecutionNano": 111277669
+ },
+ {
+ "batchNumber": 1682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127577065,
+ "shortestRoundTripNano": 38793794,
+ "longestRoundTripNano": 153139718,
+ "averageApexExecutionNano": 57468850,
+ "shortestApexExecutionNano": 8795020,
+ "longestApexExecutionNano": 117851049
+ },
+ {
+ "batchNumber": 1683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134981513,
+ "shortestRoundTripNano": 62637168,
+ "longestRoundTripNano": 165084170,
+ "averageApexExecutionNano": 58328973,
+ "shortestApexExecutionNano": 6486378,
+ "longestApexExecutionNano": 110678927
+ },
+ {
+ "batchNumber": 1684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158995184,
+ "shortestRoundTripNano": 74496381,
+ "longestRoundTripNano": 193016919,
+ "averageApexExecutionNano": 58688176,
+ "shortestApexExecutionNano": 9387874,
+ "longestApexExecutionNano": 115832854
+ },
+ {
+ "batchNumber": 1685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144664135,
+ "shortestRoundTripNano": 78943798,
+ "longestRoundTripNano": 177767577,
+ "averageApexExecutionNano": 73364244,
+ "shortestApexExecutionNano": 9377110,
+ "longestApexExecutionNano": 134118361
+ },
+ {
+ "batchNumber": 1686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153843737,
+ "shortestRoundTripNano": 40353494,
+ "longestRoundTripNano": 179352613,
+ "averageApexExecutionNano": 70125313,
+ "shortestApexExecutionNano": 7002381,
+ "longestApexExecutionNano": 133347038
+ },
+ {
+ "batchNumber": 1687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155099593,
+ "shortestRoundTripNano": 51538292,
+ "longestRoundTripNano": 184132427,
+ "averageApexExecutionNano": 68075790,
+ "shortestApexExecutionNano": 11956385,
+ "longestApexExecutionNano": 136568848
+ },
+ {
+ "batchNumber": 1688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132240084,
+ "shortestRoundTripNano": 28775781,
+ "longestRoundTripNano": 161615886,
+ "averageApexExecutionNano": 49413367,
+ "shortestApexExecutionNano": 6692282,
+ "longestApexExecutionNano": 93660027
+ },
+ {
+ "batchNumber": 1689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150854490,
+ "shortestRoundTripNano": 56520250,
+ "longestRoundTripNano": 183500669,
+ "averageApexExecutionNano": 58381660,
+ "shortestApexExecutionNano": 10616594,
+ "longestApexExecutionNano": 116472652
+ },
+ {
+ "batchNumber": 1690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165698617,
+ "shortestRoundTripNano": 45865895,
+ "longestRoundTripNano": 193509080,
+ "averageApexExecutionNano": 69880196,
+ "shortestApexExecutionNano": 11697733,
+ "longestApexExecutionNano": 140318715
+ },
+ {
+ "batchNumber": 1691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155079261,
+ "shortestRoundTripNano": 81160271,
+ "longestRoundTripNano": 186758317,
+ "averageApexExecutionNano": 65785110,
+ "shortestApexExecutionNano": 7949631,
+ "longestApexExecutionNano": 125479189
+ },
+ {
+ "batchNumber": 1692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165128411,
+ "shortestRoundTripNano": 99001021,
+ "longestRoundTripNano": 194102544,
+ "averageApexExecutionNano": 77421184,
+ "shortestApexExecutionNano": 14817465,
+ "longestApexExecutionNano": 132763323
+ },
+ {
+ "batchNumber": 1693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136197171,
+ "shortestRoundTripNano": 66828737,
+ "longestRoundTripNano": 174544043,
+ "averageApexExecutionNano": 54794002,
+ "shortestApexExecutionNano": 7757628,
+ "longestApexExecutionNano": 104639014
+ },
+ {
+ "batchNumber": 1694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144288467,
+ "shortestRoundTripNano": 43293626,
+ "longestRoundTripNano": 171085196,
+ "averageApexExecutionNano": 59776538,
+ "shortestApexExecutionNano": 5503230,
+ "longestApexExecutionNano": 130984739
+ },
+ {
+ "batchNumber": 1695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161258247,
+ "shortestRoundTripNano": 68352508,
+ "longestRoundTripNano": 198071843,
+ "averageApexExecutionNano": 68917999,
+ "shortestApexExecutionNano": 9751221,
+ "longestApexExecutionNano": 140954458
+ },
+ {
+ "batchNumber": 1696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175697325,
+ "shortestRoundTripNano": 61061989,
+ "longestRoundTripNano": 210400032,
+ "averageApexExecutionNano": 70494637,
+ "shortestApexExecutionNano": 9895306,
+ "longestApexExecutionNano": 142777091
+ },
+ {
+ "batchNumber": 1697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141499142,
+ "shortestRoundTripNano": 66610375,
+ "longestRoundTripNano": 167805368,
+ "averageApexExecutionNano": 55224505,
+ "shortestApexExecutionNano": 7223777,
+ "longestApexExecutionNano": 109834550
+ },
+ {
+ "batchNumber": 1698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146536168,
+ "shortestRoundTripNano": 85378459,
+ "longestRoundTripNano": 176134458,
+ "averageApexExecutionNano": 71197791,
+ "shortestApexExecutionNano": 9040696,
+ "longestApexExecutionNano": 136125659
+ },
+ {
+ "batchNumber": 1699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141661128,
+ "shortestRoundTripNano": 55527602,
+ "longestRoundTripNano": 174223262,
+ "averageApexExecutionNano": 58726773,
+ "shortestApexExecutionNano": 7722585,
+ "longestApexExecutionNano": 123466902
+ },
+ {
+ "batchNumber": 1700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135701545,
+ "shortestRoundTripNano": 66255932,
+ "longestRoundTripNano": 167827416,
+ "averageApexExecutionNano": 64493482,
+ "shortestApexExecutionNano": 16551511,
+ "longestApexExecutionNano": 119352409
+ },
+ {
+ "batchNumber": 1701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164196354,
+ "shortestRoundTripNano": 86078829,
+ "longestRoundTripNano": 195418592,
+ "averageApexExecutionNano": 61435291,
+ "shortestApexExecutionNano": 7097443,
+ "longestApexExecutionNano": 127065961
+ },
+ {
+ "batchNumber": 1702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158585023,
+ "shortestRoundTripNano": 47387174,
+ "longestRoundTripNano": 189769006,
+ "averageApexExecutionNano": 69037009,
+ "shortestApexExecutionNano": 10270555,
+ "longestApexExecutionNano": 143081507
+ },
+ {
+ "batchNumber": 1703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160883672,
+ "shortestRoundTripNano": 87995159,
+ "longestRoundTripNano": 185783789,
+ "averageApexExecutionNano": 64238867,
+ "shortestApexExecutionNano": 11680277,
+ "longestApexExecutionNano": 144009047
+ },
+ {
+ "batchNumber": 1704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157593710,
+ "shortestRoundTripNano": 73715262,
+ "longestRoundTripNano": 188786359,
+ "averageApexExecutionNano": 48876808,
+ "shortestApexExecutionNano": 7103255,
+ "longestApexExecutionNano": 87137858
+ },
+ {
+ "batchNumber": 1705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168098024,
+ "shortestRoundTripNano": 65718193,
+ "longestRoundTripNano": 196762559,
+ "averageApexExecutionNano": 86687012,
+ "shortestApexExecutionNano": 11099410,
+ "longestApexExecutionNano": 151931675
+ },
+ {
+ "batchNumber": 1706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163543105,
+ "shortestRoundTripNano": 87283188,
+ "longestRoundTripNano": 193720102,
+ "averageApexExecutionNano": 77109678,
+ "shortestApexExecutionNano": 8212582,
+ "longestApexExecutionNano": 146172831
+ },
+ {
+ "batchNumber": 1707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156228870,
+ "shortestRoundTripNano": 64961281,
+ "longestRoundTripNano": 196326623,
+ "averageApexExecutionNano": 52752264,
+ "shortestApexExecutionNano": 6143456,
+ "longestApexExecutionNano": 116487496
+ },
+ {
+ "batchNumber": 1708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169131776,
+ "shortestRoundTripNano": 76150325,
+ "longestRoundTripNano": 198635523,
+ "averageApexExecutionNano": 80469220,
+ "shortestApexExecutionNano": 11006017,
+ "longestApexExecutionNano": 147703004
+ },
+ {
+ "batchNumber": 1709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152178474,
+ "shortestRoundTripNano": 58641884,
+ "longestRoundTripNano": 198426404,
+ "averageApexExecutionNano": 59494973,
+ "shortestApexExecutionNano": 6315035,
+ "longestApexExecutionNano": 137800984
+ },
+ {
+ "batchNumber": 1710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181549273,
+ "shortestRoundTripNano": 102779379,
+ "longestRoundTripNano": 214188403,
+ "averageApexExecutionNano": 99222154,
+ "shortestApexExecutionNano": 6877588,
+ "longestApexExecutionNano": 181647869
+ },
+ {
+ "batchNumber": 1711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171831935,
+ "shortestRoundTripNano": 86411810,
+ "longestRoundTripNano": 199025003,
+ "averageApexExecutionNano": 65474955,
+ "shortestApexExecutionNano": 9045278,
+ "longestApexExecutionNano": 127429130
+ },
+ {
+ "batchNumber": 1712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152037535,
+ "shortestRoundTripNano": 64204152,
+ "longestRoundTripNano": 178814384,
+ "averageApexExecutionNano": 38383239,
+ "shortestApexExecutionNano": 5115680,
+ "longestApexExecutionNano": 124797737
+ },
+ {
+ "batchNumber": 1713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131953540,
+ "shortestRoundTripNano": 53761683,
+ "longestRoundTripNano": 159210177,
+ "averageApexExecutionNano": 51770911,
+ "shortestApexExecutionNano": 10198439,
+ "longestApexExecutionNano": 104300776
+ },
+ {
+ "batchNumber": 1714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150013817,
+ "shortestRoundTripNano": 47735046,
+ "longestRoundTripNano": 176449999,
+ "averageApexExecutionNano": 56098281,
+ "shortestApexExecutionNano": 7146275,
+ "longestApexExecutionNano": 132146925
+ },
+ {
+ "batchNumber": 1715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171029000,
+ "shortestRoundTripNano": 59669136,
+ "longestRoundTripNano": 196855841,
+ "averageApexExecutionNano": 88209915,
+ "shortestApexExecutionNano": 13541296,
+ "longestApexExecutionNano": 149878713
+ },
+ {
+ "batchNumber": 1716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166224993,
+ "shortestRoundTripNano": 82570614,
+ "longestRoundTripNano": 200727171,
+ "averageApexExecutionNano": 56346575,
+ "shortestApexExecutionNano": 5565033,
+ "longestApexExecutionNano": 141890619
+ },
+ {
+ "batchNumber": 1717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143445759,
+ "shortestRoundTripNano": 48379504,
+ "longestRoundTripNano": 175793063,
+ "averageApexExecutionNano": 63825388,
+ "shortestApexExecutionNano": 8332494,
+ "longestApexExecutionNano": 121897152
+ },
+ {
+ "batchNumber": 1718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143990860,
+ "shortestRoundTripNano": 39770950,
+ "longestRoundTripNano": 178075783,
+ "averageApexExecutionNano": 54492320,
+ "shortestApexExecutionNano": 10656064,
+ "longestApexExecutionNano": 108631692
+ },
+ {
+ "batchNumber": 1719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155002306,
+ "shortestRoundTripNano": 62784368,
+ "longestRoundTripNano": 188525845,
+ "averageApexExecutionNano": 66006437,
+ "shortestApexExecutionNano": 7034996,
+ "longestApexExecutionNano": 133104193
+ },
+ {
+ "batchNumber": 1720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147837430,
+ "shortestRoundTripNano": 75657223,
+ "longestRoundTripNano": 176249129,
+ "averageApexExecutionNano": 60046005,
+ "shortestApexExecutionNano": 7677345,
+ "longestApexExecutionNano": 126200209
+ },
+ {
+ "batchNumber": 1721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151700368,
+ "shortestRoundTripNano": 98907481,
+ "longestRoundTripNano": 176165811,
+ "averageApexExecutionNano": 61973954,
+ "shortestApexExecutionNano": 7974903,
+ "longestApexExecutionNano": 115012750
+ },
+ {
+ "batchNumber": 1722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162537147,
+ "shortestRoundTripNano": 66461576,
+ "longestRoundTripNano": 188734153,
+ "averageApexExecutionNano": 75542597,
+ "shortestApexExecutionNano": 17199534,
+ "longestApexExecutionNano": 129674297
+ },
+ {
+ "batchNumber": 1723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168024210,
+ "shortestRoundTripNano": 54077313,
+ "longestRoundTripNano": 230324443,
+ "averageApexExecutionNano": 62788264,
+ "shortestApexExecutionNano": 5896538,
+ "longestApexExecutionNano": 117118026
+ },
+ {
+ "batchNumber": 1724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141452564,
+ "shortestRoundTripNano": 71825206,
+ "longestRoundTripNano": 166241390,
+ "averageApexExecutionNano": 65862890,
+ "shortestApexExecutionNano": 5718645,
+ "longestApexExecutionNano": 118301405
+ },
+ {
+ "batchNumber": 1725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171598867,
+ "shortestRoundTripNano": 64653113,
+ "longestRoundTripNano": 205340974,
+ "averageApexExecutionNano": 71401226,
+ "shortestApexExecutionNano": 9695271,
+ "longestApexExecutionNano": 136706352
+ },
+ {
+ "batchNumber": 1726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144412996,
+ "shortestRoundTripNano": 81569549,
+ "longestRoundTripNano": 183938853,
+ "averageApexExecutionNano": 80209312,
+ "shortestApexExecutionNano": 9313714,
+ "longestApexExecutionNano": 141570894
+ },
+ {
+ "batchNumber": 1727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138565265,
+ "shortestRoundTripNano": 49135032,
+ "longestRoundTripNano": 185748743,
+ "averageApexExecutionNano": 57582332,
+ "shortestApexExecutionNano": 9603961,
+ "longestApexExecutionNano": 123920934
+ },
+ {
+ "batchNumber": 1728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159000680,
+ "shortestRoundTripNano": 34819112,
+ "longestRoundTripNano": 200010651,
+ "averageApexExecutionNano": 80643102,
+ "shortestApexExecutionNano": 9672526,
+ "longestApexExecutionNano": 146272847
+ },
+ {
+ "batchNumber": 1729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145077799,
+ "shortestRoundTripNano": 56258645,
+ "longestRoundTripNano": 168700746,
+ "averageApexExecutionNano": 63634477,
+ "shortestApexExecutionNano": 10701871,
+ "longestApexExecutionNano": 110696865
+ },
+ {
+ "batchNumber": 1730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167341012,
+ "shortestRoundTripNano": 80917347,
+ "longestRoundTripNano": 196989286,
+ "averageApexExecutionNano": 65660298,
+ "shortestApexExecutionNano": 6338102,
+ "longestApexExecutionNano": 130166313
+ },
+ {
+ "batchNumber": 1731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146962381,
+ "shortestRoundTripNano": 67972559,
+ "longestRoundTripNano": 171104620,
+ "averageApexExecutionNano": 60965012,
+ "shortestApexExecutionNano": 8664126,
+ "longestApexExecutionNano": 113924266
+ },
+ {
+ "batchNumber": 1732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141760073,
+ "shortestRoundTripNano": 78049931,
+ "longestRoundTripNano": 175756239,
+ "averageApexExecutionNano": 66138999,
+ "shortestApexExecutionNano": 5802141,
+ "longestApexExecutionNano": 133020620
+ },
+ {
+ "batchNumber": 1733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164224313,
+ "shortestRoundTripNano": 65425147,
+ "longestRoundTripNano": 202994734,
+ "averageApexExecutionNano": 50833776,
+ "shortestApexExecutionNano": 11499416,
+ "longestApexExecutionNano": 132758766
+ },
+ {
+ "batchNumber": 1734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157540055,
+ "shortestRoundTripNano": 43111222,
+ "longestRoundTripNano": 194552013,
+ "averageApexExecutionNano": 58321703,
+ "shortestApexExecutionNano": 9816951,
+ "longestApexExecutionNano": 143321599
+ },
+ {
+ "batchNumber": 1735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164451003,
+ "shortestRoundTripNano": 68043397,
+ "longestRoundTripNano": 201631066,
+ "averageApexExecutionNano": 80412141,
+ "shortestApexExecutionNano": 22159291,
+ "longestApexExecutionNano": 136801060
+ },
+ {
+ "batchNumber": 1736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157155363,
+ "shortestRoundTripNano": 97911182,
+ "longestRoundTripNano": 187139051,
+ "averageApexExecutionNano": 66386022,
+ "shortestApexExecutionNano": 6749931,
+ "longestApexExecutionNano": 131727344
+ },
+ {
+ "batchNumber": 1737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175315609,
+ "shortestRoundTripNano": 74716182,
+ "longestRoundTripNano": 204423548,
+ "averageApexExecutionNano": 71876967,
+ "shortestApexExecutionNano": 8196595,
+ "longestApexExecutionNano": 144912031
+ },
+ {
+ "batchNumber": 1738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154194927,
+ "shortestRoundTripNano": 84711666,
+ "longestRoundTripNano": 181938895,
+ "averageApexExecutionNano": 71848503,
+ "shortestApexExecutionNano": 9755860,
+ "longestApexExecutionNano": 127320455
+ },
+ {
+ "batchNumber": 1739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149766147,
+ "shortestRoundTripNano": 83591646,
+ "longestRoundTripNano": 184528919,
+ "averageApexExecutionNano": 66034455,
+ "shortestApexExecutionNano": 12087894,
+ "longestApexExecutionNano": 123604645
+ },
+ {
+ "batchNumber": 1740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157750661,
+ "shortestRoundTripNano": 88581910,
+ "longestRoundTripNano": 184211094,
+ "averageApexExecutionNano": 75427718,
+ "shortestApexExecutionNano": 12133054,
+ "longestApexExecutionNano": 134035131
+ },
+ {
+ "batchNumber": 1741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151254134,
+ "shortestRoundTripNano": 76859582,
+ "longestRoundTripNano": 175658915,
+ "averageApexExecutionNano": 54533978,
+ "shortestApexExecutionNano": 5506446,
+ "longestApexExecutionNano": 115132355
+ },
+ {
+ "batchNumber": 1742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159909439,
+ "shortestRoundTripNano": 77396423,
+ "longestRoundTripNano": 198026961,
+ "averageApexExecutionNano": 46702538,
+ "shortestApexExecutionNano": 6601298,
+ "longestApexExecutionNano": 103300481
+ },
+ {
+ "batchNumber": 1743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137221285,
+ "shortestRoundTripNano": 42051710,
+ "longestRoundTripNano": 163663555,
+ "averageApexExecutionNano": 58572447,
+ "shortestApexExecutionNano": 10093317,
+ "longestApexExecutionNano": 113636954
+ },
+ {
+ "batchNumber": 1744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149532639,
+ "shortestRoundTripNano": 77201592,
+ "longestRoundTripNano": 176667884,
+ "averageApexExecutionNano": 56861854,
+ "shortestApexExecutionNano": 7961471,
+ "longestApexExecutionNano": 126627818
+ },
+ {
+ "batchNumber": 1745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142646475,
+ "shortestRoundTripNano": 59722990,
+ "longestRoundTripNano": 176799625,
+ "averageApexExecutionNano": 44879790,
+ "shortestApexExecutionNano": 9261950,
+ "longestApexExecutionNano": 108916868
+ },
+ {
+ "batchNumber": 1746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140430891,
+ "shortestRoundTripNano": 45437996,
+ "longestRoundTripNano": 169564987,
+ "averageApexExecutionNano": 62710236,
+ "shortestApexExecutionNano": 7951285,
+ "longestApexExecutionNano": 110723521
+ },
+ {
+ "batchNumber": 1747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150200379,
+ "shortestRoundTripNano": 59133071,
+ "longestRoundTripNano": 203007980,
+ "averageApexExecutionNano": 52549539,
+ "shortestApexExecutionNano": 5808253,
+ "longestApexExecutionNano": 113227912
+ },
+ {
+ "batchNumber": 1748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142182585,
+ "shortestRoundTripNano": 47318480,
+ "longestRoundTripNano": 171958695,
+ "averageApexExecutionNano": 65628050,
+ "shortestApexExecutionNano": 6288513,
+ "longestApexExecutionNano": 125741240
+ },
+ {
+ "batchNumber": 1749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133390533,
+ "shortestRoundTripNano": 57715583,
+ "longestRoundTripNano": 158859280,
+ "averageApexExecutionNano": 56526125,
+ "shortestApexExecutionNano": 7507300,
+ "longestApexExecutionNano": 114345505
+ },
+ {
+ "batchNumber": 1750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178820961,
+ "shortestRoundTripNano": 96962663,
+ "longestRoundTripNano": 224402273,
+ "averageApexExecutionNano": 68412912,
+ "shortestApexExecutionNano": 8411716,
+ "longestApexExecutionNano": 129952897
+ },
+ {
+ "batchNumber": 1751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142052548,
+ "shortestRoundTripNano": 68269895,
+ "longestRoundTripNano": 175247701,
+ "averageApexExecutionNano": 50002356,
+ "shortestApexExecutionNano": 5530737,
+ "longestApexExecutionNano": 120934835
+ },
+ {
+ "batchNumber": 1752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162716130,
+ "shortestRoundTripNano": 62047241,
+ "longestRoundTripNano": 193486651,
+ "averageApexExecutionNano": 55402067,
+ "shortestApexExecutionNano": 8615674,
+ "longestApexExecutionNano": 120893439
+ },
+ {
+ "batchNumber": 1753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154664834,
+ "shortestRoundTripNano": 40381338,
+ "longestRoundTripNano": 189451937,
+ "averageApexExecutionNano": 76552105,
+ "shortestApexExecutionNano": 4911216,
+ "longestApexExecutionNano": 146187447
+ },
+ {
+ "batchNumber": 1754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35324",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160809381,
+ "shortestRoundTripNano": 58270912,
+ "longestRoundTripNano": 195152571,
+ "averageApexExecutionNano": 76313635,
+ "shortestApexExecutionNano": 6189690,
+ "longestApexExecutionNano": 141745492
+ },
+ {
+ "batchNumber": 1755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144147184,
+ "shortestRoundTripNano": 53639341,
+ "longestRoundTripNano": 177340859,
+ "averageApexExecutionNano": 40127329,
+ "shortestApexExecutionNano": 8970330,
+ "longestApexExecutionNano": 91205199
+ },
+ {
+ "batchNumber": 1756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157810738,
+ "shortestRoundTripNano": 54202969,
+ "longestRoundTripNano": 189845822,
+ "averageApexExecutionNano": 61755512,
+ "shortestApexExecutionNano": 11083190,
+ "longestApexExecutionNano": 127538213
+ },
+ {
+ "batchNumber": 1757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150453469,
+ "shortestRoundTripNano": 77987108,
+ "longestRoundTripNano": 176974909,
+ "averageApexExecutionNano": 68915861,
+ "shortestApexExecutionNano": 10297596,
+ "longestApexExecutionNano": 125163089
+ },
+ {
+ "batchNumber": 1758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154387794,
+ "shortestRoundTripNano": 67453132,
+ "longestRoundTripNano": 183002450,
+ "averageApexExecutionNano": 53757042,
+ "shortestApexExecutionNano": 9447125,
+ "longestApexExecutionNano": 111864466
+ },
+ {
+ "batchNumber": 1759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133939365,
+ "shortestRoundTripNano": 64221842,
+ "longestRoundTripNano": 159265909,
+ "averageApexExecutionNano": 54332148,
+ "shortestApexExecutionNano": 8710081,
+ "longestApexExecutionNano": 119112023
+ },
+ {
+ "batchNumber": 1760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138050136,
+ "shortestRoundTripNano": 74294691,
+ "longestRoundTripNano": 162238535,
+ "averageApexExecutionNano": 55144998,
+ "shortestApexExecutionNano": 9978363,
+ "longestApexExecutionNano": 115266568
+ },
+ {
+ "batchNumber": 1761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144604460,
+ "shortestRoundTripNano": 75268241,
+ "longestRoundTripNano": 180426317,
+ "averageApexExecutionNano": 51482755,
+ "shortestApexExecutionNano": 7082762,
+ "longestApexExecutionNano": 119664949
+ },
+ {
+ "batchNumber": 1762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145427277,
+ "shortestRoundTripNano": 66702551,
+ "longestRoundTripNano": 179174095,
+ "averageApexExecutionNano": 62870530,
+ "shortestApexExecutionNano": 8542635,
+ "longestApexExecutionNano": 123562544
+ },
+ {
+ "batchNumber": 1763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143724139,
+ "shortestRoundTripNano": 52065919,
+ "longestRoundTripNano": 192803602,
+ "averageApexExecutionNano": 72742649,
+ "shortestApexExecutionNano": 6209466,
+ "longestApexExecutionNano": 167893538
+ },
+ {
+ "batchNumber": 1764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 209997159,
+ "shortestRoundTripNano": 63645645,
+ "longestRoundTripNano": 243087385,
+ "averageApexExecutionNano": 107862759,
+ "shortestApexExecutionNano": 7644657,
+ "longestApexExecutionNano": 197052734
+ },
+ {
+ "batchNumber": 1765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136108848,
+ "shortestRoundTripNano": 47186050,
+ "longestRoundTripNano": 179725866,
+ "averageApexExecutionNano": 51156844,
+ "shortestApexExecutionNano": 9177655,
+ "longestApexExecutionNano": 110947621
+ },
+ {
+ "batchNumber": 1766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138159211,
+ "shortestRoundTripNano": 60636899,
+ "longestRoundTripNano": 168732073,
+ "averageApexExecutionNano": 52371016,
+ "shortestApexExecutionNano": 7270103,
+ "longestApexExecutionNano": 105847364
+ },
+ {
+ "batchNumber": 1767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147770602,
+ "shortestRoundTripNano": 81977860,
+ "longestRoundTripNano": 174943506,
+ "averageApexExecutionNano": 63536384,
+ "shortestApexExecutionNano": 12968322,
+ "longestApexExecutionNano": 130624057
+ },
+ {
+ "batchNumber": 1768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156624302,
+ "shortestRoundTripNano": 63221336,
+ "longestRoundTripNano": 190962407,
+ "averageApexExecutionNano": 66428876,
+ "shortestApexExecutionNano": 7729888,
+ "longestApexExecutionNano": 134389388
+ },
+ {
+ "batchNumber": 1769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35338",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173040909,
+ "shortestRoundTripNano": 78361884,
+ "longestRoundTripNano": 201000191,
+ "averageApexExecutionNano": 94636628,
+ "shortestApexExecutionNano": 11657027,
+ "longestApexExecutionNano": 161672163
+ },
+ {
+ "batchNumber": 1770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135996358,
+ "shortestRoundTripNano": 70358081,
+ "longestRoundTripNano": 163103468,
+ "averageApexExecutionNano": 51517209,
+ "shortestApexExecutionNano": 4593615,
+ "longestApexExecutionNano": 102436492
+ },
+ {
+ "batchNumber": 1771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133165597,
+ "shortestRoundTripNano": 59721035,
+ "longestRoundTripNano": 164638619,
+ "averageApexExecutionNano": 63149878,
+ "shortestApexExecutionNano": 8901564,
+ "longestApexExecutionNano": 113578551
+ },
+ {
+ "batchNumber": 1772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132565434,
+ "shortestRoundTripNano": 34909940,
+ "longestRoundTripNano": 160775023,
+ "averageApexExecutionNano": 48327076,
+ "shortestApexExecutionNano": 9481939,
+ "longestApexExecutionNano": 122695635
+ },
+ {
+ "batchNumber": 1773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160217792,
+ "shortestRoundTripNano": 53146646,
+ "longestRoundTripNano": 190411506,
+ "averageApexExecutionNano": 77194360,
+ "shortestApexExecutionNano": 8403653,
+ "longestApexExecutionNano": 136295828
+ },
+ {
+ "batchNumber": 1774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153869411,
+ "shortestRoundTripNano": 61156475,
+ "longestRoundTripNano": 185477633,
+ "averageApexExecutionNano": 60040478,
+ "shortestApexExecutionNano": 9337454,
+ "longestApexExecutionNano": 126110706
+ },
+ {
+ "batchNumber": 1775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144574005,
+ "shortestRoundTripNano": 47140877,
+ "longestRoundTripNano": 171598114,
+ "averageApexExecutionNano": 55743353,
+ "shortestApexExecutionNano": 9886456,
+ "longestApexExecutionNano": 110797485
+ },
+ {
+ "batchNumber": 1776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134322984,
+ "shortestRoundTripNano": 65914057,
+ "longestRoundTripNano": 163004230,
+ "averageApexExecutionNano": 48949720,
+ "shortestApexExecutionNano": 7623988,
+ "longestApexExecutionNano": 120281851
+ },
+ {
+ "batchNumber": 1777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141378135,
+ "shortestRoundTripNano": 77972766,
+ "longestRoundTripNano": 167688602,
+ "averageApexExecutionNano": 48976409,
+ "shortestApexExecutionNano": 5671330,
+ "longestApexExecutionNano": 98738141
+ },
+ {
+ "batchNumber": 1778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127910955,
+ "shortestRoundTripNano": 51046411,
+ "longestRoundTripNano": 162742481,
+ "averageApexExecutionNano": 56414887,
+ "shortestApexExecutionNano": 7239997,
+ "longestApexExecutionNano": 110073432
+ },
+ {
+ "batchNumber": 1779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172846810,
+ "shortestRoundTripNano": 76013485,
+ "longestRoundTripNano": 206999753,
+ "averageApexExecutionNano": 81882534,
+ "shortestApexExecutionNano": 13346619,
+ "longestApexExecutionNano": 155315432
+ },
+ {
+ "batchNumber": 1780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148487152,
+ "shortestRoundTripNano": 63780939,
+ "longestRoundTripNano": 184426003,
+ "averageApexExecutionNano": 53923794,
+ "shortestApexExecutionNano": 6539216,
+ "longestApexExecutionNano": 139062869
+ },
+ {
+ "batchNumber": 1781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146499535,
+ "shortestRoundTripNano": 77637556,
+ "longestRoundTripNano": 179619843,
+ "averageApexExecutionNano": 62008248,
+ "shortestApexExecutionNano": 8730778,
+ "longestApexExecutionNano": 124612568
+ },
+ {
+ "batchNumber": 1782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136460516,
+ "shortestRoundTripNano": 53581237,
+ "longestRoundTripNano": 161747676,
+ "averageApexExecutionNano": 67999770,
+ "shortestApexExecutionNano": 9217774,
+ "longestApexExecutionNano": 115712161
+ },
+ {
+ "batchNumber": 1783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146549791,
+ "shortestRoundTripNano": 78743262,
+ "longestRoundTripNano": 175026256,
+ "averageApexExecutionNano": 63606890,
+ "shortestApexExecutionNano": 16119846,
+ "longestApexExecutionNano": 127348454
+ },
+ {
+ "batchNumber": 1784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146922100,
+ "shortestRoundTripNano": 62524575,
+ "longestRoundTripNano": 185851458,
+ "averageApexExecutionNano": 53469637,
+ "shortestApexExecutionNano": 9112733,
+ "longestApexExecutionNano": 114141065
+ },
+ {
+ "batchNumber": 1785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135676578,
+ "shortestRoundTripNano": 71844760,
+ "longestRoundTripNano": 174166523,
+ "averageApexExecutionNano": 60189952,
+ "shortestApexExecutionNano": 7118776,
+ "longestApexExecutionNano": 124358894
+ },
+ {
+ "batchNumber": 1786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35342",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144934284,
+ "shortestRoundTripNano": 57581178,
+ "longestRoundTripNano": 176227646,
+ "averageApexExecutionNano": 65293918,
+ "shortestApexExecutionNano": 5269665,
+ "longestApexExecutionNano": 112186785
+ },
+ {
+ "batchNumber": 1787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148841065,
+ "shortestRoundTripNano": 69356690,
+ "longestRoundTripNano": 174582444,
+ "averageApexExecutionNano": 69644525,
+ "shortestApexExecutionNano": 12757015,
+ "longestApexExecutionNano": 124877623
+ },
+ {
+ "batchNumber": 1788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153209903,
+ "shortestRoundTripNano": 67490439,
+ "longestRoundTripNano": 187903389,
+ "averageApexExecutionNano": 61681173,
+ "shortestApexExecutionNano": 7108098,
+ "longestApexExecutionNano": 135210155
+ },
+ {
+ "batchNumber": 1789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133590861,
+ "shortestRoundTripNano": 67062792,
+ "longestRoundTripNano": 157267824,
+ "averageApexExecutionNano": 55359635,
+ "shortestApexExecutionNano": 12722668,
+ "longestApexExecutionNano": 107418215
+ },
+ {
+ "batchNumber": 1790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143756333,
+ "shortestRoundTripNano": 41852129,
+ "longestRoundTripNano": 174850434,
+ "averageApexExecutionNano": 58219580,
+ "shortestApexExecutionNano": 8841932,
+ "longestApexExecutionNano": 119675092
+ },
+ {
+ "batchNumber": 1791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 247796849,
+ "shortestRoundTripNano": 47867774,
+ "longestRoundTripNano": 286120124,
+ "averageApexExecutionNano": 117821375,
+ "shortestApexExecutionNano": 7184609,
+ "longestApexExecutionNano": 237992024
+ },
+ {
+ "batchNumber": 1792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35350",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175210332,
+ "shortestRoundTripNano": 93212058,
+ "longestRoundTripNano": 205763939,
+ "averageApexExecutionNano": 77898130,
+ "shortestApexExecutionNano": 15427771,
+ "longestApexExecutionNano": 132077121
+ },
+ {
+ "batchNumber": 1793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131492477,
+ "shortestRoundTripNano": 53595493,
+ "longestRoundTripNano": 157695285,
+ "averageApexExecutionNano": 58130228,
+ "shortestApexExecutionNano": 11017232,
+ "longestApexExecutionNano": 111247055
+ },
+ {
+ "batchNumber": 1794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133441612,
+ "shortestRoundTripNano": 63913452,
+ "longestRoundTripNano": 159321421,
+ "averageApexExecutionNano": 60013138,
+ "shortestApexExecutionNano": 11338252,
+ "longestApexExecutionNano": 124117149
+ },
+ {
+ "batchNumber": 1795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147861323,
+ "shortestRoundTripNano": 59710908,
+ "longestRoundTripNano": 182569179,
+ "averageApexExecutionNano": 65316931,
+ "shortestApexExecutionNano": 5732857,
+ "longestApexExecutionNano": 122423888
+ },
+ {
+ "batchNumber": 1796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144650604,
+ "shortestRoundTripNano": 53398897,
+ "longestRoundTripNano": 175652928,
+ "averageApexExecutionNano": 57118093,
+ "shortestApexExecutionNano": 17174601,
+ "longestApexExecutionNano": 114361803
+ },
+ {
+ "batchNumber": 1797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136922069,
+ "shortestRoundTripNano": 28051701,
+ "longestRoundTripNano": 167413751,
+ "averageApexExecutionNano": 49861331,
+ "shortestApexExecutionNano": 7623050,
+ "longestApexExecutionNano": 108601470
+ },
+ {
+ "batchNumber": 1798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152440872,
+ "shortestRoundTripNano": 67154231,
+ "longestRoundTripNano": 191205889,
+ "averageApexExecutionNano": 54312375,
+ "shortestApexExecutionNano": 6614534,
+ "longestApexExecutionNano": 156514680
+ },
+ {
+ "batchNumber": 1799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145540642,
+ "shortestRoundTripNano": 47974205,
+ "longestRoundTripNano": 173558342,
+ "averageApexExecutionNano": 65705601,
+ "shortestApexExecutionNano": 11132125,
+ "longestApexExecutionNano": 123803952
+ },
+ {
+ "batchNumber": 1800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161269746,
+ "shortestRoundTripNano": 113412834,
+ "longestRoundTripNano": 184557293,
+ "averageApexExecutionNano": 68189869,
+ "shortestApexExecutionNano": 6722065,
+ "longestApexExecutionNano": 128321073
+ },
+ {
+ "batchNumber": 1801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159342400,
+ "shortestRoundTripNano": 54545894,
+ "longestRoundTripNano": 190238914,
+ "averageApexExecutionNano": 68670791,
+ "shortestApexExecutionNano": 10007977,
+ "longestApexExecutionNano": 116344255
+ },
+ {
+ "batchNumber": 1802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157856941,
+ "shortestRoundTripNano": 64076199,
+ "longestRoundTripNano": 189233657,
+ "averageApexExecutionNano": 55811725,
+ "shortestApexExecutionNano": 8192311,
+ "longestApexExecutionNano": 135349852
+ },
+ {
+ "batchNumber": 1803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196396447,
+ "shortestRoundTripNano": 56400756,
+ "longestRoundTripNano": 272317779,
+ "averageApexExecutionNano": 55623856,
+ "shortestApexExecutionNano": 9808528,
+ "longestApexExecutionNano": 161143296
+ },
+ {
+ "batchNumber": 1804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158400781,
+ "shortestRoundTripNano": 70028441,
+ "longestRoundTripNano": 190324073,
+ "averageApexExecutionNano": 64196359,
+ "shortestApexExecutionNano": 8251022,
+ "longestApexExecutionNano": 130929686
+ },
+ {
+ "batchNumber": 1805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148635111,
+ "shortestRoundTripNano": 52757851,
+ "longestRoundTripNano": 184818215,
+ "averageApexExecutionNano": 65286717,
+ "shortestApexExecutionNano": 7120282,
+ "longestApexExecutionNano": 129085991
+ },
+ {
+ "batchNumber": 1806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144893386,
+ "shortestRoundTripNano": 67743463,
+ "longestRoundTripNano": 175527265,
+ "averageApexExecutionNano": 52442175,
+ "shortestApexExecutionNano": 5375869,
+ "longestApexExecutionNano": 114132275
+ },
+ {
+ "batchNumber": 1807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150679654,
+ "shortestRoundTripNano": 69266045,
+ "longestRoundTripNano": 181848774,
+ "averageApexExecutionNano": 63729885,
+ "shortestApexExecutionNano": 8420368,
+ "longestApexExecutionNano": 105406700
+ },
+ {
+ "batchNumber": 1808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152918076,
+ "shortestRoundTripNano": 37135364,
+ "longestRoundTripNano": 187630625,
+ "averageApexExecutionNano": 63761193,
+ "shortestApexExecutionNano": 13841132,
+ "longestApexExecutionNano": 137464269
+ },
+ {
+ "batchNumber": 1809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171162852,
+ "shortestRoundTripNano": 65516024,
+ "longestRoundTripNano": 205406867,
+ "averageApexExecutionNano": 62244393,
+ "shortestApexExecutionNano": 6874544,
+ "longestApexExecutionNano": 138991508
+ },
+ {
+ "batchNumber": 1810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166975246,
+ "shortestRoundTripNano": 84568293,
+ "longestRoundTripNano": 195720202,
+ "averageApexExecutionNano": 64092493,
+ "shortestApexExecutionNano": 13525830,
+ "longestApexExecutionNano": 128309997
+ },
+ {
+ "batchNumber": 1811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159272761,
+ "shortestRoundTripNano": 40528032,
+ "longestRoundTripNano": 191163649,
+ "averageApexExecutionNano": 82576804,
+ "shortestApexExecutionNano": 10023914,
+ "longestApexExecutionNano": 146735806
+ },
+ {
+ "batchNumber": 1812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154723635,
+ "shortestRoundTripNano": 81837923,
+ "longestRoundTripNano": 188881999,
+ "averageApexExecutionNano": 65476246,
+ "shortestApexExecutionNano": 5064050,
+ "longestApexExecutionNano": 127169811
+ },
+ {
+ "batchNumber": 1813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136273370,
+ "shortestRoundTripNano": 54312834,
+ "longestRoundTripNano": 174165360,
+ "averageApexExecutionNano": 44444055,
+ "shortestApexExecutionNano": 6450826,
+ "longestApexExecutionNano": 136368249
+ },
+ {
+ "batchNumber": 1814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145073090,
+ "shortestRoundTripNano": 33839927,
+ "longestRoundTripNano": 174641944,
+ "averageApexExecutionNano": 68106411,
+ "shortestApexExecutionNano": 5099242,
+ "longestApexExecutionNano": 123912476
+ },
+ {
+ "batchNumber": 1815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149525191,
+ "shortestRoundTripNano": 87807998,
+ "longestRoundTripNano": 173406595,
+ "averageApexExecutionNano": 42305582,
+ "shortestApexExecutionNano": 5757531,
+ "longestApexExecutionNano": 120675033
+ },
+ {
+ "batchNumber": 1816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165782412,
+ "shortestRoundTripNano": 45145960,
+ "longestRoundTripNano": 190961639,
+ "averageApexExecutionNano": 70129172,
+ "shortestApexExecutionNano": 14261679,
+ "longestApexExecutionNano": 139542477
+ },
+ {
+ "batchNumber": 1817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164018043,
+ "shortestRoundTripNano": 67292373,
+ "longestRoundTripNano": 207561903,
+ "averageApexExecutionNano": 63184095,
+ "shortestApexExecutionNano": 12494781,
+ "longestApexExecutionNano": 147294383
+ },
+ {
+ "batchNumber": 1818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160213784,
+ "shortestRoundTripNano": 65453650,
+ "longestRoundTripNano": 201032362,
+ "averageApexExecutionNano": 74774323,
+ "shortestApexExecutionNano": 5726937,
+ "longestApexExecutionNano": 142835409
+ },
+ {
+ "batchNumber": 1819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149899249,
+ "shortestRoundTripNano": 100491411,
+ "longestRoundTripNano": 174839099,
+ "averageApexExecutionNano": 54067027,
+ "shortestApexExecutionNano": 5257390,
+ "longestApexExecutionNano": 118050679
+ },
+ {
+ "batchNumber": 1820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146517690,
+ "shortestRoundTripNano": 62435477,
+ "longestRoundTripNano": 172350548,
+ "averageApexExecutionNano": 59502132,
+ "shortestApexExecutionNano": 6568183,
+ "longestApexExecutionNano": 101772925
+ },
+ {
+ "batchNumber": 1821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136665193,
+ "shortestRoundTripNano": 63392855,
+ "longestRoundTripNano": 160946951,
+ "averageApexExecutionNano": 62632044,
+ "shortestApexExecutionNano": 9197411,
+ "longestApexExecutionNano": 111524925
+ },
+ {
+ "batchNumber": 1822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155831659,
+ "shortestRoundTripNano": 81698800,
+ "longestRoundTripNano": 185619330,
+ "averageApexExecutionNano": 72873483,
+ "shortestApexExecutionNano": 7387486,
+ "longestApexExecutionNano": 136035423
+ },
+ {
+ "batchNumber": 1823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136110792,
+ "shortestRoundTripNano": 65048546,
+ "longestRoundTripNano": 162032653,
+ "averageApexExecutionNano": 50557539,
+ "shortestApexExecutionNano": 10311702,
+ "longestApexExecutionNano": 107734188
+ },
+ {
+ "batchNumber": 1824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159491106,
+ "shortestRoundTripNano": 67817066,
+ "longestRoundTripNano": 198159619,
+ "averageApexExecutionNano": 52180228,
+ "shortestApexExecutionNano": 9142031,
+ "longestApexExecutionNano": 133948357
+ },
+ {
+ "batchNumber": 1825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159171827,
+ "shortestRoundTripNano": 75816079,
+ "longestRoundTripNano": 185950802,
+ "averageApexExecutionNano": 49956114,
+ "shortestApexExecutionNano": 5117893,
+ "longestApexExecutionNano": 122748197
+ },
+ {
+ "batchNumber": 1826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151587840,
+ "shortestRoundTripNano": 52266627,
+ "longestRoundTripNano": 188413215,
+ "averageApexExecutionNano": 55089946,
+ "shortestApexExecutionNano": 9517269,
+ "longestApexExecutionNano": 121904261
+ },
+ {
+ "batchNumber": 1827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155895614,
+ "shortestRoundTripNano": 61126711,
+ "longestRoundTripNano": 187352341,
+ "averageApexExecutionNano": 62066280,
+ "shortestApexExecutionNano": 8835026,
+ "longestApexExecutionNano": 137885421
+ },
+ {
+ "batchNumber": 1828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156717290,
+ "shortestRoundTripNano": 83936754,
+ "longestRoundTripNano": 184150826,
+ "averageApexExecutionNano": 64386188,
+ "shortestApexExecutionNano": 11373594,
+ "longestApexExecutionNano": 131783863
+ },
+ {
+ "batchNumber": 1829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128058556,
+ "shortestRoundTripNano": 61233485,
+ "longestRoundTripNano": 155786910,
+ "averageApexExecutionNano": 59877937,
+ "shortestApexExecutionNano": 5213691,
+ "longestApexExecutionNano": 111752071
+ },
+ {
+ "batchNumber": 1830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146631150,
+ "shortestRoundTripNano": 75392536,
+ "longestRoundTripNano": 178029521,
+ "averageApexExecutionNano": 59923292,
+ "shortestApexExecutionNano": 4307026,
+ "longestApexExecutionNano": 119031960
+ },
+ {
+ "batchNumber": 1831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161173561,
+ "shortestRoundTripNano": 47540109,
+ "longestRoundTripNano": 197824359,
+ "averageApexExecutionNano": 58889774,
+ "shortestApexExecutionNano": 6978840,
+ "longestApexExecutionNano": 108341684
+ },
+ {
+ "batchNumber": 1832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186761048,
+ "shortestRoundTripNano": 88892727,
+ "longestRoundTripNano": 211436180,
+ "averageApexExecutionNano": 83675633,
+ "shortestApexExecutionNano": 15725042,
+ "longestApexExecutionNano": 164333203
+ },
+ {
+ "batchNumber": 1833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166282741,
+ "shortestRoundTripNano": 58814353,
+ "longestRoundTripNano": 193795396,
+ "averageApexExecutionNano": 62375866,
+ "shortestApexExecutionNano": 11792938,
+ "longestApexExecutionNano": 149208419
+ },
+ {
+ "batchNumber": 1834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136459826,
+ "shortestRoundTripNano": 67964044,
+ "longestRoundTripNano": 174445395,
+ "averageApexExecutionNano": 55384879,
+ "shortestApexExecutionNano": 5980213,
+ "longestApexExecutionNano": 116701996
+ },
+ {
+ "batchNumber": 1835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157262347,
+ "shortestRoundTripNano": 64457053,
+ "longestRoundTripNano": 207637415,
+ "averageApexExecutionNano": 40643979,
+ "shortestApexExecutionNano": 8579729,
+ "longestApexExecutionNano": 103741890
+ },
+ {
+ "batchNumber": 1836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154364442,
+ "shortestRoundTripNano": 45287578,
+ "longestRoundTripNano": 192370114,
+ "averageApexExecutionNano": 61420624,
+ "shortestApexExecutionNano": 6289555,
+ "longestApexExecutionNano": 132678244
+ },
+ {
+ "batchNumber": 1837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151659605,
+ "shortestRoundTripNano": 71932100,
+ "longestRoundTripNano": 182818586,
+ "averageApexExecutionNano": 69878468,
+ "shortestApexExecutionNano": 9364654,
+ "longestApexExecutionNano": 137822592
+ },
+ {
+ "batchNumber": 1838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138058310,
+ "shortestRoundTripNano": 74014856,
+ "longestRoundTripNano": 173341885,
+ "averageApexExecutionNano": 44883150,
+ "shortestApexExecutionNano": 5858563,
+ "longestApexExecutionNano": 130379987
+ },
+ {
+ "batchNumber": 1839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146252716,
+ "shortestRoundTripNano": 84341029,
+ "longestRoundTripNano": 175252278,
+ "averageApexExecutionNano": 72412675,
+ "shortestApexExecutionNano": 12513152,
+ "longestApexExecutionNano": 117083388
+ },
+ {
+ "batchNumber": 1840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162485000,
+ "shortestRoundTripNano": 76656435,
+ "longestRoundTripNano": 186329820,
+ "averageApexExecutionNano": 68498172,
+ "shortestApexExecutionNano": 6654337,
+ "longestApexExecutionNano": 145277553
+ },
+ {
+ "batchNumber": 1841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151295429,
+ "shortestRoundTripNano": 23729261,
+ "longestRoundTripNano": 185234048,
+ "averageApexExecutionNano": 67414632,
+ "shortestApexExecutionNano": 5389271,
+ "longestApexExecutionNano": 121772778
+ },
+ {
+ "batchNumber": 1842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140261500,
+ "shortestRoundTripNano": 43596611,
+ "longestRoundTripNano": 176116809,
+ "averageApexExecutionNano": 63790394,
+ "shortestApexExecutionNano": 6482876,
+ "longestApexExecutionNano": 133852731
+ },
+ {
+ "batchNumber": 1843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167559017,
+ "shortestRoundTripNano": 53432523,
+ "longestRoundTripNano": 202703077,
+ "averageApexExecutionNano": 67414399,
+ "shortestApexExecutionNano": 7853834,
+ "longestApexExecutionNano": 144866141
+ },
+ {
+ "batchNumber": 1844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145112432,
+ "shortestRoundTripNano": 63533059,
+ "longestRoundTripNano": 174017775,
+ "averageApexExecutionNano": 57914451,
+ "shortestApexExecutionNano": 15148249,
+ "longestApexExecutionNano": 122622123
+ },
+ {
+ "batchNumber": 1845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164191932,
+ "shortestRoundTripNano": 60893599,
+ "longestRoundTripNano": 199383509,
+ "averageApexExecutionNano": 61688845,
+ "shortestApexExecutionNano": 10345937,
+ "longestApexExecutionNano": 126604763
+ },
+ {
+ "batchNumber": 1846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147096490,
+ "shortestRoundTripNano": 77195154,
+ "longestRoundTripNano": 180093228,
+ "averageApexExecutionNano": 55185179,
+ "shortestApexExecutionNano": 6579268,
+ "longestApexExecutionNano": 138884438
+ },
+ {
+ "batchNumber": 1847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152323316,
+ "shortestRoundTripNano": 43113966,
+ "longestRoundTripNano": 180104354,
+ "averageApexExecutionNano": 58393699,
+ "shortestApexExecutionNano": 8690187,
+ "longestApexExecutionNano": 119798789
+ },
+ {
+ "batchNumber": 1848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161009704,
+ "shortestRoundTripNano": 69645850,
+ "longestRoundTripNano": 186768280,
+ "averageApexExecutionNano": 76847321,
+ "shortestApexExecutionNano": 7451046,
+ "longestApexExecutionNano": 129738421
+ },
+ {
+ "batchNumber": 1849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150220792,
+ "shortestRoundTripNano": 62495564,
+ "longestRoundTripNano": 190865647,
+ "averageApexExecutionNano": 57798513,
+ "shortestApexExecutionNano": 17970855,
+ "longestApexExecutionNano": 122982781
+ },
+ {
+ "batchNumber": 1850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138483031,
+ "shortestRoundTripNano": 63656656,
+ "longestRoundTripNano": 180138083,
+ "averageApexExecutionNano": 41475154,
+ "shortestApexExecutionNano": 7212108,
+ "longestApexExecutionNano": 104964943
+ },
+ {
+ "batchNumber": 1851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160304302,
+ "shortestRoundTripNano": 61884739,
+ "longestRoundTripNano": 189075075,
+ "averageApexExecutionNano": 66876566,
+ "shortestApexExecutionNano": 5565928,
+ "longestApexExecutionNano": 126511451
+ },
+ {
+ "batchNumber": 1852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136981396,
+ "shortestRoundTripNano": 63498269,
+ "longestRoundTripNano": 168712154,
+ "averageApexExecutionNano": 66369996,
+ "shortestApexExecutionNano": 5395335,
+ "longestApexExecutionNano": 122109436
+ },
+ {
+ "batchNumber": 1853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144260735,
+ "shortestRoundTripNano": 73684850,
+ "longestRoundTripNano": 172428322,
+ "averageApexExecutionNano": 52976680,
+ "shortestApexExecutionNano": 8383621,
+ "longestApexExecutionNano": 114326588
+ },
+ {
+ "batchNumber": 1854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158867995,
+ "shortestRoundTripNano": 50568433,
+ "longestRoundTripNano": 191867950,
+ "averageApexExecutionNano": 62376410,
+ "shortestApexExecutionNano": 4873731,
+ "longestApexExecutionNano": 153901796
+ },
+ {
+ "batchNumber": 1855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131491147,
+ "shortestRoundTripNano": 55691753,
+ "longestRoundTripNano": 156518619,
+ "averageApexExecutionNano": 54696038,
+ "shortestApexExecutionNano": 6822769,
+ "longestApexExecutionNano": 100652801
+ },
+ {
+ "batchNumber": 1856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145962084,
+ "shortestRoundTripNano": 53766357,
+ "longestRoundTripNano": 175267128,
+ "averageApexExecutionNano": 59960703,
+ "shortestApexExecutionNano": 6019733,
+ "longestApexExecutionNano": 107945138
+ },
+ {
+ "batchNumber": 1857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139120013,
+ "shortestRoundTripNano": 82762538,
+ "longestRoundTripNano": 161659840,
+ "averageApexExecutionNano": 60936759,
+ "shortestApexExecutionNano": 12489236,
+ "longestApexExecutionNano": 105000838
+ },
+ {
+ "batchNumber": 1858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137746840,
+ "shortestRoundTripNano": 59079872,
+ "longestRoundTripNano": 168880041,
+ "averageApexExecutionNano": 51465676,
+ "shortestApexExecutionNano": 9688057,
+ "longestApexExecutionNano": 94857232
+ },
+ {
+ "batchNumber": 1859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132117932,
+ "shortestRoundTripNano": 65977874,
+ "longestRoundTripNano": 155317192,
+ "averageApexExecutionNano": 62335654,
+ "shortestApexExecutionNano": 5242939,
+ "longestApexExecutionNano": 109266345
+ },
+ {
+ "batchNumber": 1860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154349393,
+ "shortestRoundTripNano": 58467194,
+ "longestRoundTripNano": 194134596,
+ "averageApexExecutionNano": 59354041,
+ "shortestApexExecutionNano": 7338856,
+ "longestApexExecutionNano": 144829503
+ },
+ {
+ "batchNumber": 1861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154413350,
+ "shortestRoundTripNano": 66129013,
+ "longestRoundTripNano": 189810718,
+ "averageApexExecutionNano": 74818887,
+ "shortestApexExecutionNano": 23287483,
+ "longestApexExecutionNano": 126208643
+ },
+ {
+ "batchNumber": 1862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137745197,
+ "shortestRoundTripNano": 53014715,
+ "longestRoundTripNano": 165466237,
+ "averageApexExecutionNano": 60142838,
+ "shortestApexExecutionNano": 7348598,
+ "longestApexExecutionNano": 128280887
+ },
+ {
+ "batchNumber": 1863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140580325,
+ "shortestRoundTripNano": 51912079,
+ "longestRoundTripNano": 173928581,
+ "averageApexExecutionNano": 42809830,
+ "shortestApexExecutionNano": 8624778,
+ "longestApexExecutionNano": 94475653
+ },
+ {
+ "batchNumber": 1864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144017809,
+ "shortestRoundTripNano": 41779282,
+ "longestRoundTripNano": 168478623,
+ "averageApexExecutionNano": 65459535,
+ "shortestApexExecutionNano": 9797786,
+ "longestApexExecutionNano": 116033191
+ },
+ {
+ "batchNumber": 1865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160573393,
+ "shortestRoundTripNano": 72759300,
+ "longestRoundTripNano": 196140131,
+ "averageApexExecutionNano": 64187053,
+ "shortestApexExecutionNano": 11595386,
+ "longestApexExecutionNano": 115342565
+ },
+ {
+ "batchNumber": 1866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138453257,
+ "shortestRoundTripNano": 48005072,
+ "longestRoundTripNano": 170723429,
+ "averageApexExecutionNano": 52447045,
+ "shortestApexExecutionNano": 11868879,
+ "longestApexExecutionNano": 108335571
+ },
+ {
+ "batchNumber": 1867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160920345,
+ "shortestRoundTripNano": 73499932,
+ "longestRoundTripNano": 196569376,
+ "averageApexExecutionNano": 69633510,
+ "shortestApexExecutionNano": 11753348,
+ "longestApexExecutionNano": 143350799
+ },
+ {
+ "batchNumber": 1868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149983040,
+ "shortestRoundTripNano": 63096904,
+ "longestRoundTripNano": 187978865,
+ "averageApexExecutionNano": 62583083,
+ "shortestApexExecutionNano": 10822150,
+ "longestApexExecutionNano": 118312056
+ },
+ {
+ "batchNumber": 1869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145402969,
+ "shortestRoundTripNano": 48906642,
+ "longestRoundTripNano": 187359651,
+ "averageApexExecutionNano": 70701244,
+ "shortestApexExecutionNano": 13199688,
+ "longestApexExecutionNano": 120981895
+ },
+ {
+ "batchNumber": 1870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171721865,
+ "shortestRoundTripNano": 66368811,
+ "longestRoundTripNano": 204454052,
+ "averageApexExecutionNano": 83869336,
+ "shortestApexExecutionNano": 13240492,
+ "longestApexExecutionNano": 154332717
+ },
+ {
+ "batchNumber": 1871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163944859,
+ "shortestRoundTripNano": 80936625,
+ "longestRoundTripNano": 193539133,
+ "averageApexExecutionNano": 71472206,
+ "shortestApexExecutionNano": 7733466,
+ "longestApexExecutionNano": 146987527
+ },
+ {
+ "batchNumber": 1872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162744626,
+ "shortestRoundTripNano": 78844168,
+ "longestRoundTripNano": 203921371,
+ "averageApexExecutionNano": 48301034,
+ "shortestApexExecutionNano": 8731196,
+ "longestApexExecutionNano": 140072227
+ },
+ {
+ "batchNumber": 1873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134262772,
+ "shortestRoundTripNano": 43419556,
+ "longestRoundTripNano": 164424609,
+ "averageApexExecutionNano": 65588086,
+ "shortestApexExecutionNano": 9164642,
+ "longestApexExecutionNano": 117715978
+ },
+ {
+ "batchNumber": 1874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137978722,
+ "shortestRoundTripNano": 45476785,
+ "longestRoundTripNano": 180416824,
+ "averageApexExecutionNano": 61785457,
+ "shortestApexExecutionNano": 8822221,
+ "longestApexExecutionNano": 145568620
+ },
+ {
+ "batchNumber": 1875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146937873,
+ "shortestRoundTripNano": 74068406,
+ "longestRoundTripNano": 176355499,
+ "averageApexExecutionNano": 61128708,
+ "shortestApexExecutionNano": 6877964,
+ "longestApexExecutionNano": 120163985
+ },
+ {
+ "batchNumber": 1876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164792555,
+ "shortestRoundTripNano": 66931365,
+ "longestRoundTripNano": 198266421,
+ "averageApexExecutionNano": 63327074,
+ "shortestApexExecutionNano": 8255001,
+ "longestApexExecutionNano": 117616407
+ },
+ {
+ "batchNumber": 1877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160831965,
+ "shortestRoundTripNano": 62333982,
+ "longestRoundTripNano": 190656724,
+ "averageApexExecutionNano": 72741034,
+ "shortestApexExecutionNano": 10043160,
+ "longestApexExecutionNano": 152413797
+ },
+ {
+ "batchNumber": 1878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146612923,
+ "shortestRoundTripNano": 59329010,
+ "longestRoundTripNano": 187690168,
+ "averageApexExecutionNano": 64158177,
+ "shortestApexExecutionNano": 6506215,
+ "longestApexExecutionNano": 144229300
+ },
+ {
+ "batchNumber": 1879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167528169,
+ "shortestRoundTripNano": 84620411,
+ "longestRoundTripNano": 199093757,
+ "averageApexExecutionNano": 80208521,
+ "shortestApexExecutionNano": 7295234,
+ "longestApexExecutionNano": 154039688
+ },
+ {
+ "batchNumber": 1880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142624133,
+ "shortestRoundTripNano": 46872722,
+ "longestRoundTripNano": 180828158,
+ "averageApexExecutionNano": 53629646,
+ "shortestApexExecutionNano": 5291165,
+ "longestApexExecutionNano": 143462718
+ },
+ {
+ "batchNumber": 1881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136042106,
+ "shortestRoundTripNano": 67385213,
+ "longestRoundTripNano": 168912677,
+ "averageApexExecutionNano": 58531275,
+ "shortestApexExecutionNano": 7207972,
+ "longestApexExecutionNano": 125072548
+ },
+ {
+ "batchNumber": 1882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179175936,
+ "shortestRoundTripNano": 87618987,
+ "longestRoundTripNano": 209433849,
+ "averageApexExecutionNano": 73131704,
+ "shortestApexExecutionNano": 9372770,
+ "longestApexExecutionNano": 137370081
+ },
+ {
+ "batchNumber": 1883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161364358,
+ "shortestRoundTripNano": 65142852,
+ "longestRoundTripNano": 205192093,
+ "averageApexExecutionNano": 72982156,
+ "shortestApexExecutionNano": 7092378,
+ "longestApexExecutionNano": 140328807
+ },
+ {
+ "batchNumber": 1884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147010330,
+ "shortestRoundTripNano": 65908839,
+ "longestRoundTripNano": 178399550,
+ "averageApexExecutionNano": 57084370,
+ "shortestApexExecutionNano": 9376057,
+ "longestApexExecutionNano": 124266134
+ },
+ {
+ "batchNumber": 1885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146805915,
+ "shortestRoundTripNano": 72465696,
+ "longestRoundTripNano": 176493262,
+ "averageApexExecutionNano": 66724255,
+ "shortestApexExecutionNano": 10526098,
+ "longestApexExecutionNano": 127308589
+ },
+ {
+ "batchNumber": 1886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170577498,
+ "shortestRoundTripNano": 71716403,
+ "longestRoundTripNano": 206607388,
+ "averageApexExecutionNano": 73514271,
+ "shortestApexExecutionNano": 13687653,
+ "longestApexExecutionNano": 146663467
+ },
+ {
+ "batchNumber": 1887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179710991,
+ "shortestRoundTripNano": 105659387,
+ "longestRoundTripNano": 208080666,
+ "averageApexExecutionNano": 84142631,
+ "shortestApexExecutionNano": 7028046,
+ "longestApexExecutionNano": 159385323
+ },
+ {
+ "batchNumber": 1888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158009755,
+ "shortestRoundTripNano": 66394828,
+ "longestRoundTripNano": 192194894,
+ "averageApexExecutionNano": 65463113,
+ "shortestApexExecutionNano": 7197453,
+ "longestApexExecutionNano": 120107288
+ },
+ {
+ "batchNumber": 1889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145653023,
+ "shortestRoundTripNano": 70849517,
+ "longestRoundTripNano": 173169550,
+ "averageApexExecutionNano": 51645746,
+ "shortestApexExecutionNano": 5271089,
+ "longestApexExecutionNano": 115772227
+ },
+ {
+ "batchNumber": 1890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148685929,
+ "shortestRoundTripNano": 52611134,
+ "longestRoundTripNano": 183260130,
+ "averageApexExecutionNano": 59757571,
+ "shortestApexExecutionNano": 9856501,
+ "longestApexExecutionNano": 124808814
+ },
+ {
+ "batchNumber": 1891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159813540,
+ "shortestRoundTripNano": 88275283,
+ "longestRoundTripNano": 184431409,
+ "averageApexExecutionNano": 76784097,
+ "shortestApexExecutionNano": 7415682,
+ "longestApexExecutionNano": 126058587
+ },
+ {
+ "batchNumber": 1892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35388",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149359530,
+ "shortestRoundTripNano": 49066550,
+ "longestRoundTripNano": 184843647,
+ "averageApexExecutionNano": 59660420,
+ "shortestApexExecutionNano": 6331788,
+ "longestApexExecutionNano": 129995235
+ },
+ {
+ "batchNumber": 1893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150862982,
+ "shortestRoundTripNano": 73286458,
+ "longestRoundTripNano": 186906417,
+ "averageApexExecutionNano": 63860702,
+ "shortestApexExecutionNano": 7244200,
+ "longestApexExecutionNano": 128423424
+ },
+ {
+ "batchNumber": 1894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148362857,
+ "shortestRoundTripNano": 41160856,
+ "longestRoundTripNano": 176390054,
+ "averageApexExecutionNano": 68948046,
+ "shortestApexExecutionNano": 13063946,
+ "longestApexExecutionNano": 111357769
+ },
+ {
+ "batchNumber": 1895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168440012,
+ "shortestRoundTripNano": 71956114,
+ "longestRoundTripNano": 204157031,
+ "averageApexExecutionNano": 76267898,
+ "shortestApexExecutionNano": 10699539,
+ "longestApexExecutionNano": 147176799
+ },
+ {
+ "batchNumber": 1896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169780039,
+ "shortestRoundTripNano": 66072252,
+ "longestRoundTripNano": 213230273,
+ "averageApexExecutionNano": 61073732,
+ "shortestApexExecutionNano": 10579739,
+ "longestApexExecutionNano": 136432645
+ },
+ {
+ "batchNumber": 1897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137201455,
+ "shortestRoundTripNano": 51604912,
+ "longestRoundTripNano": 168053589,
+ "averageApexExecutionNano": 53320198,
+ "shortestApexExecutionNano": 11259258,
+ "longestApexExecutionNano": 101773762
+ },
+ {
+ "batchNumber": 1898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130571082,
+ "shortestRoundTripNano": 55746320,
+ "longestRoundTripNano": 161050296,
+ "averageApexExecutionNano": 48568994,
+ "shortestApexExecutionNano": 7375608,
+ "longestApexExecutionNano": 108844414
+ },
+ {
+ "batchNumber": 1899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138427938,
+ "shortestRoundTripNano": 56041339,
+ "longestRoundTripNano": 170496567,
+ "averageApexExecutionNano": 54708540,
+ "shortestApexExecutionNano": 8992963,
+ "longestApexExecutionNano": 116249765
+ },
+ {
+ "batchNumber": 1900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167124653,
+ "shortestRoundTripNano": 95336117,
+ "longestRoundTripNano": 197578746,
+ "averageApexExecutionNano": 63822802,
+ "shortestApexExecutionNano": 10532490,
+ "longestApexExecutionNano": 108616109
+ },
+ {
+ "batchNumber": 1901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140222154,
+ "shortestRoundTripNano": 66000200,
+ "longestRoundTripNano": 164655427,
+ "averageApexExecutionNano": 64381444,
+ "shortestApexExecutionNano": 6129898,
+ "longestApexExecutionNano": 106959995
+ },
+ {
+ "batchNumber": 1902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132118389,
+ "shortestRoundTripNano": 68520759,
+ "longestRoundTripNano": 156073049,
+ "averageApexExecutionNano": 45341770,
+ "shortestApexExecutionNano": 11491700,
+ "longestApexExecutionNano": 98576196
+ },
+ {
+ "batchNumber": 1903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145087696,
+ "shortestRoundTripNano": 45629543,
+ "longestRoundTripNano": 174632666,
+ "averageApexExecutionNano": 50502448,
+ "shortestApexExecutionNano": 6099858,
+ "longestApexExecutionNano": 106080790
+ },
+ {
+ "batchNumber": 1904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138187472,
+ "shortestRoundTripNano": 45132248,
+ "longestRoundTripNano": 167772730,
+ "averageApexExecutionNano": 65478167,
+ "shortestApexExecutionNano": 20845750,
+ "longestApexExecutionNano": 125316952
+ },
+ {
+ "batchNumber": 1905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127457832,
+ "shortestRoundTripNano": 61113146,
+ "longestRoundTripNano": 163533673,
+ "averageApexExecutionNano": 58165200,
+ "shortestApexExecutionNano": 7202112,
+ "longestApexExecutionNano": 119537949
+ },
+ {
+ "batchNumber": 1906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159135058,
+ "shortestRoundTripNano": 48578691,
+ "longestRoundTripNano": 193652329,
+ "averageApexExecutionNano": 50417748,
+ "shortestApexExecutionNano": 7212145,
+ "longestApexExecutionNano": 117609274
+ },
+ {
+ "batchNumber": 1907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156742538,
+ "shortestRoundTripNano": 83222403,
+ "longestRoundTripNano": 181334333,
+ "averageApexExecutionNano": 69570223,
+ "shortestApexExecutionNano": 8642699,
+ "longestApexExecutionNano": 135151997
+ },
+ {
+ "batchNumber": 1908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145058358,
+ "shortestRoundTripNano": 47426386,
+ "longestRoundTripNano": 173100523,
+ "averageApexExecutionNano": 57968939,
+ "shortestApexExecutionNano": 6837621,
+ "longestApexExecutionNano": 106076970
+ },
+ {
+ "batchNumber": 1909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132114799,
+ "shortestRoundTripNano": 69544006,
+ "longestRoundTripNano": 158176652,
+ "averageApexExecutionNano": 57278313,
+ "shortestApexExecutionNano": 8036861,
+ "longestApexExecutionNano": 113887824
+ },
+ {
+ "batchNumber": 1910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159416071,
+ "shortestRoundTripNano": 73557994,
+ "longestRoundTripNano": 193541288,
+ "averageApexExecutionNano": 50034666,
+ "shortestApexExecutionNano": 7774836,
+ "longestApexExecutionNano": 102905688
+ },
+ {
+ "batchNumber": 1911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138926150,
+ "shortestRoundTripNano": 44824692,
+ "longestRoundTripNano": 164720839,
+ "averageApexExecutionNano": 54085862,
+ "shortestApexExecutionNano": 7716612,
+ "longestApexExecutionNano": 108829565
+ },
+ {
+ "batchNumber": 1912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149852806,
+ "shortestRoundTripNano": 63390201,
+ "longestRoundTripNano": 181970061,
+ "averageApexExecutionNano": 65847341,
+ "shortestApexExecutionNano": 6528734,
+ "longestApexExecutionNano": 133836174
+ },
+ {
+ "batchNumber": 1913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148112300,
+ "shortestRoundTripNano": 67219191,
+ "longestRoundTripNano": 182934593,
+ "averageApexExecutionNano": 63355101,
+ "shortestApexExecutionNano": 10862762,
+ "longestApexExecutionNano": 124140725
+ },
+ {
+ "batchNumber": 1914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153902619,
+ "shortestRoundTripNano": 66966337,
+ "longestRoundTripNano": 178122266,
+ "averageApexExecutionNano": 62573506,
+ "shortestApexExecutionNano": 16789827,
+ "longestApexExecutionNano": 112486157
+ },
+ {
+ "batchNumber": 1915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145868916,
+ "shortestRoundTripNano": 69285092,
+ "longestRoundTripNano": 174446465,
+ "averageApexExecutionNano": 61105162,
+ "shortestApexExecutionNano": 8719620,
+ "longestApexExecutionNano": 125209999
+ },
+ {
+ "batchNumber": 1916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132170096,
+ "shortestRoundTripNano": 75227502,
+ "longestRoundTripNano": 165899001,
+ "averageApexExecutionNano": 43403131,
+ "shortestApexExecutionNano": 8402613,
+ "longestApexExecutionNano": 115963150
+ },
+ {
+ "batchNumber": 1917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35394",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143097417,
+ "shortestRoundTripNano": 38179516,
+ "longestRoundTripNano": 197512555,
+ "averageApexExecutionNano": 61306637,
+ "shortestApexExecutionNano": 13906508,
+ "longestApexExecutionNano": 118239333
+ },
+ {
+ "batchNumber": 1918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133267627,
+ "shortestRoundTripNano": 24990574,
+ "longestRoundTripNano": 163255580,
+ "averageApexExecutionNano": 63396103,
+ "shortestApexExecutionNano": 5417868,
+ "longestApexExecutionNano": 121163925
+ },
+ {
+ "batchNumber": 1919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147300510,
+ "shortestRoundTripNano": 57247865,
+ "longestRoundTripNano": 185623794,
+ "averageApexExecutionNano": 46640878,
+ "shortestApexExecutionNano": 7076270,
+ "longestApexExecutionNano": 106530159
+ },
+ {
+ "batchNumber": 1920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150442093,
+ "shortestRoundTripNano": 81303471,
+ "longestRoundTripNano": 182544229,
+ "averageApexExecutionNano": 64860791,
+ "shortestApexExecutionNano": 6627914,
+ "longestApexExecutionNano": 121738057
+ },
+ {
+ "batchNumber": 1921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196039944,
+ "shortestRoundTripNano": 56131605,
+ "longestRoundTripNano": 247730118,
+ "averageApexExecutionNano": 115047102,
+ "shortestApexExecutionNano": 6847859,
+ "longestApexExecutionNano": 204438239
+ },
+ {
+ "batchNumber": 1922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35402",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136642209,
+ "shortestRoundTripNano": 39193259,
+ "longestRoundTripNano": 171952492,
+ "averageApexExecutionNano": 52477328,
+ "shortestApexExecutionNano": 5124163,
+ "longestApexExecutionNano": 115141689
+ },
+ {
+ "batchNumber": 1923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35402",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151291837,
+ "shortestRoundTripNano": 80440220,
+ "longestRoundTripNano": 178971689,
+ "averageApexExecutionNano": 82877387,
+ "shortestApexExecutionNano": 5782950,
+ "longestApexExecutionNano": 135367933
+ },
+ {
+ "batchNumber": 1924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176447228,
+ "shortestRoundTripNano": 88294906,
+ "longestRoundTripNano": 202646560,
+ "averageApexExecutionNano": 72403640,
+ "shortestApexExecutionNano": 9740605,
+ "longestApexExecutionNano": 127681457
+ },
+ {
+ "batchNumber": 1925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135509481,
+ "shortestRoundTripNano": 69565780,
+ "longestRoundTripNano": 163582642,
+ "averageApexExecutionNano": 48890423,
+ "shortestApexExecutionNano": 8754540,
+ "longestApexExecutionNano": 106625230
+ },
+ {
+ "batchNumber": 1926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135160811,
+ "shortestRoundTripNano": 49704866,
+ "longestRoundTripNano": 163706017,
+ "averageApexExecutionNano": 54066312,
+ "shortestApexExecutionNano": 6596747,
+ "longestApexExecutionNano": 102450357
+ },
+ {
+ "batchNumber": 1927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143493654,
+ "shortestRoundTripNano": 83333577,
+ "longestRoundTripNano": 173727951,
+ "averageApexExecutionNano": 51274522,
+ "shortestApexExecutionNano": 9838993,
+ "longestApexExecutionNano": 106057281
+ },
+ {
+ "batchNumber": 1928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150051758,
+ "shortestRoundTripNano": 58392260,
+ "longestRoundTripNano": 186940344,
+ "averageApexExecutionNano": 53406954,
+ "shortestApexExecutionNano": 7291264,
+ "longestApexExecutionNano": 98044725
+ },
+ {
+ "batchNumber": 1929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137537410,
+ "shortestRoundTripNano": 63019624,
+ "longestRoundTripNano": 166979830,
+ "averageApexExecutionNano": 59063562,
+ "shortestApexExecutionNano": 7572708,
+ "longestApexExecutionNano": 126307582
+ },
+ {
+ "batchNumber": 1930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135645694,
+ "shortestRoundTripNano": 52881478,
+ "longestRoundTripNano": 172403851,
+ "averageApexExecutionNano": 44205855,
+ "shortestApexExecutionNano": 6745723,
+ "longestApexExecutionNano": 102398752
+ },
+ {
+ "batchNumber": 1931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136556154,
+ "shortestRoundTripNano": 77981772,
+ "longestRoundTripNano": 163485815,
+ "averageApexExecutionNano": 56311688,
+ "shortestApexExecutionNano": 7366172,
+ "longestApexExecutionNano": 107757029
+ },
+ {
+ "batchNumber": 1932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136963749,
+ "shortestRoundTripNano": 57883392,
+ "longestRoundTripNano": 165090023,
+ "averageApexExecutionNano": 48140719,
+ "shortestApexExecutionNano": 6912860,
+ "longestApexExecutionNano": 131895633
+ },
+ {
+ "batchNumber": 1933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143705439,
+ "shortestRoundTripNano": 58325992,
+ "longestRoundTripNano": 175598561,
+ "averageApexExecutionNano": 68509519,
+ "shortestApexExecutionNano": 25495492,
+ "longestApexExecutionNano": 123483702
+ },
+ {
+ "batchNumber": 1934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162427267,
+ "shortestRoundTripNano": 58080367,
+ "longestRoundTripNano": 195550462,
+ "averageApexExecutionNano": 81595267,
+ "shortestApexExecutionNano": 8515086,
+ "longestApexExecutionNano": 130626854
+ },
+ {
+ "batchNumber": 1935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136206744,
+ "shortestRoundTripNano": 54834927,
+ "longestRoundTripNano": 170106552,
+ "averageApexExecutionNano": 50288321,
+ "shortestApexExecutionNano": 7131806,
+ "longestApexExecutionNano": 121579689
+ },
+ {
+ "batchNumber": 1936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146156199,
+ "shortestRoundTripNano": 72392491,
+ "longestRoundTripNano": 182705976,
+ "averageApexExecutionNano": 63136366,
+ "shortestApexExecutionNano": 6929542,
+ "longestApexExecutionNano": 121705463
+ },
+ {
+ "batchNumber": 1937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137347220,
+ "shortestRoundTripNano": 58841948,
+ "longestRoundTripNano": 165205961,
+ "averageApexExecutionNano": 55855197,
+ "shortestApexExecutionNano": 5901546,
+ "longestApexExecutionNano": 124143047
+ },
+ {
+ "batchNumber": 1938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156874118,
+ "shortestRoundTripNano": 80567024,
+ "longestRoundTripNano": 187720527,
+ "averageApexExecutionNano": 58329124,
+ "shortestApexExecutionNano": 9505383,
+ "longestApexExecutionNano": 121720875
+ },
+ {
+ "batchNumber": 1939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149593878,
+ "shortestRoundTripNano": 45360572,
+ "longestRoundTripNano": 182312208,
+ "averageApexExecutionNano": 63138837,
+ "shortestApexExecutionNano": 9151084,
+ "longestApexExecutionNano": 119500257
+ },
+ {
+ "batchNumber": 1940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141293719,
+ "shortestRoundTripNano": 72549689,
+ "longestRoundTripNano": 166953811,
+ "averageApexExecutionNano": 56093451,
+ "shortestApexExecutionNano": 7707406,
+ "longestApexExecutionNano": 109751043
+ },
+ {
+ "batchNumber": 1941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173050211,
+ "shortestRoundTripNano": 59929316,
+ "longestRoundTripNano": 209098085,
+ "averageApexExecutionNano": 86227954,
+ "shortestApexExecutionNano": 5303549,
+ "longestApexExecutionNano": 152098371
+ },
+ {
+ "batchNumber": 1942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154165890,
+ "shortestRoundTripNano": 72286662,
+ "longestRoundTripNano": 187827749,
+ "averageApexExecutionNano": 42204375,
+ "shortestApexExecutionNano": 6249524,
+ "longestApexExecutionNano": 121719718
+ },
+ {
+ "batchNumber": 1943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124755713,
+ "shortestRoundTripNano": 45239120,
+ "longestRoundTripNano": 158030430,
+ "averageApexExecutionNano": 53473617,
+ "shortestApexExecutionNano": 7803019,
+ "longestApexExecutionNano": 110557055
+ },
+ {
+ "batchNumber": 1944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184969429,
+ "shortestRoundTripNano": 99276310,
+ "longestRoundTripNano": 216666004,
+ "averageApexExecutionNano": 80792398,
+ "shortestApexExecutionNano": 13979097,
+ "longestApexExecutionNano": 150653000
+ },
+ {
+ "batchNumber": 1945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155391861,
+ "shortestRoundTripNano": 81853164,
+ "longestRoundTripNano": 188137848,
+ "averageApexExecutionNano": 69560623,
+ "shortestApexExecutionNano": 7185412,
+ "longestApexExecutionNano": 136682599
+ },
+ {
+ "batchNumber": 1946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160424447,
+ "shortestRoundTripNano": 74727961,
+ "longestRoundTripNano": 206518999,
+ "averageApexExecutionNano": 69227101,
+ "shortestApexExecutionNano": 8387978,
+ "longestApexExecutionNano": 134495264
+ },
+ {
+ "batchNumber": 1947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133672227,
+ "shortestRoundTripNano": 50592458,
+ "longestRoundTripNano": 159468478,
+ "averageApexExecutionNano": 55288369,
+ "shortestApexExecutionNano": 10454417,
+ "longestApexExecutionNano": 103043971
+ },
+ {
+ "batchNumber": 1948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127963471,
+ "shortestRoundTripNano": 59265810,
+ "longestRoundTripNano": 158028836,
+ "averageApexExecutionNano": 49491529,
+ "shortestApexExecutionNano": 6933464,
+ "longestApexExecutionNano": 119374616
+ },
+ {
+ "batchNumber": 1949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 219446938,
+ "shortestRoundTripNano": 27116689,
+ "longestRoundTripNano": 260518810,
+ "averageApexExecutionNano": 109833523,
+ "shortestApexExecutionNano": 7406661,
+ "longestApexExecutionNano": 210153935
+ },
+ {
+ "batchNumber": 1950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161565219,
+ "shortestRoundTripNano": 69024768,
+ "longestRoundTripNano": 193743015,
+ "averageApexExecutionNano": 55228389,
+ "shortestApexExecutionNano": 8469571,
+ "longestApexExecutionNano": 125759772
+ },
+ {
+ "batchNumber": 1951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132278994,
+ "shortestRoundTripNano": 60780031,
+ "longestRoundTripNano": 160326881,
+ "averageApexExecutionNano": 59200516,
+ "shortestApexExecutionNano": 17419315,
+ "longestApexExecutionNano": 107605559
+ },
+ {
+ "batchNumber": 1952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157397397,
+ "shortestRoundTripNano": 50694715,
+ "longestRoundTripNano": 193633235,
+ "averageApexExecutionNano": 68537414,
+ "shortestApexExecutionNano": 6966755,
+ "longestApexExecutionNano": 137916750
+ },
+ {
+ "batchNumber": 1953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161666756,
+ "shortestRoundTripNano": 65086839,
+ "longestRoundTripNano": 195119476,
+ "averageApexExecutionNano": 67326262,
+ "shortestApexExecutionNano": 9225774,
+ "longestApexExecutionNano": 137247779
+ },
+ {
+ "batchNumber": 1954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152963979,
+ "shortestRoundTripNano": 58111536,
+ "longestRoundTripNano": 187141024,
+ "averageApexExecutionNano": 67599965,
+ "shortestApexExecutionNano": 6094101,
+ "longestApexExecutionNano": 132624624
+ },
+ {
+ "batchNumber": 1955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136818918,
+ "shortestRoundTripNano": 58191947,
+ "longestRoundTripNano": 167302009,
+ "averageApexExecutionNano": 54806645,
+ "shortestApexExecutionNano": 6696171,
+ "longestApexExecutionNano": 108567329
+ },
+ {
+ "batchNumber": 1956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133217164,
+ "shortestRoundTripNano": 50565829,
+ "longestRoundTripNano": 189531728,
+ "averageApexExecutionNano": 48975548,
+ "shortestApexExecutionNano": 4825258,
+ "longestApexExecutionNano": 109160956
+ },
+ {
+ "batchNumber": 1957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157587825,
+ "shortestRoundTripNano": 83224047,
+ "longestRoundTripNano": 185820673,
+ "averageApexExecutionNano": 69068443,
+ "shortestApexExecutionNano": 7349456,
+ "longestApexExecutionNano": 135887993
+ },
+ {
+ "batchNumber": 1958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159807238,
+ "shortestRoundTripNano": 90494048,
+ "longestRoundTripNano": 190347776,
+ "averageApexExecutionNano": 69957727,
+ "shortestApexExecutionNano": 9891771,
+ "longestApexExecutionNano": 133406759
+ },
+ {
+ "batchNumber": 1959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136557315,
+ "shortestRoundTripNano": 39050237,
+ "longestRoundTripNano": 166399429,
+ "averageApexExecutionNano": 49905083,
+ "shortestApexExecutionNano": 7275970,
+ "longestApexExecutionNano": 118825287
+ },
+ {
+ "batchNumber": 1960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157356750,
+ "shortestRoundTripNano": 66729164,
+ "longestRoundTripNano": 185375129,
+ "averageApexExecutionNano": 47558032,
+ "shortestApexExecutionNano": 7790169,
+ "longestApexExecutionNano": 116335213
+ },
+ {
+ "batchNumber": 1961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35416",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163523910,
+ "shortestRoundTripNano": 58546346,
+ "longestRoundTripNano": 193024787,
+ "averageApexExecutionNano": 55094410,
+ "shortestApexExecutionNano": 8723667,
+ "longestApexExecutionNano": 119725436
+ },
+ {
+ "batchNumber": 1962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146342257,
+ "shortestRoundTripNano": 42575996,
+ "longestRoundTripNano": 175979688,
+ "averageApexExecutionNano": 63494024,
+ "shortestApexExecutionNano": 9966261,
+ "longestApexExecutionNano": 121429779
+ },
+ {
+ "batchNumber": 1963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147412770,
+ "shortestRoundTripNano": 75412906,
+ "longestRoundTripNano": 175490424,
+ "averageApexExecutionNano": 53872914,
+ "shortestApexExecutionNano": 7782715,
+ "longestApexExecutionNano": 122873733
+ },
+ {
+ "batchNumber": 1964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133829897,
+ "shortestRoundTripNano": 67281822,
+ "longestRoundTripNano": 166155163,
+ "averageApexExecutionNano": 49821210,
+ "shortestApexExecutionNano": 6526683,
+ "longestApexExecutionNano": 114388070
+ },
+ {
+ "batchNumber": 1965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138145925,
+ "shortestRoundTripNano": 55300813,
+ "longestRoundTripNano": 164591868,
+ "averageApexExecutionNano": 47674092,
+ "shortestApexExecutionNano": 7409711,
+ "longestApexExecutionNano": 98909401
+ },
+ {
+ "batchNumber": 1966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144918156,
+ "shortestRoundTripNano": 35658064,
+ "longestRoundTripNano": 178091679,
+ "averageApexExecutionNano": 66016403,
+ "shortestApexExecutionNano": 7001425,
+ "longestApexExecutionNano": 131609880
+ },
+ {
+ "batchNumber": 1967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135337162,
+ "shortestRoundTripNano": 62029945,
+ "longestRoundTripNano": 173161784,
+ "averageApexExecutionNano": 47437800,
+ "shortestApexExecutionNano": 5313877,
+ "longestApexExecutionNano": 118401874
+ },
+ {
+ "batchNumber": 1968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161444096,
+ "shortestRoundTripNano": 41181963,
+ "longestRoundTripNano": 201796243,
+ "averageApexExecutionNano": 66698392,
+ "shortestApexExecutionNano": 7975620,
+ "longestApexExecutionNano": 145304304
+ },
+ {
+ "batchNumber": 1969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155133245,
+ "shortestRoundTripNano": 72579660,
+ "longestRoundTripNano": 192742402,
+ "averageApexExecutionNano": 77640749,
+ "shortestApexExecutionNano": 8399449,
+ "longestApexExecutionNano": 144915915
+ },
+ {
+ "batchNumber": 1970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155420207,
+ "shortestRoundTripNano": 74287409,
+ "longestRoundTripNano": 185377513,
+ "averageApexExecutionNano": 54455564,
+ "shortestApexExecutionNano": 5928449,
+ "longestApexExecutionNano": 100734968
+ },
+ {
+ "batchNumber": 1971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142507610,
+ "shortestRoundTripNano": 52817212,
+ "longestRoundTripNano": 172581870,
+ "averageApexExecutionNano": 62807524,
+ "shortestApexExecutionNano": 16038652,
+ "longestApexExecutionNano": 118549776
+ },
+ {
+ "batchNumber": 1972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144033900,
+ "shortestRoundTripNano": 66058504,
+ "longestRoundTripNano": 169531583,
+ "averageApexExecutionNano": 60014074,
+ "shortestApexExecutionNano": 6596490,
+ "longestApexExecutionNano": 121568358
+ },
+ {
+ "batchNumber": 1973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178515371,
+ "shortestRoundTripNano": 78434776,
+ "longestRoundTripNano": 216180485,
+ "averageApexExecutionNano": 73288803,
+ "shortestApexExecutionNano": 10556125,
+ "longestApexExecutionNano": 137442035
+ },
+ {
+ "batchNumber": 1974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170285547,
+ "shortestRoundTripNano": 68676334,
+ "longestRoundTripNano": 209354588,
+ "averageApexExecutionNano": 64201576,
+ "shortestApexExecutionNano": 11481048,
+ "longestApexExecutionNano": 139847407
+ },
+ {
+ "batchNumber": 1975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35424",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144758583,
+ "shortestRoundTripNano": 64830057,
+ "longestRoundTripNano": 169048526,
+ "averageApexExecutionNano": 47496609,
+ "shortestApexExecutionNano": 6906924,
+ "longestApexExecutionNano": 106910568
+ },
+ {
+ "batchNumber": 1976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35424",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137889315,
+ "shortestRoundTripNano": 59917029,
+ "longestRoundTripNano": 165892809,
+ "averageApexExecutionNano": 58610281,
+ "shortestApexExecutionNano": 17852210,
+ "longestApexExecutionNano": 110119781
+ },
+ {
+ "batchNumber": 1977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160498780,
+ "shortestRoundTripNano": 48572319,
+ "longestRoundTripNano": 195670170,
+ "averageApexExecutionNano": 52416212,
+ "shortestApexExecutionNano": 7198590,
+ "longestApexExecutionNano": 120068454
+ },
+ {
+ "batchNumber": 1978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156175272,
+ "shortestRoundTripNano": 61510437,
+ "longestRoundTripNano": 183624195,
+ "averageApexExecutionNano": 62047828,
+ "shortestApexExecutionNano": 12167074,
+ "longestApexExecutionNano": 104459913
+ },
+ {
+ "batchNumber": 1979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146359589,
+ "shortestRoundTripNano": 36598863,
+ "longestRoundTripNano": 170431240,
+ "averageApexExecutionNano": 54750505,
+ "shortestApexExecutionNano": 12028787,
+ "longestApexExecutionNano": 114302661
+ },
+ {
+ "batchNumber": 1980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125219152,
+ "shortestRoundTripNano": 38502364,
+ "longestRoundTripNano": 155004029,
+ "averageApexExecutionNano": 61440059,
+ "shortestApexExecutionNano": 7408098,
+ "longestApexExecutionNano": 118148726
+ },
+ {
+ "batchNumber": 1981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129387641,
+ "shortestRoundTripNano": 64307457,
+ "longestRoundTripNano": 153608796,
+ "averageApexExecutionNano": 58127468,
+ "shortestApexExecutionNano": 8762607,
+ "longestApexExecutionNano": 106431681
+ },
+ {
+ "batchNumber": 1982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151579647,
+ "shortestRoundTripNano": 93762872,
+ "longestRoundTripNano": 176757132,
+ "averageApexExecutionNano": 60079301,
+ "shortestApexExecutionNano": 10687801,
+ "longestApexExecutionNano": 108427142
+ },
+ {
+ "batchNumber": 1983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146929178,
+ "shortestRoundTripNano": 41788404,
+ "longestRoundTripNano": 183453408,
+ "averageApexExecutionNano": 64170834,
+ "shortestApexExecutionNano": 8461843,
+ "longestApexExecutionNano": 124567616
+ },
+ {
+ "batchNumber": 1984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148445900,
+ "shortestRoundTripNano": 102122071,
+ "longestRoundTripNano": 174550113,
+ "averageApexExecutionNano": 57998774,
+ "shortestApexExecutionNano": 10414735,
+ "longestApexExecutionNano": 111739819
+ },
+ {
+ "batchNumber": 1985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162639569,
+ "shortestRoundTripNano": 65867699,
+ "longestRoundTripNano": 203452996,
+ "averageApexExecutionNano": 70747177,
+ "shortestApexExecutionNano": 8676174,
+ "longestApexExecutionNano": 138322664
+ },
+ {
+ "batchNumber": 1986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147703530,
+ "shortestRoundTripNano": 66977311,
+ "longestRoundTripNano": 174897171,
+ "averageApexExecutionNano": 65257907,
+ "shortestApexExecutionNano": 10616355,
+ "longestApexExecutionNano": 111363824
+ },
+ {
+ "batchNumber": 1987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170675390,
+ "shortestRoundTripNano": 65339882,
+ "longestRoundTripNano": 207604657,
+ "averageApexExecutionNano": 78850028,
+ "shortestApexExecutionNano": 8478828,
+ "longestApexExecutionNano": 154086501
+ },
+ {
+ "batchNumber": 1988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35428",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125698998,
+ "shortestRoundTripNano": 57506526,
+ "longestRoundTripNano": 155096130,
+ "averageApexExecutionNano": 61692077,
+ "shortestApexExecutionNano": 9053866,
+ "longestApexExecutionNano": 109121286
+ },
+ {
+ "batchNumber": 1989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134844028,
+ "shortestRoundTripNano": 65611326,
+ "longestRoundTripNano": 161954864,
+ "averageApexExecutionNano": 54080467,
+ "shortestApexExecutionNano": 7117192,
+ "longestApexExecutionNano": 115647136
+ },
+ {
+ "batchNumber": 1990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149330680,
+ "shortestRoundTripNano": 78836537,
+ "longestRoundTripNano": 183340879,
+ "averageApexExecutionNano": 55317161,
+ "shortestApexExecutionNano": 8271735,
+ "longestApexExecutionNano": 118951907
+ },
+ {
+ "batchNumber": 1991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132799357,
+ "shortestRoundTripNano": 77630994,
+ "longestRoundTripNano": 161941286,
+ "averageApexExecutionNano": 76269894,
+ "shortestApexExecutionNano": 11815496,
+ "longestApexExecutionNano": 120472293
+ },
+ {
+ "batchNumber": 1992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35426",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178316522,
+ "shortestRoundTripNano": 62567582,
+ "longestRoundTripNano": 221924108,
+ "averageApexExecutionNano": 70844134,
+ "shortestApexExecutionNano": 10248475,
+ "longestApexExecutionNano": 135664206
+ },
+ {
+ "batchNumber": 1993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152437131,
+ "shortestRoundTripNano": 45042660,
+ "longestRoundTripNano": 190963377,
+ "averageApexExecutionNano": 74213284,
+ "shortestApexExecutionNano": 8407936,
+ "longestApexExecutionNano": 147467265
+ },
+ {
+ "batchNumber": 1994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153811735,
+ "shortestRoundTripNano": 55136573,
+ "longestRoundTripNano": 188034971,
+ "averageApexExecutionNano": 60227154,
+ "shortestApexExecutionNano": 8335946,
+ "longestApexExecutionNano": 132800338
+ },
+ {
+ "batchNumber": 1995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152656493,
+ "shortestRoundTripNano": 72335976,
+ "longestRoundTripNano": 208894916,
+ "averageApexExecutionNano": 70790576,
+ "shortestApexExecutionNano": 14393947,
+ "longestApexExecutionNano": 125123588
+ },
+ {
+ "batchNumber": 1996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152547786,
+ "shortestRoundTripNano": 59996743,
+ "longestRoundTripNano": 179716634,
+ "averageApexExecutionNano": 68375790,
+ "shortestApexExecutionNano": 11694716,
+ "longestApexExecutionNano": 133891399
+ },
+ {
+ "batchNumber": 1997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140399861,
+ "shortestRoundTripNano": 65579806,
+ "longestRoundTripNano": 170908104,
+ "averageApexExecutionNano": 41957498,
+ "shortestApexExecutionNano": 8796333,
+ "longestApexExecutionNano": 102397648
+ },
+ {
+ "batchNumber": 1998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160059013,
+ "shortestRoundTripNano": 79857273,
+ "longestRoundTripNano": 200927890,
+ "averageApexExecutionNano": 63965266,
+ "shortestApexExecutionNano": 8408861,
+ "longestApexExecutionNano": 128643535
+ },
+ {
+ "batchNumber": 1999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149692718,
+ "shortestRoundTripNano": 53130303,
+ "longestRoundTripNano": 178609244,
+ "averageApexExecutionNano": 56286051,
+ "shortestApexExecutionNano": 7436831,
+ "longestApexExecutionNano": 130341744
+ },
+ {
+ "batchNumber": 2000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35434",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127206872,
+ "shortestRoundTripNano": 56902719,
+ "longestRoundTripNano": 162001644,
+ "averageApexExecutionNano": 45546855,
+ "shortestApexExecutionNano": 16735797,
+ "longestApexExecutionNano": 87538943
+ },
+ {
+ "batchNumber": 2001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35434",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128142983,
+ "shortestRoundTripNano": 39547078,
+ "longestRoundTripNano": 158695953,
+ "averageApexExecutionNano": 48455056,
+ "shortestApexExecutionNano": 5002407,
+ "longestApexExecutionNano": 117736873
+ },
+ {
+ "batchNumber": 2002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145092759,
+ "shortestRoundTripNano": 60274907,
+ "longestRoundTripNano": 173425629,
+ "averageApexExecutionNano": 55665188,
+ "shortestApexExecutionNano": 7344579,
+ "longestApexExecutionNano": 102481773
+ },
+ {
+ "batchNumber": 2003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114874459,
+ "shortestRoundTripNano": 35597451,
+ "longestRoundTripNano": 155933553,
+ "averageApexExecutionNano": 44673211,
+ "shortestApexExecutionNano": 7953031,
+ "longestApexExecutionNano": 109118399
+ },
+ {
+ "batchNumber": 2004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153305459,
+ "shortestRoundTripNano": 28674908,
+ "longestRoundTripNano": 192038532,
+ "averageApexExecutionNano": 68770083,
+ "shortestApexExecutionNano": 9698193,
+ "longestApexExecutionNano": 136981400
+ },
+ {
+ "batchNumber": 2005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133380621,
+ "shortestRoundTripNano": 65299757,
+ "longestRoundTripNano": 162553383,
+ "averageApexExecutionNano": 51220508,
+ "shortestApexExecutionNano": 6383544,
+ "longestApexExecutionNano": 115119940
+ },
+ {
+ "batchNumber": 2006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137764244,
+ "shortestRoundTripNano": 74612185,
+ "longestRoundTripNano": 159813646,
+ "averageApexExecutionNano": 62452678,
+ "shortestApexExecutionNano": 17336963,
+ "longestApexExecutionNano": 103383984
+ },
+ {
+ "batchNumber": 2007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148339179,
+ "shortestRoundTripNano": 86934945,
+ "longestRoundTripNano": 174847845,
+ "averageApexExecutionNano": 62043961,
+ "shortestApexExecutionNano": 8136127,
+ "longestApexExecutionNano": 143534593
+ },
+ {
+ "batchNumber": 2008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150172066,
+ "shortestRoundTripNano": 90849251,
+ "longestRoundTripNano": 174899574,
+ "averageApexExecutionNano": 68374046,
+ "shortestApexExecutionNano": 8360280,
+ "longestApexExecutionNano": 121642717
+ },
+ {
+ "batchNumber": 2009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141333390,
+ "shortestRoundTripNano": 58469557,
+ "longestRoundTripNano": 174690982,
+ "averageApexExecutionNano": 56475865,
+ "shortestApexExecutionNano": 9292280,
+ "longestApexExecutionNano": 124146557
+ },
+ {
+ "batchNumber": 2010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145981722,
+ "shortestRoundTripNano": 59231573,
+ "longestRoundTripNano": 179392576,
+ "averageApexExecutionNano": 54807906,
+ "shortestApexExecutionNano": 8636617,
+ "longestApexExecutionNano": 114868836
+ },
+ {
+ "batchNumber": 2011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149039310,
+ "shortestRoundTripNano": 63420838,
+ "longestRoundTripNano": 180178015,
+ "averageApexExecutionNano": 74929972,
+ "shortestApexExecutionNano": 15144780,
+ "longestApexExecutionNano": 123981351
+ },
+ {
+ "batchNumber": 2012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153694816,
+ "shortestRoundTripNano": 56161538,
+ "longestRoundTripNano": 187947436,
+ "averageApexExecutionNano": 70315332,
+ "shortestApexExecutionNano": 8942614,
+ "longestApexExecutionNano": 124630989
+ },
+ {
+ "batchNumber": 2013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159102253,
+ "shortestRoundTripNano": 81784676,
+ "longestRoundTripNano": 184612263,
+ "averageApexExecutionNano": 63065283,
+ "shortestApexExecutionNano": 7093575,
+ "longestApexExecutionNano": 136230019
+ },
+ {
+ "batchNumber": 2014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145940001,
+ "shortestRoundTripNano": 63360560,
+ "longestRoundTripNano": 194554615,
+ "averageApexExecutionNano": 66245842,
+ "shortestApexExecutionNano": 8530537,
+ "longestApexExecutionNano": 142014601
+ },
+ {
+ "batchNumber": 2015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142976919,
+ "shortestRoundTripNano": 58815151,
+ "longestRoundTripNano": 175236627,
+ "averageApexExecutionNano": 60429265,
+ "shortestApexExecutionNano": 4903448,
+ "longestApexExecutionNano": 122378331
+ },
+ {
+ "batchNumber": 2016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140842945,
+ "shortestRoundTripNano": 51780389,
+ "longestRoundTripNano": 169419538,
+ "averageApexExecutionNano": 61872367,
+ "shortestApexExecutionNano": 9652187,
+ "longestApexExecutionNano": 134163570
+ },
+ {
+ "batchNumber": 2017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151077460,
+ "shortestRoundTripNano": 55282635,
+ "longestRoundTripNano": 182987955,
+ "averageApexExecutionNano": 60917639,
+ "shortestApexExecutionNano": 10437945,
+ "longestApexExecutionNano": 127520242
+ },
+ {
+ "batchNumber": 2018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153531939,
+ "shortestRoundTripNano": 65849428,
+ "longestRoundTripNano": 182227214,
+ "averageApexExecutionNano": 66490826,
+ "shortestApexExecutionNano": 6389309,
+ "longestApexExecutionNano": 127147373
+ },
+ {
+ "batchNumber": 2019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147171517,
+ "shortestRoundTripNano": 75176962,
+ "longestRoundTripNano": 177606862,
+ "averageApexExecutionNano": 63590610,
+ "shortestApexExecutionNano": 11477135,
+ "longestApexExecutionNano": 122265862
+ },
+ {
+ "batchNumber": 2020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161057932,
+ "shortestRoundTripNano": 83576911,
+ "longestRoundTripNano": 188107412,
+ "averageApexExecutionNano": 60909361,
+ "shortestApexExecutionNano": 6600952,
+ "longestApexExecutionNano": 110934598
+ },
+ {
+ "batchNumber": 2021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161456039,
+ "shortestRoundTripNano": 47522738,
+ "longestRoundTripNano": 188916132,
+ "averageApexExecutionNano": 75016553,
+ "shortestApexExecutionNano": 9204151,
+ "longestApexExecutionNano": 137018066
+ },
+ {
+ "batchNumber": 2022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155269272,
+ "shortestRoundTripNano": 60167089,
+ "longestRoundTripNano": 197900328,
+ "averageApexExecutionNano": 55504089,
+ "shortestApexExecutionNano": 7933462,
+ "longestApexExecutionNano": 146458099
+ },
+ {
+ "batchNumber": 2023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143258558,
+ "shortestRoundTripNano": 39244306,
+ "longestRoundTripNano": 173019074,
+ "averageApexExecutionNano": 59820386,
+ "shortestApexExecutionNano": 8434413,
+ "longestApexExecutionNano": 115196969
+ },
+ {
+ "batchNumber": 2024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125764886,
+ "shortestRoundTripNano": 58376031,
+ "longestRoundTripNano": 164072860,
+ "averageApexExecutionNano": 57224085,
+ "shortestApexExecutionNano": 6787032,
+ "longestApexExecutionNano": 126563498
+ },
+ {
+ "batchNumber": 2025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117972764,
+ "shortestRoundTripNano": 60973362,
+ "longestRoundTripNano": 148585644,
+ "averageApexExecutionNano": 29832315,
+ "shortestApexExecutionNano": 6330928,
+ "longestApexExecutionNano": 103599345
+ },
+ {
+ "batchNumber": 2026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155977287,
+ "shortestRoundTripNano": 73500775,
+ "longestRoundTripNano": 188514641,
+ "averageApexExecutionNano": 67639933,
+ "shortestApexExecutionNano": 14542774,
+ "longestApexExecutionNano": 127680162
+ },
+ {
+ "batchNumber": 2027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149001600,
+ "shortestRoundTripNano": 77897441,
+ "longestRoundTripNano": 177016454,
+ "averageApexExecutionNano": 69314119,
+ "shortestApexExecutionNano": 11136380,
+ "longestApexExecutionNano": 119403185
+ },
+ {
+ "batchNumber": 2028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132435670,
+ "shortestRoundTripNano": 54579243,
+ "longestRoundTripNano": 179476061,
+ "averageApexExecutionNano": 63313947,
+ "shortestApexExecutionNano": 8208975,
+ "longestApexExecutionNano": 119993777
+ },
+ {
+ "batchNumber": 2029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147573088,
+ "shortestRoundTripNano": 63883252,
+ "longestRoundTripNano": 174977258,
+ "averageApexExecutionNano": 67932110,
+ "shortestApexExecutionNano": 23978101,
+ "longestApexExecutionNano": 118519897
+ },
+ {
+ "batchNumber": 2030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158812622,
+ "shortestRoundTripNano": 76828277,
+ "longestRoundTripNano": 185372920,
+ "averageApexExecutionNano": 59895058,
+ "shortestApexExecutionNano": 7937438,
+ "longestApexExecutionNano": 114001128
+ },
+ {
+ "batchNumber": 2031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157591695,
+ "shortestRoundTripNano": 72688754,
+ "longestRoundTripNano": 192536065,
+ "averageApexExecutionNano": 63109573,
+ "shortestApexExecutionNano": 9898740,
+ "longestApexExecutionNano": 155363170
+ },
+ {
+ "batchNumber": 2032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160567765,
+ "shortestRoundTripNano": 62096804,
+ "longestRoundTripNano": 215640187,
+ "averageApexExecutionNano": 71149569,
+ "shortestApexExecutionNano": 8480113,
+ "longestApexExecutionNano": 134835013
+ },
+ {
+ "batchNumber": 2033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138974525,
+ "shortestRoundTripNano": 42275239,
+ "longestRoundTripNano": 170840051,
+ "averageApexExecutionNano": 54999069,
+ "shortestApexExecutionNano": 7270670,
+ "longestApexExecutionNano": 127054758
+ },
+ {
+ "batchNumber": 2034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137178300,
+ "shortestRoundTripNano": 46500442,
+ "longestRoundTripNano": 174340686,
+ "averageApexExecutionNano": 58703360,
+ "shortestApexExecutionNano": 9959386,
+ "longestApexExecutionNano": 131917244
+ },
+ {
+ "batchNumber": 2035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153120578,
+ "shortestRoundTripNano": 49392942,
+ "longestRoundTripNano": 188513541,
+ "averageApexExecutionNano": 44518633,
+ "shortestApexExecutionNano": 6037815,
+ "longestApexExecutionNano": 105629064
+ },
+ {
+ "batchNumber": 2036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142151987,
+ "shortestRoundTripNano": 45246444,
+ "longestRoundTripNano": 169404133,
+ "averageApexExecutionNano": 56212372,
+ "shortestApexExecutionNano": 8331664,
+ "longestApexExecutionNano": 126939148
+ },
+ {
+ "batchNumber": 2037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142664735,
+ "shortestRoundTripNano": 75748140,
+ "longestRoundTripNano": 176968412,
+ "averageApexExecutionNano": 69045516,
+ "shortestApexExecutionNano": 7527135,
+ "longestApexExecutionNano": 128365524
+ },
+ {
+ "batchNumber": 2038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133001321,
+ "shortestRoundTripNano": 63795160,
+ "longestRoundTripNano": 156294129,
+ "averageApexExecutionNano": 49991077,
+ "shortestApexExecutionNano": 13341211,
+ "longestApexExecutionNano": 110807932
+ },
+ {
+ "batchNumber": 2039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124317872,
+ "shortestRoundTripNano": 66843661,
+ "longestRoundTripNano": 152902641,
+ "averageApexExecutionNano": 51338827,
+ "shortestApexExecutionNano": 6953431,
+ "longestApexExecutionNano": 114422602
+ },
+ {
+ "batchNumber": 2040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138136781,
+ "shortestRoundTripNano": 58991408,
+ "longestRoundTripNano": 168925480,
+ "averageApexExecutionNano": 70603459,
+ "shortestApexExecutionNano": 7223481,
+ "longestApexExecutionNano": 124038758
+ },
+ {
+ "batchNumber": 2041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157444067,
+ "shortestRoundTripNano": 78054912,
+ "longestRoundTripNano": 189837328,
+ "averageApexExecutionNano": 53918903,
+ "shortestApexExecutionNano": 10732542,
+ "longestApexExecutionNano": 109686905
+ },
+ {
+ "batchNumber": 2042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169064463,
+ "shortestRoundTripNano": 50492163,
+ "longestRoundTripNano": 217247575,
+ "averageApexExecutionNano": 67105934,
+ "shortestApexExecutionNano": 10698216,
+ "longestApexExecutionNano": 136401366
+ },
+ {
+ "batchNumber": 2043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159275874,
+ "shortestRoundTripNano": 78243784,
+ "longestRoundTripNano": 183761179,
+ "averageApexExecutionNano": 65222873,
+ "shortestApexExecutionNano": 7188725,
+ "longestApexExecutionNano": 133445684
+ },
+ {
+ "batchNumber": 2044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148814436,
+ "shortestRoundTripNano": 54765307,
+ "longestRoundTripNano": 177810962,
+ "averageApexExecutionNano": 47535313,
+ "shortestApexExecutionNano": 7996169,
+ "longestApexExecutionNano": 115630506
+ },
+ {
+ "batchNumber": 2045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147121286,
+ "shortestRoundTripNano": 80081655,
+ "longestRoundTripNano": 172025961,
+ "averageApexExecutionNano": 64813083,
+ "shortestApexExecutionNano": 13697795,
+ "longestApexExecutionNano": 112264030
+ },
+ {
+ "batchNumber": 2046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150507786,
+ "shortestRoundTripNano": 66543958,
+ "longestRoundTripNano": 179576714,
+ "averageApexExecutionNano": 70319504,
+ "shortestApexExecutionNano": 16224343,
+ "longestApexExecutionNano": 135078340
+ },
+ {
+ "batchNumber": 2047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140908418,
+ "shortestRoundTripNano": 48429500,
+ "longestRoundTripNano": 167124972,
+ "averageApexExecutionNano": 62168082,
+ "shortestApexExecutionNano": 7430259,
+ "longestApexExecutionNano": 118978250
+ },
+ {
+ "batchNumber": 2048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 190041702,
+ "shortestRoundTripNano": 66927428,
+ "longestRoundTripNano": 222356607,
+ "averageApexExecutionNano": 101208417,
+ "shortestApexExecutionNano": 10907949,
+ "longestApexExecutionNano": 182534783
+ },
+ {
+ "batchNumber": 2049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133356293,
+ "shortestRoundTripNano": 80885119,
+ "longestRoundTripNano": 157474080,
+ "averageApexExecutionNano": 56386973,
+ "shortestApexExecutionNano": 5240297,
+ "longestApexExecutionNano": 104695670
+ },
+ {
+ "batchNumber": 2050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147474029,
+ "shortestRoundTripNano": 87679423,
+ "longestRoundTripNano": 175373554,
+ "averageApexExecutionNano": 69340463,
+ "shortestApexExecutionNano": 13138066,
+ "longestApexExecutionNano": 108440235
+ },
+ {
+ "batchNumber": 2051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144137068,
+ "shortestRoundTripNano": 61659756,
+ "longestRoundTripNano": 176663052,
+ "averageApexExecutionNano": 66485386,
+ "shortestApexExecutionNano": 9108877,
+ "longestApexExecutionNano": 117880149
+ },
+ {
+ "batchNumber": 2052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135244925,
+ "shortestRoundTripNano": 45093559,
+ "longestRoundTripNano": 159524543,
+ "averageApexExecutionNano": 58005178,
+ "shortestApexExecutionNano": 8076296,
+ "longestApexExecutionNano": 117794683
+ },
+ {
+ "batchNumber": 2053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179933316,
+ "shortestRoundTripNano": 58863127,
+ "longestRoundTripNano": 227260267,
+ "averageApexExecutionNano": 77672353,
+ "shortestApexExecutionNano": 21631529,
+ "longestApexExecutionNano": 140539219
+ },
+ {
+ "batchNumber": 2054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148980416,
+ "shortestRoundTripNano": 71606691,
+ "longestRoundTripNano": 183232498,
+ "averageApexExecutionNano": 63969824,
+ "shortestApexExecutionNano": 4458595,
+ "longestApexExecutionNano": 133742436
+ },
+ {
+ "batchNumber": 2055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171637413,
+ "shortestRoundTripNano": 64082487,
+ "longestRoundTripNano": 202642165,
+ "averageApexExecutionNano": 79869983,
+ "shortestApexExecutionNano": 8346410,
+ "longestApexExecutionNano": 161395538
+ },
+ {
+ "batchNumber": 2056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147623986,
+ "shortestRoundTripNano": 84306084,
+ "longestRoundTripNano": 172480656,
+ "averageApexExecutionNano": 69527487,
+ "shortestApexExecutionNano": 10620809,
+ "longestApexExecutionNano": 125728500
+ },
+ {
+ "batchNumber": 2057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162936348,
+ "shortestRoundTripNano": 95069488,
+ "longestRoundTripNano": 194699302,
+ "averageApexExecutionNano": 69713073,
+ "shortestApexExecutionNano": 10852727,
+ "longestApexExecutionNano": 141709488
+ },
+ {
+ "batchNumber": 2058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139115572,
+ "shortestRoundTripNano": 52311506,
+ "longestRoundTripNano": 174148431,
+ "averageApexExecutionNano": 58807295,
+ "shortestApexExecutionNano": 13749787,
+ "longestApexExecutionNano": 111445417
+ },
+ {
+ "batchNumber": 2059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154209726,
+ "shortestRoundTripNano": 73098166,
+ "longestRoundTripNano": 181786091,
+ "averageApexExecutionNano": 58189609,
+ "shortestApexExecutionNano": 7734469,
+ "longestApexExecutionNano": 122920362
+ },
+ {
+ "batchNumber": 2060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148677130,
+ "shortestRoundTripNano": 52993502,
+ "longestRoundTripNano": 184067158,
+ "averageApexExecutionNano": 57543097,
+ "shortestApexExecutionNano": 5621865,
+ "longestApexExecutionNano": 125785650
+ },
+ {
+ "batchNumber": 2061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138749174,
+ "shortestRoundTripNano": 37877539,
+ "longestRoundTripNano": 167100147,
+ "averageApexExecutionNano": 56406975,
+ "shortestApexExecutionNano": 7839596,
+ "longestApexExecutionNano": 123191995
+ },
+ {
+ "batchNumber": 2062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116026407,
+ "shortestRoundTripNano": 47498678,
+ "longestRoundTripNano": 145436810,
+ "averageApexExecutionNano": 55463111,
+ "shortestApexExecutionNano": 6297034,
+ "longestApexExecutionNano": 103205926
+ },
+ {
+ "batchNumber": 2063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146947574,
+ "shortestRoundTripNano": 59543882,
+ "longestRoundTripNano": 178904987,
+ "averageApexExecutionNano": 65190640,
+ "shortestApexExecutionNano": 9243326,
+ "longestApexExecutionNano": 122826342
+ },
+ {
+ "batchNumber": 2064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146744332,
+ "shortestRoundTripNano": 74901140,
+ "longestRoundTripNano": 179768289,
+ "averageApexExecutionNano": 59828019,
+ "shortestApexExecutionNano": 11482906,
+ "longestApexExecutionNano": 117988161
+ },
+ {
+ "batchNumber": 2065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183321196,
+ "shortestRoundTripNano": 57105486,
+ "longestRoundTripNano": 219010829,
+ "averageApexExecutionNano": 66593675,
+ "shortestApexExecutionNano": 8212594,
+ "longestApexExecutionNano": 138698489
+ },
+ {
+ "batchNumber": 2066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152356522,
+ "shortestRoundTripNano": 78738203,
+ "longestRoundTripNano": 177916915,
+ "averageApexExecutionNano": 82139590,
+ "shortestApexExecutionNano": 8509856,
+ "longestApexExecutionNano": 134239941
+ },
+ {
+ "batchNumber": 2067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149919229,
+ "shortestRoundTripNano": 61440605,
+ "longestRoundTripNano": 175420866,
+ "averageApexExecutionNano": 51073248,
+ "shortestApexExecutionNano": 10169513,
+ "longestApexExecutionNano": 136920969
+ },
+ {
+ "batchNumber": 2068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145796092,
+ "shortestRoundTripNano": 34906596,
+ "longestRoundTripNano": 176361544,
+ "averageApexExecutionNano": 60731126,
+ "shortestApexExecutionNano": 7850562,
+ "longestApexExecutionNano": 126816653
+ },
+ {
+ "batchNumber": 2069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161227300,
+ "shortestRoundTripNano": 78509795,
+ "longestRoundTripNano": 189230804,
+ "averageApexExecutionNano": 56522374,
+ "shortestApexExecutionNano": 8808513,
+ "longestApexExecutionNano": 119862095
+ },
+ {
+ "batchNumber": 2070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175304662,
+ "shortestRoundTripNano": 58504690,
+ "longestRoundTripNano": 201433910,
+ "averageApexExecutionNano": 63305613,
+ "shortestApexExecutionNano": 9141832,
+ "longestApexExecutionNano": 139748988
+ },
+ {
+ "batchNumber": 2071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123240485,
+ "shortestRoundTripNano": 56651262,
+ "longestRoundTripNano": 159999551,
+ "averageApexExecutionNano": 41266241,
+ "shortestApexExecutionNano": 4485776,
+ "longestApexExecutionNano": 104640206
+ },
+ {
+ "batchNumber": 2072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148911379,
+ "shortestRoundTripNano": 65596485,
+ "longestRoundTripNano": 187064323,
+ "averageApexExecutionNano": 55784235,
+ "shortestApexExecutionNano": 6983387,
+ "longestApexExecutionNano": 144307363
+ },
+ {
+ "batchNumber": 2073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142941789,
+ "shortestRoundTripNano": 49533704,
+ "longestRoundTripNano": 174745644,
+ "averageApexExecutionNano": 58969580,
+ "shortestApexExecutionNano": 19263202,
+ "longestApexExecutionNano": 116410419
+ },
+ {
+ "batchNumber": 2074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 272997768,
+ "shortestRoundTripNano": 86468311,
+ "longestRoundTripNano": 300372680,
+ "averageApexExecutionNano": 138153510,
+ "shortestApexExecutionNano": 7058639,
+ "longestApexExecutionNano": 247293837
+ },
+ {
+ "batchNumber": 2075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166270419,
+ "shortestRoundTripNano": 81287018,
+ "longestRoundTripNano": 200467745,
+ "averageApexExecutionNano": 74590788,
+ "shortestApexExecutionNano": 11167556,
+ "longestApexExecutionNano": 151005265
+ },
+ {
+ "batchNumber": 2076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147243984,
+ "shortestRoundTripNano": 68235542,
+ "longestRoundTripNano": 186648384,
+ "averageApexExecutionNano": 71627821,
+ "shortestApexExecutionNano": 15155281,
+ "longestApexExecutionNano": 134199654
+ },
+ {
+ "batchNumber": 2077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155144763,
+ "shortestRoundTripNano": 73668755,
+ "longestRoundTripNano": 183127962,
+ "averageApexExecutionNano": 57614320,
+ "shortestApexExecutionNano": 6279613,
+ "longestApexExecutionNano": 137032535
+ },
+ {
+ "batchNumber": 2078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147430486,
+ "shortestRoundTripNano": 64013572,
+ "longestRoundTripNano": 179793960,
+ "averageApexExecutionNano": 53994829,
+ "shortestApexExecutionNano": 7036690,
+ "longestApexExecutionNano": 109071136
+ },
+ {
+ "batchNumber": 2079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170493558,
+ "shortestRoundTripNano": 38161174,
+ "longestRoundTripNano": 205857775,
+ "averageApexExecutionNano": 74850990,
+ "shortestApexExecutionNano": 11044223,
+ "longestApexExecutionNano": 154532682
+ },
+ {
+ "batchNumber": 2080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147900788,
+ "shortestRoundTripNano": 68998678,
+ "longestRoundTripNano": 177932815,
+ "averageApexExecutionNano": 72795406,
+ "shortestApexExecutionNano": 7385009,
+ "longestApexExecutionNano": 128626205
+ },
+ {
+ "batchNumber": 2081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173706010,
+ "shortestRoundTripNano": 76505627,
+ "longestRoundTripNano": 208699650,
+ "averageApexExecutionNano": 57685513,
+ "shortestApexExecutionNano": 8987464,
+ "longestApexExecutionNano": 133274788
+ },
+ {
+ "batchNumber": 2082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151384120,
+ "shortestRoundTripNano": 64120517,
+ "longestRoundTripNano": 179064374,
+ "averageApexExecutionNano": 64785806,
+ "shortestApexExecutionNano": 12927552,
+ "longestApexExecutionNano": 136763518
+ },
+ {
+ "batchNumber": 2083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150104025,
+ "shortestRoundTripNano": 40056306,
+ "longestRoundTripNano": 174192305,
+ "averageApexExecutionNano": 66241802,
+ "shortestApexExecutionNano": 9797145,
+ "longestApexExecutionNano": 122615027
+ },
+ {
+ "batchNumber": 2084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144343561,
+ "shortestRoundTripNano": 72438523,
+ "longestRoundTripNano": 175681265,
+ "averageApexExecutionNano": 59476037,
+ "shortestApexExecutionNano": 11029996,
+ "longestApexExecutionNano": 133401687
+ },
+ {
+ "batchNumber": 2085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136721997,
+ "shortestRoundTripNano": 67947031,
+ "longestRoundTripNano": 159152432,
+ "averageApexExecutionNano": 56977474,
+ "shortestApexExecutionNano": 5392284,
+ "longestApexExecutionNano": 111920282
+ },
+ {
+ "batchNumber": 2086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142586558,
+ "shortestRoundTripNano": 55627442,
+ "longestRoundTripNano": 174513647,
+ "averageApexExecutionNano": 58712215,
+ "shortestApexExecutionNano": 8195953,
+ "longestApexExecutionNano": 128395125
+ },
+ {
+ "batchNumber": 2087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132867919,
+ "shortestRoundTripNano": 63875664,
+ "longestRoundTripNano": 163463768,
+ "averageApexExecutionNano": 62682059,
+ "shortestApexExecutionNano": 7827774,
+ "longestApexExecutionNano": 120264584
+ },
+ {
+ "batchNumber": 2088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149611889,
+ "shortestRoundTripNano": 67392562,
+ "longestRoundTripNano": 180224306,
+ "averageApexExecutionNano": 61132669,
+ "shortestApexExecutionNano": 7026285,
+ "longestApexExecutionNano": 145741837
+ },
+ {
+ "batchNumber": 2089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151406175,
+ "shortestRoundTripNano": 58434237,
+ "longestRoundTripNano": 191381018,
+ "averageApexExecutionNano": 53510397,
+ "shortestApexExecutionNano": 8580530,
+ "longestApexExecutionNano": 108798315
+ },
+ {
+ "batchNumber": 2090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134756652,
+ "shortestRoundTripNano": 46753286,
+ "longestRoundTripNano": 171849554,
+ "averageApexExecutionNano": 50110927,
+ "shortestApexExecutionNano": 6579449,
+ "longestApexExecutionNano": 133049675
+ },
+ {
+ "batchNumber": 2091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151446574,
+ "shortestRoundTripNano": 81567713,
+ "longestRoundTripNano": 180163141,
+ "averageApexExecutionNano": 61204628,
+ "shortestApexExecutionNano": 6401586,
+ "longestApexExecutionNano": 124074655
+ },
+ {
+ "batchNumber": 2092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134005281,
+ "shortestRoundTripNano": 73168159,
+ "longestRoundTripNano": 169938789,
+ "averageApexExecutionNano": 51228718,
+ "shortestApexExecutionNano": 9689359,
+ "longestApexExecutionNano": 107721854
+ },
+ {
+ "batchNumber": 2093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146786053,
+ "shortestRoundTripNano": 75475427,
+ "longestRoundTripNano": 174423752,
+ "averageApexExecutionNano": 70565189,
+ "shortestApexExecutionNano": 13734472,
+ "longestApexExecutionNano": 118686927
+ },
+ {
+ "batchNumber": 2094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146169151,
+ "shortestRoundTripNano": 68609762,
+ "longestRoundTripNano": 177198136,
+ "averageApexExecutionNano": 66212715,
+ "shortestApexExecutionNano": 9228896,
+ "longestApexExecutionNano": 135049972
+ },
+ {
+ "batchNumber": 2095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140534671,
+ "shortestRoundTripNano": 66050506,
+ "longestRoundTripNano": 167814015,
+ "averageApexExecutionNano": 50566124,
+ "shortestApexExecutionNano": 7719884,
+ "longestApexExecutionNano": 123675589
+ },
+ {
+ "batchNumber": 2096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134104522,
+ "shortestRoundTripNano": 38215025,
+ "longestRoundTripNano": 163248320,
+ "averageApexExecutionNano": 63747944,
+ "shortestApexExecutionNano": 9800300,
+ "longestApexExecutionNano": 123598598
+ },
+ {
+ "batchNumber": 2097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156710557,
+ "shortestRoundTripNano": 66265297,
+ "longestRoundTripNano": 195447487,
+ "averageApexExecutionNano": 74959498,
+ "shortestApexExecutionNano": 16287410,
+ "longestApexExecutionNano": 140249174
+ },
+ {
+ "batchNumber": 2098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188980662,
+ "shortestRoundTripNano": 78039183,
+ "longestRoundTripNano": 221171152,
+ "averageApexExecutionNano": 80082406,
+ "shortestApexExecutionNano": 9505086,
+ "longestApexExecutionNano": 162233265
+ },
+ {
+ "batchNumber": 2099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150097916,
+ "shortestRoundTripNano": 69145345,
+ "longestRoundTripNano": 181687804,
+ "averageApexExecutionNano": 69694845,
+ "shortestApexExecutionNano": 11636998,
+ "longestApexExecutionNano": 135953027
+ },
+ {
+ "batchNumber": 2100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132178673,
+ "shortestRoundTripNano": 59869158,
+ "longestRoundTripNano": 162439252,
+ "averageApexExecutionNano": 30388759,
+ "shortestApexExecutionNano": 5815045,
+ "longestApexExecutionNano": 71055820
+ },
+ {
+ "batchNumber": 2101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161098117,
+ "shortestRoundTripNano": 39897081,
+ "longestRoundTripNano": 192595331,
+ "averageApexExecutionNano": 83274763,
+ "shortestApexExecutionNano": 5918623,
+ "longestApexExecutionNano": 141452798
+ },
+ {
+ "batchNumber": 2102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35472",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157035312,
+ "shortestRoundTripNano": 40784098,
+ "longestRoundTripNano": 182154645,
+ "averageApexExecutionNano": 54459642,
+ "shortestApexExecutionNano": 6490355,
+ "longestApexExecutionNano": 129177410
+ },
+ {
+ "batchNumber": 2103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35472",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195783171,
+ "shortestRoundTripNano": 71670855,
+ "longestRoundTripNano": 233101426,
+ "averageApexExecutionNano": 84155890,
+ "shortestApexExecutionNano": 9259751,
+ "longestApexExecutionNano": 147455579
+ },
+ {
+ "batchNumber": 2104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35472",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153207561,
+ "shortestRoundTripNano": 71245870,
+ "longestRoundTripNano": 187092557,
+ "averageApexExecutionNano": 77000136,
+ "shortestApexExecutionNano": 24615596,
+ "longestApexExecutionNano": 138445178
+ },
+ {
+ "batchNumber": 2105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35472",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164906075,
+ "shortestRoundTripNano": 54943108,
+ "longestRoundTripNano": 196190523,
+ "averageApexExecutionNano": 76466968,
+ "shortestApexExecutionNano": 11791968,
+ "longestApexExecutionNano": 146324032
+ },
+ {
+ "batchNumber": 2106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145601713,
+ "shortestRoundTripNano": 77328368,
+ "longestRoundTripNano": 174144485,
+ "averageApexExecutionNano": 53421535,
+ "shortestApexExecutionNano": 8431543,
+ "longestApexExecutionNano": 133110303
+ },
+ {
+ "batchNumber": 2107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140952302,
+ "shortestRoundTripNano": 53209635,
+ "longestRoundTripNano": 172244287,
+ "averageApexExecutionNano": 54847210,
+ "shortestApexExecutionNano": 9885238,
+ "longestApexExecutionNano": 109490763
+ },
+ {
+ "batchNumber": 2108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135902284,
+ "shortestRoundTripNano": 69319435,
+ "longestRoundTripNano": 167364115,
+ "averageApexExecutionNano": 71182839,
+ "shortestApexExecutionNano": 8247521,
+ "longestApexExecutionNano": 130492634
+ },
+ {
+ "batchNumber": 2109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150470599,
+ "shortestRoundTripNano": 70777956,
+ "longestRoundTripNano": 175378427,
+ "averageApexExecutionNano": 55067978,
+ "shortestApexExecutionNano": 11967339,
+ "longestApexExecutionNano": 109376878
+ },
+ {
+ "batchNumber": 2110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144081353,
+ "shortestRoundTripNano": 69844458,
+ "longestRoundTripNano": 178524790,
+ "averageApexExecutionNano": 51866066,
+ "shortestApexExecutionNano": 7234035,
+ "longestApexExecutionNano": 95527844
+ },
+ {
+ "batchNumber": 2111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161212810,
+ "shortestRoundTripNano": 62362825,
+ "longestRoundTripNano": 211063884,
+ "averageApexExecutionNano": 77473908,
+ "shortestApexExecutionNano": 7651831,
+ "longestApexExecutionNano": 136016531
+ },
+ {
+ "batchNumber": 2112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133490138,
+ "shortestRoundTripNano": 68912007,
+ "longestRoundTripNano": 158728069,
+ "averageApexExecutionNano": 47148742,
+ "shortestApexExecutionNano": 8458667,
+ "longestApexExecutionNano": 108278771
+ },
+ {
+ "batchNumber": 2113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154353631,
+ "shortestRoundTripNano": 56034679,
+ "longestRoundTripNano": 180967855,
+ "averageApexExecutionNano": 65535056,
+ "shortestApexExecutionNano": 7878611,
+ "longestApexExecutionNano": 134929363
+ },
+ {
+ "batchNumber": 2114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35480",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154769442,
+ "shortestRoundTripNano": 96278150,
+ "longestRoundTripNano": 187390799,
+ "averageApexExecutionNano": 74369689,
+ "shortestApexExecutionNano": 6438025,
+ "longestApexExecutionNano": 131781496
+ },
+ {
+ "batchNumber": 2115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160959490,
+ "shortestRoundTripNano": 98559469,
+ "longestRoundTripNano": 189980070,
+ "averageApexExecutionNano": 63909656,
+ "shortestApexExecutionNano": 8039645,
+ "longestApexExecutionNano": 146738091
+ },
+ {
+ "batchNumber": 2116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137263634,
+ "shortestRoundTripNano": 68673517,
+ "longestRoundTripNano": 171942699,
+ "averageApexExecutionNano": 59990062,
+ "shortestApexExecutionNano": 11551232,
+ "longestApexExecutionNano": 109932047
+ },
+ {
+ "batchNumber": 2117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138712856,
+ "shortestRoundTripNano": 65422515,
+ "longestRoundTripNano": 166375307,
+ "averageApexExecutionNano": 54642505,
+ "shortestApexExecutionNano": 7073068,
+ "longestApexExecutionNano": 117979140
+ },
+ {
+ "batchNumber": 2118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128449574,
+ "shortestRoundTripNano": 65070725,
+ "longestRoundTripNano": 164925148,
+ "averageApexExecutionNano": 43219327,
+ "shortestApexExecutionNano": 6300710,
+ "longestApexExecutionNano": 110922610
+ },
+ {
+ "batchNumber": 2119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133647141,
+ "shortestRoundTripNano": 85932026,
+ "longestRoundTripNano": 169020467,
+ "averageApexExecutionNano": 55807708,
+ "shortestApexExecutionNano": 7790080,
+ "longestApexExecutionNano": 117677214
+ },
+ {
+ "batchNumber": 2120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140895253,
+ "shortestRoundTripNano": 70151242,
+ "longestRoundTripNano": 167522568,
+ "averageApexExecutionNano": 62347121,
+ "shortestApexExecutionNano": 9860189,
+ "longestApexExecutionNano": 116484157
+ },
+ {
+ "batchNumber": 2121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159173124,
+ "shortestRoundTripNano": 64591651,
+ "longestRoundTripNano": 197272239,
+ "averageApexExecutionNano": 69425394,
+ "shortestApexExecutionNano": 15533384,
+ "longestApexExecutionNano": 130405290
+ },
+ {
+ "batchNumber": 2122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161822044,
+ "shortestRoundTripNano": 96014770,
+ "longestRoundTripNano": 190910196,
+ "averageApexExecutionNano": 78309294,
+ "shortestApexExecutionNano": 13558877,
+ "longestApexExecutionNano": 131464895
+ },
+ {
+ "batchNumber": 2123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140903141,
+ "shortestRoundTripNano": 56683291,
+ "longestRoundTripNano": 174065272,
+ "averageApexExecutionNano": 60171381,
+ "shortestApexExecutionNano": 10636689,
+ "longestApexExecutionNano": 122406682
+ },
+ {
+ "batchNumber": 2124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168237168,
+ "shortestRoundTripNano": 83238226,
+ "longestRoundTripNano": 196084444,
+ "averageApexExecutionNano": 86398950,
+ "shortestApexExecutionNano": 9098288,
+ "longestApexExecutionNano": 145702549
+ },
+ {
+ "batchNumber": 2125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147692998,
+ "shortestRoundTripNano": 53401810,
+ "longestRoundTripNano": 173066530,
+ "averageApexExecutionNano": 57973946,
+ "shortestApexExecutionNano": 9119807,
+ "longestApexExecutionNano": 117759678
+ },
+ {
+ "batchNumber": 2126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151318463,
+ "shortestRoundTripNano": 86241941,
+ "longestRoundTripNano": 176392931,
+ "averageApexExecutionNano": 72313508,
+ "shortestApexExecutionNano": 4752395,
+ "longestApexExecutionNano": 126980545
+ },
+ {
+ "batchNumber": 2127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147114186,
+ "shortestRoundTripNano": 56980720,
+ "longestRoundTripNano": 182100200,
+ "averageApexExecutionNano": 55085466,
+ "shortestApexExecutionNano": 10358380,
+ "longestApexExecutionNano": 130831793
+ },
+ {
+ "batchNumber": 2128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162013153,
+ "shortestRoundTripNano": 77889107,
+ "longestRoundTripNano": 196641514,
+ "averageApexExecutionNano": 74209603,
+ "shortestApexExecutionNano": 10532681,
+ "longestApexExecutionNano": 152381910
+ },
+ {
+ "batchNumber": 2129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148090383,
+ "shortestRoundTripNano": 66470949,
+ "longestRoundTripNano": 179391230,
+ "averageApexExecutionNano": 60120221,
+ "shortestApexExecutionNano": 6744610,
+ "longestApexExecutionNano": 132468414
+ },
+ {
+ "batchNumber": 2130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143694511,
+ "shortestRoundTripNano": 77730256,
+ "longestRoundTripNano": 178177923,
+ "averageApexExecutionNano": 70837097,
+ "shortestApexExecutionNano": 10895915,
+ "longestApexExecutionNano": 127859646
+ },
+ {
+ "batchNumber": 2131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140992853,
+ "shortestRoundTripNano": 63126171,
+ "longestRoundTripNano": 169731257,
+ "averageApexExecutionNano": 53634694,
+ "shortestApexExecutionNano": 8350780,
+ "longestApexExecutionNano": 120196567
+ },
+ {
+ "batchNumber": 2132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133606802,
+ "shortestRoundTripNano": 62636383,
+ "longestRoundTripNano": 165616105,
+ "averageApexExecutionNano": 63922528,
+ "shortestApexExecutionNano": 7717798,
+ "longestApexExecutionNano": 123025040
+ },
+ {
+ "batchNumber": 2133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157077007,
+ "shortestRoundTripNano": 65433549,
+ "longestRoundTripNano": 180079017,
+ "averageApexExecutionNano": 68804576,
+ "shortestApexExecutionNano": 13227427,
+ "longestApexExecutionNano": 124222114
+ },
+ {
+ "batchNumber": 2134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158217877,
+ "shortestRoundTripNano": 60159814,
+ "longestRoundTripNano": 193401821,
+ "averageApexExecutionNano": 53194984,
+ "shortestApexExecutionNano": 4618176,
+ "longestApexExecutionNano": 110146649
+ },
+ {
+ "batchNumber": 2135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141443409,
+ "shortestRoundTripNano": 42666225,
+ "longestRoundTripNano": 189088149,
+ "averageApexExecutionNano": 61504614,
+ "shortestApexExecutionNano": 8200866,
+ "longestApexExecutionNano": 118436792
+ },
+ {
+ "batchNumber": 2136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144373188,
+ "shortestRoundTripNano": 74404409,
+ "longestRoundTripNano": 173067927,
+ "averageApexExecutionNano": 45328508,
+ "shortestApexExecutionNano": 5890467,
+ "longestApexExecutionNano": 119480010
+ },
+ {
+ "batchNumber": 2137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158035215,
+ "shortestRoundTripNano": 60704654,
+ "longestRoundTripNano": 198181785,
+ "averageApexExecutionNano": 70622330,
+ "shortestApexExecutionNano": 12613239,
+ "longestApexExecutionNano": 159472474
+ },
+ {
+ "batchNumber": 2138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162607309,
+ "shortestRoundTripNano": 53659274,
+ "longestRoundTripNano": 190774880,
+ "averageApexExecutionNano": 69525742,
+ "shortestApexExecutionNano": 9242069,
+ "longestApexExecutionNano": 144750271
+ },
+ {
+ "batchNumber": 2139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147532348,
+ "shortestRoundTripNano": 57664732,
+ "longestRoundTripNano": 179037405,
+ "averageApexExecutionNano": 60756760,
+ "shortestApexExecutionNano": 9858994,
+ "longestApexExecutionNano": 117128008
+ },
+ {
+ "batchNumber": 2140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163852267,
+ "shortestRoundTripNano": 66466142,
+ "longestRoundTripNano": 201711157,
+ "averageApexExecutionNano": 62545788,
+ "shortestApexExecutionNano": 10067869,
+ "longestApexExecutionNano": 114112694
+ },
+ {
+ "batchNumber": 2141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148797629,
+ "shortestRoundTripNano": 85241552,
+ "longestRoundTripNano": 181411824,
+ "averageApexExecutionNano": 82888105,
+ "shortestApexExecutionNano": 4615002,
+ "longestApexExecutionNano": 141736792
+ },
+ {
+ "batchNumber": 2142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134630526,
+ "shortestRoundTripNano": 54884544,
+ "longestRoundTripNano": 164365276,
+ "averageApexExecutionNano": 54891933,
+ "shortestApexExecutionNano": 8383671,
+ "longestApexExecutionNano": 102537745
+ },
+ {
+ "batchNumber": 2143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158083971,
+ "shortestRoundTripNano": 63068690,
+ "longestRoundTripNano": 220915756,
+ "averageApexExecutionNano": 77969008,
+ "shortestApexExecutionNano": 8755758,
+ "longestApexExecutionNano": 134508188
+ },
+ {
+ "batchNumber": 2144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142796043,
+ "shortestRoundTripNano": 73795123,
+ "longestRoundTripNano": 169413522,
+ "averageApexExecutionNano": 47781669,
+ "shortestApexExecutionNano": 12946894,
+ "longestApexExecutionNano": 92900475
+ },
+ {
+ "batchNumber": 2145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124329973,
+ "shortestRoundTripNano": 59774905,
+ "longestRoundTripNano": 153756506,
+ "averageApexExecutionNano": 54356067,
+ "shortestApexExecutionNano": 6474936,
+ "longestApexExecutionNano": 98863730
+ },
+ {
+ "batchNumber": 2146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142162063,
+ "shortestRoundTripNano": 56475229,
+ "longestRoundTripNano": 172057986,
+ "averageApexExecutionNano": 63779632,
+ "shortestApexExecutionNano": 5903371,
+ "longestApexExecutionNano": 123435575
+ },
+ {
+ "batchNumber": 2147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148242679,
+ "shortestRoundTripNano": 37474102,
+ "longestRoundTripNano": 177754026,
+ "averageApexExecutionNano": 48972624,
+ "shortestApexExecutionNano": 5858171,
+ "longestApexExecutionNano": 117488402
+ },
+ {
+ "batchNumber": 2148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149845499,
+ "shortestRoundTripNano": 61396211,
+ "longestRoundTripNano": 180571969,
+ "averageApexExecutionNano": 57482569,
+ "shortestApexExecutionNano": 7921616,
+ "longestApexExecutionNano": 128276239
+ },
+ {
+ "batchNumber": 2149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145550763,
+ "shortestRoundTripNano": 64202389,
+ "longestRoundTripNano": 175654149,
+ "averageApexExecutionNano": 54404503,
+ "shortestApexExecutionNano": 9149198,
+ "longestApexExecutionNano": 102720830
+ },
+ {
+ "batchNumber": 2150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148749529,
+ "shortestRoundTripNano": 74799206,
+ "longestRoundTripNano": 175455263,
+ "averageApexExecutionNano": 64900896,
+ "shortestApexExecutionNano": 8184725,
+ "longestApexExecutionNano": 127777442
+ },
+ {
+ "batchNumber": 2151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140605932,
+ "shortestRoundTripNano": 64141229,
+ "longestRoundTripNano": 168379846,
+ "averageApexExecutionNano": 68295785,
+ "shortestApexExecutionNano": 13138417,
+ "longestApexExecutionNano": 115948655
+ },
+ {
+ "batchNumber": 2152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153059251,
+ "shortestRoundTripNano": 54700858,
+ "longestRoundTripNano": 180940502,
+ "averageApexExecutionNano": 71964901,
+ "shortestApexExecutionNano": 9060403,
+ "longestApexExecutionNano": 126587552
+ },
+ {
+ "batchNumber": 2153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148856017,
+ "shortestRoundTripNano": 85890858,
+ "longestRoundTripNano": 173715136,
+ "averageApexExecutionNano": 66230505,
+ "shortestApexExecutionNano": 10483826,
+ "longestApexExecutionNano": 127630608
+ },
+ {
+ "batchNumber": 2154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119972730,
+ "shortestRoundTripNano": 58786178,
+ "longestRoundTripNano": 145238062,
+ "averageApexExecutionNano": 49931582,
+ "shortestApexExecutionNano": 4670445,
+ "longestApexExecutionNano": 106521080
+ },
+ {
+ "batchNumber": 2155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132871185,
+ "shortestRoundTripNano": 71789999,
+ "longestRoundTripNano": 160630932,
+ "averageApexExecutionNano": 65668253,
+ "shortestApexExecutionNano": 23983736,
+ "longestApexExecutionNano": 103680918
+ },
+ {
+ "batchNumber": 2156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135201844,
+ "shortestRoundTripNano": 57158852,
+ "longestRoundTripNano": 167332616,
+ "averageApexExecutionNano": 59690669,
+ "shortestApexExecutionNano": 11089107,
+ "longestApexExecutionNano": 112263918
+ },
+ {
+ "batchNumber": 2157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167126554,
+ "shortestRoundTripNano": 62995493,
+ "longestRoundTripNano": 197493438,
+ "averageApexExecutionNano": 73593598,
+ "shortestApexExecutionNano": 8372032,
+ "longestApexExecutionNano": 143321610
+ },
+ {
+ "batchNumber": 2158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120803035,
+ "shortestRoundTripNano": 47084289,
+ "longestRoundTripNano": 144192737,
+ "averageApexExecutionNano": 51047708,
+ "shortestApexExecutionNano": 11574934,
+ "longestApexExecutionNano": 100707282
+ },
+ {
+ "batchNumber": 2159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142087756,
+ "shortestRoundTripNano": 59661636,
+ "longestRoundTripNano": 174371315,
+ "averageApexExecutionNano": 57598890,
+ "shortestApexExecutionNano": 7389269,
+ "longestApexExecutionNano": 131064938
+ },
+ {
+ "batchNumber": 2160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152335474,
+ "shortestRoundTripNano": 64796088,
+ "longestRoundTripNano": 184944989,
+ "averageApexExecutionNano": 63481742,
+ "shortestApexExecutionNano": 9719307,
+ "longestApexExecutionNano": 124650356
+ },
+ {
+ "batchNumber": 2161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181722052,
+ "shortestRoundTripNano": 47740510,
+ "longestRoundTripNano": 218654257,
+ "averageApexExecutionNano": 81800569,
+ "shortestApexExecutionNano": 6257083,
+ "longestApexExecutionNano": 165490820
+ },
+ {
+ "batchNumber": 2162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146178880,
+ "shortestRoundTripNano": 90743355,
+ "longestRoundTripNano": 169786345,
+ "averageApexExecutionNano": 55407340,
+ "shortestApexExecutionNano": 10290287,
+ "longestApexExecutionNano": 124688496
+ },
+ {
+ "batchNumber": 2163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145059307,
+ "shortestRoundTripNano": 81665623,
+ "longestRoundTripNano": 173046454,
+ "averageApexExecutionNano": 47696499,
+ "shortestApexExecutionNano": 8486406,
+ "longestApexExecutionNano": 109704830
+ },
+ {
+ "batchNumber": 2164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148747200,
+ "shortestRoundTripNano": 43337030,
+ "longestRoundTripNano": 180082042,
+ "averageApexExecutionNano": 69250274,
+ "shortestApexExecutionNano": 11106839,
+ "longestApexExecutionNano": 129290453
+ },
+ {
+ "batchNumber": 2165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143791496,
+ "shortestRoundTripNano": 75755125,
+ "longestRoundTripNano": 174461749,
+ "averageApexExecutionNano": 59091493,
+ "shortestApexExecutionNano": 9291880,
+ "longestApexExecutionNano": 129260571
+ },
+ {
+ "batchNumber": 2166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130445134,
+ "shortestRoundTripNano": 55952276,
+ "longestRoundTripNano": 158281303,
+ "averageApexExecutionNano": 44874232,
+ "shortestApexExecutionNano": 8927429,
+ "longestApexExecutionNano": 105455209
+ },
+ {
+ "batchNumber": 2167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144804704,
+ "shortestRoundTripNano": 74222718,
+ "longestRoundTripNano": 170666774,
+ "averageApexExecutionNano": 65052294,
+ "shortestApexExecutionNano": 11253367,
+ "longestApexExecutionNano": 120969581
+ },
+ {
+ "batchNumber": 2168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145007705,
+ "shortestRoundTripNano": 54113660,
+ "longestRoundTripNano": 169934957,
+ "averageApexExecutionNano": 68706916,
+ "shortestApexExecutionNano": 14423609,
+ "longestApexExecutionNano": 118715493
+ },
+ {
+ "batchNumber": 2169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149359021,
+ "shortestRoundTripNano": 65267584,
+ "longestRoundTripNano": 184670171,
+ "averageApexExecutionNano": 53832695,
+ "shortestApexExecutionNano": 6632457,
+ "longestApexExecutionNano": 113074022
+ },
+ {
+ "batchNumber": 2170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135895597,
+ "shortestRoundTripNano": 62604265,
+ "longestRoundTripNano": 162536482,
+ "averageApexExecutionNano": 56746187,
+ "shortestApexExecutionNano": 12017468,
+ "longestApexExecutionNano": 105630744
+ },
+ {
+ "batchNumber": 2171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144361241,
+ "shortestRoundTripNano": 68227776,
+ "longestRoundTripNano": 181270623,
+ "averageApexExecutionNano": 53654515,
+ "shortestApexExecutionNano": 12172737,
+ "longestApexExecutionNano": 128858269
+ },
+ {
+ "batchNumber": 2172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154502432,
+ "shortestRoundTripNano": 66041320,
+ "longestRoundTripNano": 184702140,
+ "averageApexExecutionNano": 68560556,
+ "shortestApexExecutionNano": 7607331,
+ "longestApexExecutionNano": 118534540
+ },
+ {
+ "batchNumber": 2173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180071673,
+ "shortestRoundTripNano": 57486343,
+ "longestRoundTripNano": 208967598,
+ "averageApexExecutionNano": 86179818,
+ "shortestApexExecutionNano": 12423181,
+ "longestApexExecutionNano": 155041226
+ },
+ {
+ "batchNumber": 2174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125462193,
+ "shortestRoundTripNano": 46225264,
+ "longestRoundTripNano": 158474019,
+ "averageApexExecutionNano": 55051355,
+ "shortestApexExecutionNano": 5693138,
+ "longestApexExecutionNano": 114775227
+ },
+ {
+ "batchNumber": 2175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153103220,
+ "shortestRoundTripNano": 80151429,
+ "longestRoundTripNano": 184810594,
+ "averageApexExecutionNano": 67029138,
+ "shortestApexExecutionNano": 12313712,
+ "longestApexExecutionNano": 133284471
+ },
+ {
+ "batchNumber": 2176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160236115,
+ "shortestRoundTripNano": 67712215,
+ "longestRoundTripNano": 205976758,
+ "averageApexExecutionNano": 67604133,
+ "shortestApexExecutionNano": 6658885,
+ "longestApexExecutionNano": 131774750
+ },
+ {
+ "batchNumber": 2177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156716348,
+ "shortestRoundTripNano": 32928120,
+ "longestRoundTripNano": 198285009,
+ "averageApexExecutionNano": 72518808,
+ "shortestApexExecutionNano": 7531188,
+ "longestApexExecutionNano": 139234484
+ },
+ {
+ "batchNumber": 2178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147650469,
+ "shortestRoundTripNano": 81103625,
+ "longestRoundTripNano": 177084244,
+ "averageApexExecutionNano": 57581471,
+ "shortestApexExecutionNano": 8172939,
+ "longestApexExecutionNano": 116122227
+ },
+ {
+ "batchNumber": 2179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143977474,
+ "shortestRoundTripNano": 70338311,
+ "longestRoundTripNano": 173513752,
+ "averageApexExecutionNano": 62183153,
+ "shortestApexExecutionNano": 10242475,
+ "longestApexExecutionNano": 111769711
+ },
+ {
+ "batchNumber": 2180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176922004,
+ "shortestRoundTripNano": 50579455,
+ "longestRoundTripNano": 206711198,
+ "averageApexExecutionNano": 58818794,
+ "shortestApexExecutionNano": 9936542,
+ "longestApexExecutionNano": 127318177
+ },
+ {
+ "batchNumber": 2181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172164867,
+ "shortestRoundTripNano": 88161649,
+ "longestRoundTripNano": 207193239,
+ "averageApexExecutionNano": 89600888,
+ "shortestApexExecutionNano": 8680722,
+ "longestApexExecutionNano": 161157625
+ },
+ {
+ "batchNumber": 2182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136271217,
+ "shortestRoundTripNano": 58697035,
+ "longestRoundTripNano": 162703632,
+ "averageApexExecutionNano": 68696220,
+ "shortestApexExecutionNano": 21289222,
+ "longestApexExecutionNano": 118360396
+ },
+ {
+ "batchNumber": 2183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144070170,
+ "shortestRoundTripNano": 40152278,
+ "longestRoundTripNano": 170787268,
+ "averageApexExecutionNano": 72450094,
+ "shortestApexExecutionNano": 12752376,
+ "longestApexExecutionNano": 122313616
+ },
+ {
+ "batchNumber": 2184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142555415,
+ "shortestRoundTripNano": 62774513,
+ "longestRoundTripNano": 173100588,
+ "averageApexExecutionNano": 65293551,
+ "shortestApexExecutionNano": 15023757,
+ "longestApexExecutionNano": 122577037
+ },
+ {
+ "batchNumber": 2185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156443575,
+ "shortestRoundTripNano": 71211377,
+ "longestRoundTripNano": 193674856,
+ "averageApexExecutionNano": 44454441,
+ "shortestApexExecutionNano": 6880781,
+ "longestApexExecutionNano": 131039130
+ },
+ {
+ "batchNumber": 2186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149420482,
+ "shortestRoundTripNano": 65243108,
+ "longestRoundTripNano": 175977258,
+ "averageApexExecutionNano": 51979908,
+ "shortestApexExecutionNano": 6952630,
+ "longestApexExecutionNano": 118419384
+ },
+ {
+ "batchNumber": 2187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 203785699,
+ "shortestRoundTripNano": 65530472,
+ "longestRoundTripNano": 249502972,
+ "averageApexExecutionNano": 112245551,
+ "shortestApexExecutionNano": 5504304,
+ "longestApexExecutionNano": 196813959
+ },
+ {
+ "batchNumber": 2188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192228751,
+ "shortestRoundTripNano": 77160693,
+ "longestRoundTripNano": 231385084,
+ "averageApexExecutionNano": 91755566,
+ "shortestApexExecutionNano": 17990026,
+ "longestApexExecutionNano": 184436066
+ },
+ {
+ "batchNumber": 2189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153627441,
+ "shortestRoundTripNano": 95423504,
+ "longestRoundTripNano": 180131067,
+ "averageApexExecutionNano": 79829498,
+ "shortestApexExecutionNano": 9562107,
+ "longestApexExecutionNano": 137767017
+ },
+ {
+ "batchNumber": 2190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133012125,
+ "shortestRoundTripNano": 69328571,
+ "longestRoundTripNano": 160788724,
+ "averageApexExecutionNano": 54595042,
+ "shortestApexExecutionNano": 5195163,
+ "longestApexExecutionNano": 104221460
+ },
+ {
+ "batchNumber": 2191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154240734,
+ "shortestRoundTripNano": 92201395,
+ "longestRoundTripNano": 181400625,
+ "averageApexExecutionNano": 62912114,
+ "shortestApexExecutionNano": 7763858,
+ "longestApexExecutionNano": 127409047
+ },
+ {
+ "batchNumber": 2192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132457557,
+ "shortestRoundTripNano": 75822147,
+ "longestRoundTripNano": 162693556,
+ "averageApexExecutionNano": 53072833,
+ "shortestApexExecutionNano": 7116660,
+ "longestApexExecutionNano": 113356643
+ },
+ {
+ "batchNumber": 2193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171898895,
+ "shortestRoundTripNano": 94356987,
+ "longestRoundTripNano": 195378092,
+ "averageApexExecutionNano": 75612444,
+ "shortestApexExecutionNano": 15376142,
+ "longestApexExecutionNano": 153483429
+ },
+ {
+ "batchNumber": 2194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149723539,
+ "shortestRoundTripNano": 81548085,
+ "longestRoundTripNano": 189236014,
+ "averageApexExecutionNano": 64345903,
+ "shortestApexExecutionNano": 10690469,
+ "longestApexExecutionNano": 155769753
+ },
+ {
+ "batchNumber": 2195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160461481,
+ "shortestRoundTripNano": 65569787,
+ "longestRoundTripNano": 195379747,
+ "averageApexExecutionNano": 62021945,
+ "shortestApexExecutionNano": 6644106,
+ "longestApexExecutionNano": 145467520
+ },
+ {
+ "batchNumber": 2196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161406785,
+ "shortestRoundTripNano": 82115996,
+ "longestRoundTripNano": 185119841,
+ "averageApexExecutionNano": 72401496,
+ "shortestApexExecutionNano": 5176686,
+ "longestApexExecutionNano": 135336574
+ },
+ {
+ "batchNumber": 2197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182243832,
+ "shortestRoundTripNano": 85183738,
+ "longestRoundTripNano": 227599388,
+ "averageApexExecutionNano": 77861099,
+ "shortestApexExecutionNano": 7015521,
+ "longestApexExecutionNano": 141041705
+ },
+ {
+ "batchNumber": 2198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145822389,
+ "shortestRoundTripNano": 65584093,
+ "longestRoundTripNano": 185914694,
+ "averageApexExecutionNano": 41452515,
+ "shortestApexExecutionNano": 7613406,
+ "longestApexExecutionNano": 118389038
+ },
+ {
+ "batchNumber": 2199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132243944,
+ "shortestRoundTripNano": 48674043,
+ "longestRoundTripNano": 160290053,
+ "averageApexExecutionNano": 65470473,
+ "shortestApexExecutionNano": 10362874,
+ "longestApexExecutionNano": 117218448
+ },
+ {
+ "batchNumber": 2200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134620587,
+ "shortestRoundTripNano": 61347277,
+ "longestRoundTripNano": 169106601,
+ "averageApexExecutionNano": 50610495,
+ "shortestApexExecutionNano": 7066900,
+ "longestApexExecutionNano": 117912501
+ },
+ {
+ "batchNumber": 2201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180450727,
+ "shortestRoundTripNano": 75375848,
+ "longestRoundTripNano": 215563603,
+ "averageApexExecutionNano": 75172987,
+ "shortestApexExecutionNano": 13494703,
+ "longestApexExecutionNano": 151076680
+ },
+ {
+ "batchNumber": 2202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158805844,
+ "shortestRoundTripNano": 35955681,
+ "longestRoundTripNano": 196024562,
+ "averageApexExecutionNano": 67117077,
+ "shortestApexExecutionNano": 12987896,
+ "longestApexExecutionNano": 133526792
+ },
+ {
+ "batchNumber": 2203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150964266,
+ "shortestRoundTripNano": 69079121,
+ "longestRoundTripNano": 186572223,
+ "averageApexExecutionNano": 66897376,
+ "shortestApexExecutionNano": 9850616,
+ "longestApexExecutionNano": 141124017
+ },
+ {
+ "batchNumber": 2204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136976520,
+ "shortestRoundTripNano": 68492534,
+ "longestRoundTripNano": 172216588,
+ "averageApexExecutionNano": 57687973,
+ "shortestApexExecutionNano": 6685438,
+ "longestApexExecutionNano": 121944557
+ },
+ {
+ "batchNumber": 2205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162532571,
+ "shortestRoundTripNano": 55321614,
+ "longestRoundTripNano": 201470923,
+ "averageApexExecutionNano": 71875310,
+ "shortestApexExecutionNano": 9302170,
+ "longestApexExecutionNano": 141084771
+ },
+ {
+ "batchNumber": 2206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159188194,
+ "shortestRoundTripNano": 96480356,
+ "longestRoundTripNano": 188061283,
+ "averageApexExecutionNano": 60685326,
+ "shortestApexExecutionNano": 6598907,
+ "longestApexExecutionNano": 127650022
+ },
+ {
+ "batchNumber": 2207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136606794,
+ "shortestRoundTripNano": 55874167,
+ "longestRoundTripNano": 171737097,
+ "averageApexExecutionNano": 60048612,
+ "shortestApexExecutionNano": 8567913,
+ "longestApexExecutionNano": 107626155
+ },
+ {
+ "batchNumber": 2208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137856233,
+ "shortestRoundTripNano": 42034558,
+ "longestRoundTripNano": 162315030,
+ "averageApexExecutionNano": 61122380,
+ "shortestApexExecutionNano": 7413384,
+ "longestApexExecutionNano": 114306318
+ },
+ {
+ "batchNumber": 2209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174003292,
+ "shortestRoundTripNano": 92619135,
+ "longestRoundTripNano": 201542012,
+ "averageApexExecutionNano": 73344836,
+ "shortestApexExecutionNano": 6038316,
+ "longestApexExecutionNano": 154638483
+ },
+ {
+ "batchNumber": 2210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159633707,
+ "shortestRoundTripNano": 69107111,
+ "longestRoundTripNano": 189429914,
+ "averageApexExecutionNano": 57822450,
+ "shortestApexExecutionNano": 14482074,
+ "longestApexExecutionNano": 116882546
+ },
+ {
+ "batchNumber": 2211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141917426,
+ "shortestRoundTripNano": 68143963,
+ "longestRoundTripNano": 173906693,
+ "averageApexExecutionNano": 64569171,
+ "shortestApexExecutionNano": 5651991,
+ "longestApexExecutionNano": 139346494
+ },
+ {
+ "batchNumber": 2212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154198347,
+ "shortestRoundTripNano": 56130551,
+ "longestRoundTripNano": 182018101,
+ "averageApexExecutionNano": 78018650,
+ "shortestApexExecutionNano": 9268718,
+ "longestApexExecutionNano": 137845787
+ },
+ {
+ "batchNumber": 2213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148167311,
+ "shortestRoundTripNano": 79858535,
+ "longestRoundTripNano": 174609189,
+ "averageApexExecutionNano": 67223368,
+ "shortestApexExecutionNano": 8707142,
+ "longestApexExecutionNano": 121972542
+ },
+ {
+ "batchNumber": 2214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135970534,
+ "shortestRoundTripNano": 54560982,
+ "longestRoundTripNano": 170975855,
+ "averageApexExecutionNano": 62222472,
+ "shortestApexExecutionNano": 7669199,
+ "longestApexExecutionNano": 130594187
+ },
+ {
+ "batchNumber": 2215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151396692,
+ "shortestRoundTripNano": 54746933,
+ "longestRoundTripNano": 181483983,
+ "averageApexExecutionNano": 65659338,
+ "shortestApexExecutionNano": 7296257,
+ "longestApexExecutionNano": 134587739
+ },
+ {
+ "batchNumber": 2216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142257680,
+ "shortestRoundTripNano": 62058923,
+ "longestRoundTripNano": 175135630,
+ "averageApexExecutionNano": 58919103,
+ "shortestApexExecutionNano": 5524766,
+ "longestApexExecutionNano": 113160615
+ },
+ {
+ "batchNumber": 2217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141052266,
+ "shortestRoundTripNano": 69458313,
+ "longestRoundTripNano": 174938281,
+ "averageApexExecutionNano": 42454384,
+ "shortestApexExecutionNano": 5659161,
+ "longestApexExecutionNano": 103442626
+ },
+ {
+ "batchNumber": 2218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146527487,
+ "shortestRoundTripNano": 62958068,
+ "longestRoundTripNano": 196148078,
+ "averageApexExecutionNano": 67881891,
+ "shortestApexExecutionNano": 12520283,
+ "longestApexExecutionNano": 114366360
+ },
+ {
+ "batchNumber": 2219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156596800,
+ "shortestRoundTripNano": 76768328,
+ "longestRoundTripNano": 189279011,
+ "averageApexExecutionNano": 69771499,
+ "shortestApexExecutionNano": 8740239,
+ "longestApexExecutionNano": 132957079
+ },
+ {
+ "batchNumber": 2220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168296517,
+ "shortestRoundTripNano": 57572032,
+ "longestRoundTripNano": 201935317,
+ "averageApexExecutionNano": 66746711,
+ "shortestApexExecutionNano": 8592909,
+ "longestApexExecutionNano": 131529888
+ },
+ {
+ "batchNumber": 2221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146930919,
+ "shortestRoundTripNano": 66088302,
+ "longestRoundTripNano": 177836107,
+ "averageApexExecutionNano": 71703809,
+ "shortestApexExecutionNano": 10414976,
+ "longestApexExecutionNano": 136699000
+ },
+ {
+ "batchNumber": 2222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179654350,
+ "shortestRoundTripNano": 97853496,
+ "longestRoundTripNano": 207027311,
+ "averageApexExecutionNano": 72427527,
+ "shortestApexExecutionNano": 14266360,
+ "longestApexExecutionNano": 138256284
+ },
+ {
+ "batchNumber": 2223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143319420,
+ "shortestRoundTripNano": 47551279,
+ "longestRoundTripNano": 172633005,
+ "averageApexExecutionNano": 54642288,
+ "shortestApexExecutionNano": 8565330,
+ "longestApexExecutionNano": 114587841
+ },
+ {
+ "batchNumber": 2224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152576539,
+ "shortestRoundTripNano": 86493267,
+ "longestRoundTripNano": 184625088,
+ "averageApexExecutionNano": 71597211,
+ "shortestApexExecutionNano": 10616730,
+ "longestApexExecutionNano": 133809924
+ },
+ {
+ "batchNumber": 2225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117795735,
+ "shortestRoundTripNano": 68146939,
+ "longestRoundTripNano": 147045254,
+ "averageApexExecutionNano": 52966729,
+ "shortestApexExecutionNano": 10030217,
+ "longestApexExecutionNano": 109968767
+ },
+ {
+ "batchNumber": 2226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152057545,
+ "shortestRoundTripNano": 66315517,
+ "longestRoundTripNano": 175191664,
+ "averageApexExecutionNano": 55039953,
+ "shortestApexExecutionNano": 6541123,
+ "longestApexExecutionNano": 114123519
+ },
+ {
+ "batchNumber": 2227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154538506,
+ "shortestRoundTripNano": 88934386,
+ "longestRoundTripNano": 175674217,
+ "averageApexExecutionNano": 71251182,
+ "shortestApexExecutionNano": 13611046,
+ "longestApexExecutionNano": 116380759
+ },
+ {
+ "batchNumber": 2228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35520",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171805089,
+ "shortestRoundTripNano": 53567521,
+ "longestRoundTripNano": 220514618,
+ "averageApexExecutionNano": 59019822,
+ "shortestApexExecutionNano": 8411238,
+ "longestApexExecutionNano": 143228355
+ },
+ {
+ "batchNumber": 2229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183458054,
+ "shortestRoundTripNano": 86029235,
+ "longestRoundTripNano": 209593582,
+ "averageApexExecutionNano": 79654894,
+ "shortestApexExecutionNano": 8456018,
+ "longestApexExecutionNano": 145839507
+ },
+ {
+ "batchNumber": 2230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155705807,
+ "shortestRoundTripNano": 72041492,
+ "longestRoundTripNano": 185933876,
+ "averageApexExecutionNano": 67471754,
+ "shortestApexExecutionNano": 6491708,
+ "longestApexExecutionNano": 121358136
+ },
+ {
+ "batchNumber": 2231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136542917,
+ "shortestRoundTripNano": 59553695,
+ "longestRoundTripNano": 159826002,
+ "averageApexExecutionNano": 54291980,
+ "shortestApexExecutionNano": 10706699,
+ "longestApexExecutionNano": 109521510
+ },
+ {
+ "batchNumber": 2232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166323766,
+ "shortestRoundTripNano": 77213218,
+ "longestRoundTripNano": 187884687,
+ "averageApexExecutionNano": 76202214,
+ "shortestApexExecutionNano": 21234010,
+ "longestApexExecutionNano": 136669108
+ },
+ {
+ "batchNumber": 2233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144075419,
+ "shortestRoundTripNano": 52713747,
+ "longestRoundTripNano": 170443342,
+ "averageApexExecutionNano": 62996656,
+ "shortestApexExecutionNano": 7903460,
+ "longestApexExecutionNano": 120568490
+ },
+ {
+ "batchNumber": 2234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140798372,
+ "shortestRoundTripNano": 59693194,
+ "longestRoundTripNano": 168145383,
+ "averageApexExecutionNano": 57920993,
+ "shortestApexExecutionNano": 6964978,
+ "longestApexExecutionNano": 122769188
+ },
+ {
+ "batchNumber": 2235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141873348,
+ "shortestRoundTripNano": 53087249,
+ "longestRoundTripNano": 173569070,
+ "averageApexExecutionNano": 47156601,
+ "shortestApexExecutionNano": 6368381,
+ "longestApexExecutionNano": 113643515
+ },
+ {
+ "batchNumber": 2236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139524167,
+ "shortestRoundTripNano": 68359600,
+ "longestRoundTripNano": 163267205,
+ "averageApexExecutionNano": 52445673,
+ "shortestApexExecutionNano": 7014506,
+ "longestApexExecutionNano": 104100720
+ },
+ {
+ "batchNumber": 2237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157878874,
+ "shortestRoundTripNano": 33650892,
+ "longestRoundTripNano": 188464501,
+ "averageApexExecutionNano": 66556365,
+ "shortestApexExecutionNano": 9056610,
+ "longestApexExecutionNano": 140391729
+ },
+ {
+ "batchNumber": 2238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151871819,
+ "shortestRoundTripNano": 71907877,
+ "longestRoundTripNano": 185511356,
+ "averageApexExecutionNano": 53525883,
+ "shortestApexExecutionNano": 7970249,
+ "longestApexExecutionNano": 144414436
+ },
+ {
+ "batchNumber": 2239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154413135,
+ "shortestRoundTripNano": 64347458,
+ "longestRoundTripNano": 184439508,
+ "averageApexExecutionNano": 81010654,
+ "shortestApexExecutionNano": 9864162,
+ "longestApexExecutionNano": 131462632
+ },
+ {
+ "batchNumber": 2240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134513959,
+ "shortestRoundTripNano": 66588443,
+ "longestRoundTripNano": 169445699,
+ "averageApexExecutionNano": 55144790,
+ "shortestApexExecutionNano": 7360506,
+ "longestApexExecutionNano": 125992557
+ },
+ {
+ "batchNumber": 2241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 223982994,
+ "shortestRoundTripNano": 39727077,
+ "longestRoundTripNano": 262451078,
+ "averageApexExecutionNano": 98309171,
+ "shortestApexExecutionNano": 6988825,
+ "longestApexExecutionNano": 221238039
+ },
+ {
+ "batchNumber": 2242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142383453,
+ "shortestRoundTripNano": 72486342,
+ "longestRoundTripNano": 170614115,
+ "averageApexExecutionNano": 55887623,
+ "shortestApexExecutionNano": 10102817,
+ "longestApexExecutionNano": 113511647
+ },
+ {
+ "batchNumber": 2243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163526235,
+ "shortestRoundTripNano": 59656809,
+ "longestRoundTripNano": 189693672,
+ "averageApexExecutionNano": 79847765,
+ "shortestApexExecutionNano": 5508372,
+ "longestApexExecutionNano": 138779651
+ },
+ {
+ "batchNumber": 2244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157956962,
+ "shortestRoundTripNano": 84037390,
+ "longestRoundTripNano": 179330874,
+ "averageApexExecutionNano": 74366511,
+ "shortestApexExecutionNano": 32306365,
+ "longestApexExecutionNano": 134838029
+ },
+ {
+ "batchNumber": 2245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160099446,
+ "shortestRoundTripNano": 78125749,
+ "longestRoundTripNano": 191334230,
+ "averageApexExecutionNano": 83407653,
+ "shortestApexExecutionNano": 10885730,
+ "longestApexExecutionNano": 151632772
+ },
+ {
+ "batchNumber": 2246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143585465,
+ "shortestRoundTripNano": 51085883,
+ "longestRoundTripNano": 177827535,
+ "averageApexExecutionNano": 45994904,
+ "shortestApexExecutionNano": 7270215,
+ "longestApexExecutionNano": 117822299
+ },
+ {
+ "batchNumber": 2247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132882146,
+ "shortestRoundTripNano": 62654744,
+ "longestRoundTripNano": 167629186,
+ "averageApexExecutionNano": 41540577,
+ "shortestApexExecutionNano": 7998146,
+ "longestApexExecutionNano": 94698139
+ },
+ {
+ "batchNumber": 2248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136295215,
+ "shortestRoundTripNano": 43676054,
+ "longestRoundTripNano": 168400368,
+ "averageApexExecutionNano": 68759489,
+ "shortestApexExecutionNano": 4712751,
+ "longestApexExecutionNano": 125243638
+ },
+ {
+ "batchNumber": 2249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138336782,
+ "shortestRoundTripNano": 57963077,
+ "longestRoundTripNano": 167091395,
+ "averageApexExecutionNano": 51459708,
+ "shortestApexExecutionNano": 7085097,
+ "longestApexExecutionNano": 100386915
+ },
+ {
+ "batchNumber": 2250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131502545,
+ "shortestRoundTripNano": 59060021,
+ "longestRoundTripNano": 159563093,
+ "averageApexExecutionNano": 44335377,
+ "shortestApexExecutionNano": 5331116,
+ "longestApexExecutionNano": 98104487
+ },
+ {
+ "batchNumber": 2251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146069561,
+ "shortestRoundTripNano": 62913450,
+ "longestRoundTripNano": 177815361,
+ "averageApexExecutionNano": 51464407,
+ "shortestApexExecutionNano": 7939762,
+ "longestApexExecutionNano": 121764067
+ },
+ {
+ "batchNumber": 2252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151163260,
+ "shortestRoundTripNano": 52146749,
+ "longestRoundTripNano": 181162043,
+ "averageApexExecutionNano": 62480919,
+ "shortestApexExecutionNano": 6544976,
+ "longestApexExecutionNano": 114761399
+ },
+ {
+ "batchNumber": 2253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149388705,
+ "shortestRoundTripNano": 80084471,
+ "longestRoundTripNano": 173180126,
+ "averageApexExecutionNano": 72364242,
+ "shortestApexExecutionNano": 21037674,
+ "longestApexExecutionNano": 130071661
+ },
+ {
+ "batchNumber": 2254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178759766,
+ "shortestRoundTripNano": 67932963,
+ "longestRoundTripNano": 209298370,
+ "averageApexExecutionNano": 80802202,
+ "shortestApexExecutionNano": 13439888,
+ "longestApexExecutionNano": 161180897
+ },
+ {
+ "batchNumber": 2255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158628831,
+ "shortestRoundTripNano": 74737244,
+ "longestRoundTripNano": 186308810,
+ "averageApexExecutionNano": 73481190,
+ "shortestApexExecutionNano": 20186505,
+ "longestApexExecutionNano": 130161969
+ },
+ {
+ "batchNumber": 2256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145495176,
+ "shortestRoundTripNano": 88699177,
+ "longestRoundTripNano": 171296042,
+ "averageApexExecutionNano": 65198993,
+ "shortestApexExecutionNano": 9727579,
+ "longestApexExecutionNano": 114070654
+ },
+ {
+ "batchNumber": 2257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145841803,
+ "shortestRoundTripNano": 45121177,
+ "longestRoundTripNano": 182106144,
+ "averageApexExecutionNano": 54808418,
+ "shortestApexExecutionNano": 6578393,
+ "longestApexExecutionNano": 126048487
+ },
+ {
+ "batchNumber": 2258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150658839,
+ "shortestRoundTripNano": 55773259,
+ "longestRoundTripNano": 183114813,
+ "averageApexExecutionNano": 59653527,
+ "shortestApexExecutionNano": 8067564,
+ "longestApexExecutionNano": 145720021
+ },
+ {
+ "batchNumber": 2259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187049343,
+ "shortestRoundTripNano": 84547184,
+ "longestRoundTripNano": 217137590,
+ "averageApexExecutionNano": 82566288,
+ "shortestApexExecutionNano": 13901399,
+ "longestApexExecutionNano": 165126710
+ },
+ {
+ "batchNumber": 2260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163955348,
+ "shortestRoundTripNano": 57038995,
+ "longestRoundTripNano": 197394516,
+ "averageApexExecutionNano": 53485117,
+ "shortestApexExecutionNano": 14056074,
+ "longestApexExecutionNano": 113605623
+ },
+ {
+ "batchNumber": 2261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150942005,
+ "shortestRoundTripNano": 63196218,
+ "longestRoundTripNano": 190831562,
+ "averageApexExecutionNano": 62989351,
+ "shortestApexExecutionNano": 8792416,
+ "longestApexExecutionNano": 141099913
+ },
+ {
+ "batchNumber": 2262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154849113,
+ "shortestRoundTripNano": 81421589,
+ "longestRoundTripNano": 199396717,
+ "averageApexExecutionNano": 81856049,
+ "shortestApexExecutionNano": 10967626,
+ "longestApexExecutionNano": 156289713
+ },
+ {
+ "batchNumber": 2263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179756227,
+ "shortestRoundTripNano": 85240724,
+ "longestRoundTripNano": 212256667,
+ "averageApexExecutionNano": 73882726,
+ "shortestApexExecutionNano": 9422987,
+ "longestApexExecutionNano": 141369624
+ },
+ {
+ "batchNumber": 2264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159474471,
+ "shortestRoundTripNano": 60022586,
+ "longestRoundTripNano": 196659931,
+ "averageApexExecutionNano": 68036297,
+ "shortestApexExecutionNano": 6268586,
+ "longestApexExecutionNano": 152259034
+ },
+ {
+ "batchNumber": 2265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155251973,
+ "shortestRoundTripNano": 83789237,
+ "longestRoundTripNano": 181969732,
+ "averageApexExecutionNano": 64479907,
+ "shortestApexExecutionNano": 8405902,
+ "longestApexExecutionNano": 130352906
+ },
+ {
+ "batchNumber": 2266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163222124,
+ "shortestRoundTripNano": 49807621,
+ "longestRoundTripNano": 193104376,
+ "averageApexExecutionNano": 62364691,
+ "shortestApexExecutionNano": 6994914,
+ "longestApexExecutionNano": 130718913
+ },
+ {
+ "batchNumber": 2267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140218131,
+ "shortestRoundTripNano": 44818614,
+ "longestRoundTripNano": 162679984,
+ "averageApexExecutionNano": 46711257,
+ "shortestApexExecutionNano": 6953635,
+ "longestApexExecutionNano": 118427134
+ },
+ {
+ "batchNumber": 2268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35536",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180683009,
+ "shortestRoundTripNano": 68972928,
+ "longestRoundTripNano": 221273739,
+ "averageApexExecutionNano": 76987881,
+ "shortestApexExecutionNano": 9617695,
+ "longestApexExecutionNano": 145778829
+ },
+ {
+ "batchNumber": 2269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162281538,
+ "shortestRoundTripNano": 91943758,
+ "longestRoundTripNano": 192491410,
+ "averageApexExecutionNano": 65948027,
+ "shortestApexExecutionNano": 8376167,
+ "longestApexExecutionNano": 136566639
+ },
+ {
+ "batchNumber": 2270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143238142,
+ "shortestRoundTripNano": 49457936,
+ "longestRoundTripNano": 179280634,
+ "averageApexExecutionNano": 53496325,
+ "shortestApexExecutionNano": 9825017,
+ "longestApexExecutionNano": 105856346
+ },
+ {
+ "batchNumber": 2271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153057902,
+ "shortestRoundTripNano": 74921317,
+ "longestRoundTripNano": 188233925,
+ "averageApexExecutionNano": 67054384,
+ "shortestApexExecutionNano": 14199643,
+ "longestApexExecutionNano": 130403218
+ },
+ {
+ "batchNumber": 2272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116697502,
+ "shortestRoundTripNano": 41459871,
+ "longestRoundTripNano": 158858154,
+ "averageApexExecutionNano": 50589094,
+ "shortestApexExecutionNano": 6873128,
+ "longestApexExecutionNano": 113066057
+ },
+ {
+ "batchNumber": 2273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135608741,
+ "shortestRoundTripNano": 69952726,
+ "longestRoundTripNano": 165951972,
+ "averageApexExecutionNano": 57819360,
+ "shortestApexExecutionNano": 5658057,
+ "longestApexExecutionNano": 109289268
+ },
+ {
+ "batchNumber": 2274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151565392,
+ "shortestRoundTripNano": 59319387,
+ "longestRoundTripNano": 186848178,
+ "averageApexExecutionNano": 54107492,
+ "shortestApexExecutionNano": 7294982,
+ "longestApexExecutionNano": 145630753
+ },
+ {
+ "batchNumber": 2275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196561317,
+ "shortestRoundTripNano": 80761907,
+ "longestRoundTripNano": 227216737,
+ "averageApexExecutionNano": 85658242,
+ "shortestApexExecutionNano": 11058835,
+ "longestApexExecutionNano": 170131540
+ },
+ {
+ "batchNumber": 2276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151541960,
+ "shortestRoundTripNano": 53543765,
+ "longestRoundTripNano": 179519439,
+ "averageApexExecutionNano": 62970578,
+ "shortestApexExecutionNano": 9296161,
+ "longestApexExecutionNano": 117180820
+ },
+ {
+ "batchNumber": 2277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157048975,
+ "shortestRoundTripNano": 63154176,
+ "longestRoundTripNano": 186795934,
+ "averageApexExecutionNano": 67488827,
+ "shortestApexExecutionNano": 8514641,
+ "longestApexExecutionNano": 133933384
+ },
+ {
+ "batchNumber": 2278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156392717,
+ "shortestRoundTripNano": 56218734,
+ "longestRoundTripNano": 184618005,
+ "averageApexExecutionNano": 73339244,
+ "shortestApexExecutionNano": 13199190,
+ "longestApexExecutionNano": 140878190
+ },
+ {
+ "batchNumber": 2279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150017717,
+ "shortestRoundTripNano": 71047606,
+ "longestRoundTripNano": 175432599,
+ "averageApexExecutionNano": 63611300,
+ "shortestApexExecutionNano": 12704169,
+ "longestApexExecutionNano": 118911047
+ },
+ {
+ "batchNumber": 2280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157680601,
+ "shortestRoundTripNano": 63272714,
+ "longestRoundTripNano": 193512497,
+ "averageApexExecutionNano": 56115336,
+ "shortestApexExecutionNano": 6169028,
+ "longestApexExecutionNano": 148070241
+ },
+ {
+ "batchNumber": 2281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148821368,
+ "shortestRoundTripNano": 30677076,
+ "longestRoundTripNano": 195094926,
+ "averageApexExecutionNano": 54773778,
+ "shortestApexExecutionNano": 9115427,
+ "longestApexExecutionNano": 134937698
+ },
+ {
+ "batchNumber": 2282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140802026,
+ "shortestRoundTripNano": 53580090,
+ "longestRoundTripNano": 170990943,
+ "averageApexExecutionNano": 53379104,
+ "shortestApexExecutionNano": 6281731,
+ "longestApexExecutionNano": 131929775
+ },
+ {
+ "batchNumber": 2283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135470817,
+ "shortestRoundTripNano": 50344435,
+ "longestRoundTripNano": 186420493,
+ "averageApexExecutionNano": 50669969,
+ "shortestApexExecutionNano": 7313598,
+ "longestApexExecutionNano": 114911771
+ },
+ {
+ "batchNumber": 2284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150746625,
+ "shortestRoundTripNano": 77840851,
+ "longestRoundTripNano": 179742736,
+ "averageApexExecutionNano": 65006198,
+ "shortestApexExecutionNano": 5488685,
+ "longestApexExecutionNano": 137975701
+ },
+ {
+ "batchNumber": 2285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143276364,
+ "shortestRoundTripNano": 59669116,
+ "longestRoundTripNano": 186841690,
+ "averageApexExecutionNano": 64693788,
+ "shortestApexExecutionNano": 8060563,
+ "longestApexExecutionNano": 117636948
+ },
+ {
+ "batchNumber": 2286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155916201,
+ "shortestRoundTripNano": 47271410,
+ "longestRoundTripNano": 193354810,
+ "averageApexExecutionNano": 69362204,
+ "shortestApexExecutionNano": 7580737,
+ "longestApexExecutionNano": 126803724
+ },
+ {
+ "batchNumber": 2287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161334266,
+ "shortestRoundTripNano": 55731842,
+ "longestRoundTripNano": 191612828,
+ "averageApexExecutionNano": 64141095,
+ "shortestApexExecutionNano": 8510768,
+ "longestApexExecutionNano": 128220053
+ },
+ {
+ "batchNumber": 2288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158063889,
+ "shortestRoundTripNano": 59226923,
+ "longestRoundTripNano": 184534294,
+ "averageApexExecutionNano": 57217256,
+ "shortestApexExecutionNano": 5418876,
+ "longestApexExecutionNano": 120876192
+ },
+ {
+ "batchNumber": 2289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133291161,
+ "shortestRoundTripNano": 67080035,
+ "longestRoundTripNano": 157083983,
+ "averageApexExecutionNano": 62375313,
+ "shortestApexExecutionNano": 5876852,
+ "longestApexExecutionNano": 104980000
+ },
+ {
+ "batchNumber": 2290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128749310,
+ "shortestRoundTripNano": 53990505,
+ "longestRoundTripNano": 152939692,
+ "averageApexExecutionNano": 47252967,
+ "shortestApexExecutionNano": 6001171,
+ "longestApexExecutionNano": 104252565
+ },
+ {
+ "batchNumber": 2291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149631796,
+ "shortestRoundTripNano": 70659064,
+ "longestRoundTripNano": 172756949,
+ "averageApexExecutionNano": 39429484,
+ "shortestApexExecutionNano": 8043357,
+ "longestApexExecutionNano": 94929452
+ },
+ {
+ "batchNumber": 2292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161390158,
+ "shortestRoundTripNano": 70158411,
+ "longestRoundTripNano": 201228973,
+ "averageApexExecutionNano": 43945708,
+ "shortestApexExecutionNano": 6097583,
+ "longestApexExecutionNano": 119721129
+ },
+ {
+ "batchNumber": 2293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134904560,
+ "shortestRoundTripNano": 41374944,
+ "longestRoundTripNano": 169969735,
+ "averageApexExecutionNano": 59306546,
+ "shortestApexExecutionNano": 16678574,
+ "longestApexExecutionNano": 113552667
+ },
+ {
+ "batchNumber": 2294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118995550,
+ "shortestRoundTripNano": 54061540,
+ "longestRoundTripNano": 145907659,
+ "averageApexExecutionNano": 49371215,
+ "shortestApexExecutionNano": 10626154,
+ "longestApexExecutionNano": 99937667
+ },
+ {
+ "batchNumber": 2295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156420041,
+ "shortestRoundTripNano": 57648669,
+ "longestRoundTripNano": 199566412,
+ "averageApexExecutionNano": 57194564,
+ "shortestApexExecutionNano": 5826822,
+ "longestApexExecutionNano": 134342113
+ },
+ {
+ "batchNumber": 2296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146924499,
+ "shortestRoundTripNano": 97132865,
+ "longestRoundTripNano": 174966248,
+ "averageApexExecutionNano": 80426576,
+ "shortestApexExecutionNano": 35211749,
+ "longestApexExecutionNano": 125056972
+ },
+ {
+ "batchNumber": 2297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133102415,
+ "shortestRoundTripNano": 54207660,
+ "longestRoundTripNano": 165276106,
+ "averageApexExecutionNano": 50016024,
+ "shortestApexExecutionNano": 6166247,
+ "longestApexExecutionNano": 107637776
+ },
+ {
+ "batchNumber": 2298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166026190,
+ "shortestRoundTripNano": 43388008,
+ "longestRoundTripNano": 198677254,
+ "averageApexExecutionNano": 66486446,
+ "shortestApexExecutionNano": 7702081,
+ "longestApexExecutionNano": 138894866
+ },
+ {
+ "batchNumber": 2299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164675190,
+ "shortestRoundTripNano": 53332226,
+ "longestRoundTripNano": 189462587,
+ "averageApexExecutionNano": 70221592,
+ "shortestApexExecutionNano": 7850748,
+ "longestApexExecutionNano": 136889774
+ },
+ {
+ "batchNumber": 2300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133351560,
+ "shortestRoundTripNano": 52366838,
+ "longestRoundTripNano": 164653002,
+ "averageApexExecutionNano": 61737366,
+ "shortestApexExecutionNano": 10552462,
+ "longestApexExecutionNano": 120771913
+ },
+ {
+ "batchNumber": 2301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135520083,
+ "shortestRoundTripNano": 68692768,
+ "longestRoundTripNano": 162262230,
+ "averageApexExecutionNano": 72231251,
+ "shortestApexExecutionNano": 7842965,
+ "longestApexExecutionNano": 121855830
+ },
+ {
+ "batchNumber": 2302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155834229,
+ "shortestRoundTripNano": 62160447,
+ "longestRoundTripNano": 183493476,
+ "averageApexExecutionNano": 62644101,
+ "shortestApexExecutionNano": 10578676,
+ "longestApexExecutionNano": 112492763
+ },
+ {
+ "batchNumber": 2303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147867253,
+ "shortestRoundTripNano": 41457884,
+ "longestRoundTripNano": 179773812,
+ "averageApexExecutionNano": 72412435,
+ "shortestApexExecutionNano": 5319547,
+ "longestApexExecutionNano": 122919407
+ },
+ {
+ "batchNumber": 2304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170733885,
+ "shortestRoundTripNano": 65736598,
+ "longestRoundTripNano": 206771618,
+ "averageApexExecutionNano": 68901025,
+ "shortestApexExecutionNano": 14591239,
+ "longestApexExecutionNano": 147117441
+ },
+ {
+ "batchNumber": 2305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133045391,
+ "shortestRoundTripNano": 48818394,
+ "longestRoundTripNano": 171863970,
+ "averageApexExecutionNano": 47836599,
+ "shortestApexExecutionNano": 5117741,
+ "longestApexExecutionNano": 108151092
+ },
+ {
+ "batchNumber": 2306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146614029,
+ "shortestRoundTripNano": 76578655,
+ "longestRoundTripNano": 184542083,
+ "averageApexExecutionNano": 35665414,
+ "shortestApexExecutionNano": 7844871,
+ "longestApexExecutionNano": 121094227
+ },
+ {
+ "batchNumber": 2307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125355702,
+ "shortestRoundTripNano": 50947417,
+ "longestRoundTripNano": 152974866,
+ "averageApexExecutionNano": 54468299,
+ "shortestApexExecutionNano": 6314563,
+ "longestApexExecutionNano": 115063322
+ },
+ {
+ "batchNumber": 2308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165440053,
+ "shortestRoundTripNano": 80942351,
+ "longestRoundTripNano": 198195956,
+ "averageApexExecutionNano": 81105804,
+ "shortestApexExecutionNano": 7807547,
+ "longestApexExecutionNano": 152453835
+ },
+ {
+ "batchNumber": 2309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145814643,
+ "shortestRoundTripNano": 73901382,
+ "longestRoundTripNano": 171466465,
+ "averageApexExecutionNano": 45407772,
+ "shortestApexExecutionNano": 10612189,
+ "longestApexExecutionNano": 116588309
+ },
+ {
+ "batchNumber": 2310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131014660,
+ "shortestRoundTripNano": 60652686,
+ "longestRoundTripNano": 165965614,
+ "averageApexExecutionNano": 40924652,
+ "shortestApexExecutionNano": 5660861,
+ "longestApexExecutionNano": 89820844
+ },
+ {
+ "batchNumber": 2311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133278099,
+ "shortestRoundTripNano": 44196519,
+ "longestRoundTripNano": 169282627,
+ "averageApexExecutionNano": 56210246,
+ "shortestApexExecutionNano": 10146134,
+ "longestApexExecutionNano": 110993529
+ },
+ {
+ "batchNumber": 2312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162914249,
+ "shortestRoundTripNano": 55796563,
+ "longestRoundTripNano": 190595202,
+ "averageApexExecutionNano": 70497862,
+ "shortestApexExecutionNano": 8245019,
+ "longestApexExecutionNano": 123239186
+ },
+ {
+ "batchNumber": 2313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134997023,
+ "shortestRoundTripNano": 67056310,
+ "longestRoundTripNano": 166699972,
+ "averageApexExecutionNano": 63037830,
+ "shortestApexExecutionNano": 10196086,
+ "longestApexExecutionNano": 125852517
+ },
+ {
+ "batchNumber": 2314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148869080,
+ "shortestRoundTripNano": 65999829,
+ "longestRoundTripNano": 174397347,
+ "averageApexExecutionNano": 58323842,
+ "shortestApexExecutionNano": 8454258,
+ "longestApexExecutionNano": 120269130
+ },
+ {
+ "batchNumber": 2315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119575501,
+ "shortestRoundTripNano": 63448236,
+ "longestRoundTripNano": 150691311,
+ "averageApexExecutionNano": 51324867,
+ "shortestApexExecutionNano": 6256271,
+ "longestApexExecutionNano": 105743325
+ },
+ {
+ "batchNumber": 2316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157693522,
+ "shortestRoundTripNano": 70397171,
+ "longestRoundTripNano": 184171903,
+ "averageApexExecutionNano": 60110761,
+ "shortestApexExecutionNano": 10815432,
+ "longestApexExecutionNano": 136848943
+ },
+ {
+ "batchNumber": 2317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122164386,
+ "shortestRoundTripNano": 52397424,
+ "longestRoundTripNano": 152659195,
+ "averageApexExecutionNano": 48719647,
+ "shortestApexExecutionNano": 5880377,
+ "longestApexExecutionNano": 111812715
+ },
+ {
+ "batchNumber": 2318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141451288,
+ "shortestRoundTripNano": 57036131,
+ "longestRoundTripNano": 170996457,
+ "averageApexExecutionNano": 53495165,
+ "shortestApexExecutionNano": 7049266,
+ "longestApexExecutionNano": 100891229
+ },
+ {
+ "batchNumber": 2319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131255317,
+ "shortestRoundTripNano": 71849770,
+ "longestRoundTripNano": 150785228,
+ "averageApexExecutionNano": 52310526,
+ "shortestApexExecutionNano": 11935629,
+ "longestApexExecutionNano": 104607970
+ },
+ {
+ "batchNumber": 2320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152747961,
+ "shortestRoundTripNano": 54136548,
+ "longestRoundTripNano": 192572503,
+ "averageApexExecutionNano": 48545882,
+ "shortestApexExecutionNano": 6790685,
+ "longestApexExecutionNano": 114714574
+ },
+ {
+ "batchNumber": 2321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152125806,
+ "shortestRoundTripNano": 72770253,
+ "longestRoundTripNano": 193489707,
+ "averageApexExecutionNano": 66637341,
+ "shortestApexExecutionNano": 7394568,
+ "longestApexExecutionNano": 121555148
+ },
+ {
+ "batchNumber": 2322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135076660,
+ "shortestRoundTripNano": 69229250,
+ "longestRoundTripNano": 164949544,
+ "averageApexExecutionNano": 54420647,
+ "shortestApexExecutionNano": 6907015,
+ "longestApexExecutionNano": 112476351
+ },
+ {
+ "batchNumber": 2323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139509613,
+ "shortestRoundTripNano": 61446683,
+ "longestRoundTripNano": 169747879,
+ "averageApexExecutionNano": 60899054,
+ "shortestApexExecutionNano": 6770880,
+ "longestApexExecutionNano": 128144965
+ },
+ {
+ "batchNumber": 2324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137292924,
+ "shortestRoundTripNano": 42228754,
+ "longestRoundTripNano": 168017500,
+ "averageApexExecutionNano": 59522145,
+ "shortestApexExecutionNano": 9047135,
+ "longestApexExecutionNano": 123156989
+ },
+ {
+ "batchNumber": 2325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142546670,
+ "shortestRoundTripNano": 70520588,
+ "longestRoundTripNano": 176564470,
+ "averageApexExecutionNano": 48136982,
+ "shortestApexExecutionNano": 5880970,
+ "longestApexExecutionNano": 137255422
+ },
+ {
+ "batchNumber": 2326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152248193,
+ "shortestRoundTripNano": 67648700,
+ "longestRoundTripNano": 179643512,
+ "averageApexExecutionNano": 62353312,
+ "shortestApexExecutionNano": 10211686,
+ "longestApexExecutionNano": 135344978
+ },
+ {
+ "batchNumber": 2327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144712195,
+ "shortestRoundTripNano": 70445322,
+ "longestRoundTripNano": 180389471,
+ "averageApexExecutionNano": 64120566,
+ "shortestApexExecutionNano": 5227052,
+ "longestApexExecutionNano": 131747128
+ },
+ {
+ "batchNumber": 2328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152144110,
+ "shortestRoundTripNano": 90818197,
+ "longestRoundTripNano": 184448974,
+ "averageApexExecutionNano": 67291059,
+ "shortestApexExecutionNano": 9281594,
+ "longestApexExecutionNano": 128725430
+ },
+ {
+ "batchNumber": 2329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136097657,
+ "shortestRoundTripNano": 67306443,
+ "longestRoundTripNano": 170939597,
+ "averageApexExecutionNano": 52970234,
+ "shortestApexExecutionNano": 12257928,
+ "longestApexExecutionNano": 113460649
+ },
+ {
+ "batchNumber": 2330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156439928,
+ "shortestRoundTripNano": 71732444,
+ "longestRoundTripNano": 191789554,
+ "averageApexExecutionNano": 70005089,
+ "shortestApexExecutionNano": 7030478,
+ "longestApexExecutionNano": 132579705
+ },
+ {
+ "batchNumber": 2331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129550885,
+ "shortestRoundTripNano": 78739160,
+ "longestRoundTripNano": 152686692,
+ "averageApexExecutionNano": 53107644,
+ "shortestApexExecutionNano": 10796243,
+ "longestApexExecutionNano": 105988571
+ },
+ {
+ "batchNumber": 2332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137544343,
+ "shortestRoundTripNano": 57757344,
+ "longestRoundTripNano": 170015180,
+ "averageApexExecutionNano": 49140842,
+ "shortestApexExecutionNano": 9030057,
+ "longestApexExecutionNano": 126710972
+ },
+ {
+ "batchNumber": 2333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139182165,
+ "shortestRoundTripNano": 73859590,
+ "longestRoundTripNano": 169029521,
+ "averageApexExecutionNano": 54062880,
+ "shortestApexExecutionNano": 6074454,
+ "longestApexExecutionNano": 124305571
+ },
+ {
+ "batchNumber": 2334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142366472,
+ "shortestRoundTripNano": 53151562,
+ "longestRoundTripNano": 174620541,
+ "averageApexExecutionNano": 55965223,
+ "shortestApexExecutionNano": 8375936,
+ "longestApexExecutionNano": 122795409
+ },
+ {
+ "batchNumber": 2335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139247127,
+ "shortestRoundTripNano": 80941650,
+ "longestRoundTripNano": 169733537,
+ "averageApexExecutionNano": 56857739,
+ "shortestApexExecutionNano": 4314596,
+ "longestApexExecutionNano": 117975305
+ },
+ {
+ "batchNumber": 2336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161734308,
+ "shortestRoundTripNano": 81775764,
+ "longestRoundTripNano": 186136412,
+ "averageApexExecutionNano": 61425967,
+ "shortestApexExecutionNano": 7823234,
+ "longestApexExecutionNano": 129524196
+ },
+ {
+ "batchNumber": 2337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170542482,
+ "shortestRoundTripNano": 90026686,
+ "longestRoundTripNano": 201638181,
+ "averageApexExecutionNano": 68510141,
+ "shortestApexExecutionNano": 27631994,
+ "longestApexExecutionNano": 116073042
+ },
+ {
+ "batchNumber": 2338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151566868,
+ "shortestRoundTripNano": 67419482,
+ "longestRoundTripNano": 178902971,
+ "averageApexExecutionNano": 60631700,
+ "shortestApexExecutionNano": 12023384,
+ "longestApexExecutionNano": 114206932
+ },
+ {
+ "batchNumber": 2339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168547204,
+ "shortestRoundTripNano": 68207715,
+ "longestRoundTripNano": 197130490,
+ "averageApexExecutionNano": 70094074,
+ "shortestApexExecutionNano": 7658714,
+ "longestApexExecutionNano": 147746166
+ },
+ {
+ "batchNumber": 2340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152571062,
+ "shortestRoundTripNano": 71159037,
+ "longestRoundTripNano": 186225468,
+ "averageApexExecutionNano": 60126374,
+ "shortestApexExecutionNano": 5235823,
+ "longestApexExecutionNano": 117290632
+ },
+ {
+ "batchNumber": 2341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141335112,
+ "shortestRoundTripNano": 65700765,
+ "longestRoundTripNano": 169524904,
+ "averageApexExecutionNano": 64893581,
+ "shortestApexExecutionNano": 7201771,
+ "longestApexExecutionNano": 131786836
+ },
+ {
+ "batchNumber": 2342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142289401,
+ "shortestRoundTripNano": 69054107,
+ "longestRoundTripNano": 168540343,
+ "averageApexExecutionNano": 57306929,
+ "shortestApexExecutionNano": 9642899,
+ "longestApexExecutionNano": 120647825
+ },
+ {
+ "batchNumber": 2343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127380058,
+ "shortestRoundTripNano": 48671681,
+ "longestRoundTripNano": 161191174,
+ "averageApexExecutionNano": 53535232,
+ "shortestApexExecutionNano": 6214603,
+ "longestApexExecutionNano": 114704603
+ },
+ {
+ "batchNumber": 2344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137465053,
+ "shortestRoundTripNano": 66234530,
+ "longestRoundTripNano": 173057432,
+ "averageApexExecutionNano": 51696199,
+ "shortestApexExecutionNano": 8860259,
+ "longestApexExecutionNano": 110263040
+ },
+ {
+ "batchNumber": 2345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149144192,
+ "shortestRoundTripNano": 72078967,
+ "longestRoundTripNano": 178120729,
+ "averageApexExecutionNano": 50324670,
+ "shortestApexExecutionNano": 11807945,
+ "longestApexExecutionNano": 107065756
+ },
+ {
+ "batchNumber": 2346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144223322,
+ "shortestRoundTripNano": 65823473,
+ "longestRoundTripNano": 169672938,
+ "averageApexExecutionNano": 76079853,
+ "shortestApexExecutionNano": 6297100,
+ "longestApexExecutionNano": 117509206
+ },
+ {
+ "batchNumber": 2347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128436068,
+ "shortestRoundTripNano": 31854718,
+ "longestRoundTripNano": 158183154,
+ "averageApexExecutionNano": 58580345,
+ "shortestApexExecutionNano": 8034380,
+ "longestApexExecutionNano": 114864991
+ },
+ {
+ "batchNumber": 2348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142959112,
+ "shortestRoundTripNano": 60455276,
+ "longestRoundTripNano": 173041721,
+ "averageApexExecutionNano": 65416212,
+ "shortestApexExecutionNano": 12261843,
+ "longestApexExecutionNano": 127404154
+ },
+ {
+ "batchNumber": 2349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143030270,
+ "shortestRoundTripNano": 52940123,
+ "longestRoundTripNano": 172435029,
+ "averageApexExecutionNano": 49779150,
+ "shortestApexExecutionNano": 5923441,
+ "longestApexExecutionNano": 107059472
+ },
+ {
+ "batchNumber": 2350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 206848003,
+ "shortestRoundTripNano": 65634041,
+ "longestRoundTripNano": 229899986,
+ "averageApexExecutionNano": 120956135,
+ "shortestApexExecutionNano": 11839132,
+ "longestApexExecutionNano": 182513724
+ },
+ {
+ "batchNumber": 2351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148348668,
+ "shortestRoundTripNano": 85270151,
+ "longestRoundTripNano": 169622582,
+ "averageApexExecutionNano": 63567887,
+ "shortestApexExecutionNano": 8065298,
+ "longestApexExecutionNano": 121067077
+ },
+ {
+ "batchNumber": 2352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152049321,
+ "shortestRoundTripNano": 66347532,
+ "longestRoundTripNano": 184760862,
+ "averageApexExecutionNano": 55036679,
+ "shortestApexExecutionNano": 5104929,
+ "longestApexExecutionNano": 145010124
+ },
+ {
+ "batchNumber": 2353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131247760,
+ "shortestRoundTripNano": 60979594,
+ "longestRoundTripNano": 160392877,
+ "averageApexExecutionNano": 57639887,
+ "shortestApexExecutionNano": 6212643,
+ "longestApexExecutionNano": 111807452
+ },
+ {
+ "batchNumber": 2354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132840334,
+ "shortestRoundTripNano": 54953790,
+ "longestRoundTripNano": 161255780,
+ "averageApexExecutionNano": 54398006,
+ "shortestApexExecutionNano": 10662286,
+ "longestApexExecutionNano": 116167901
+ },
+ {
+ "batchNumber": 2355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149611408,
+ "shortestRoundTripNano": 54134295,
+ "longestRoundTripNano": 193515317,
+ "averageApexExecutionNano": 60322405,
+ "shortestApexExecutionNano": 10149362,
+ "longestApexExecutionNano": 140919440
+ },
+ {
+ "batchNumber": 2356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156246051,
+ "shortestRoundTripNano": 79086385,
+ "longestRoundTripNano": 184330356,
+ "averageApexExecutionNano": 73722914,
+ "shortestApexExecutionNano": 25964762,
+ "longestApexExecutionNano": 135951840
+ },
+ {
+ "batchNumber": 2357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124791558,
+ "shortestRoundTripNano": 59906073,
+ "longestRoundTripNano": 156073247,
+ "averageApexExecutionNano": 50724897,
+ "shortestApexExecutionNano": 6326759,
+ "longestApexExecutionNano": 110694677
+ },
+ {
+ "batchNumber": 2358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144447577,
+ "shortestRoundTripNano": 90293566,
+ "longestRoundTripNano": 168843172,
+ "averageApexExecutionNano": 69422253,
+ "shortestApexExecutionNano": 5518570,
+ "longestApexExecutionNano": 115694687
+ },
+ {
+ "batchNumber": 2359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143039316,
+ "shortestRoundTripNano": 58287162,
+ "longestRoundTripNano": 174413179,
+ "averageApexExecutionNano": 46832882,
+ "shortestApexExecutionNano": 7791306,
+ "longestApexExecutionNano": 107640882
+ },
+ {
+ "batchNumber": 2360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151947937,
+ "shortestRoundTripNano": 74870326,
+ "longestRoundTripNano": 179420608,
+ "averageApexExecutionNano": 53658939,
+ "shortestApexExecutionNano": 14366681,
+ "longestApexExecutionNano": 102203238
+ },
+ {
+ "batchNumber": 2361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145270028,
+ "shortestRoundTripNano": 44555571,
+ "longestRoundTripNano": 180989538,
+ "averageApexExecutionNano": 68298215,
+ "shortestApexExecutionNano": 14530433,
+ "longestApexExecutionNano": 127906996
+ },
+ {
+ "batchNumber": 2362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128893424,
+ "shortestRoundTripNano": 53609993,
+ "longestRoundTripNano": 152679583,
+ "averageApexExecutionNano": 49997120,
+ "shortestApexExecutionNano": 9528757,
+ "longestApexExecutionNano": 106411574
+ },
+ {
+ "batchNumber": 2363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140534463,
+ "shortestRoundTripNano": 61796283,
+ "longestRoundTripNano": 166923312,
+ "averageApexExecutionNano": 62342699,
+ "shortestApexExecutionNano": 4998581,
+ "longestApexExecutionNano": 120132274
+ },
+ {
+ "batchNumber": 2364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134734563,
+ "shortestRoundTripNano": 58965644,
+ "longestRoundTripNano": 172090313,
+ "averageApexExecutionNano": 54177374,
+ "shortestApexExecutionNano": 7196862,
+ "longestApexExecutionNano": 102879253
+ },
+ {
+ "batchNumber": 2365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133617035,
+ "shortestRoundTripNano": 63208143,
+ "longestRoundTripNano": 177021985,
+ "averageApexExecutionNano": 63125674,
+ "shortestApexExecutionNano": 7014459,
+ "longestApexExecutionNano": 132725519
+ },
+ {
+ "batchNumber": 2366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129395102,
+ "shortestRoundTripNano": 55904650,
+ "longestRoundTripNano": 162444372,
+ "averageApexExecutionNano": 50503626,
+ "shortestApexExecutionNano": 6106892,
+ "longestApexExecutionNano": 101889667
+ },
+ {
+ "batchNumber": 2367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130337683,
+ "shortestRoundTripNano": 53451605,
+ "longestRoundTripNano": 162288896,
+ "averageApexExecutionNano": 43482350,
+ "shortestApexExecutionNano": 7844238,
+ "longestApexExecutionNano": 85971156
+ },
+ {
+ "batchNumber": 2368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35578",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144068459,
+ "shortestRoundTripNano": 65039439,
+ "longestRoundTripNano": 177083732,
+ "averageApexExecutionNano": 70473462,
+ "shortestApexExecutionNano": 9257973,
+ "longestApexExecutionNano": 124479020
+ },
+ {
+ "batchNumber": 2369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140137535,
+ "shortestRoundTripNano": 55610880,
+ "longestRoundTripNano": 163001586,
+ "averageApexExecutionNano": 57041231,
+ "shortestApexExecutionNano": 6316415,
+ "longestApexExecutionNano": 104904215
+ },
+ {
+ "batchNumber": 2370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138847993,
+ "shortestRoundTripNano": 56162932,
+ "longestRoundTripNano": 168278788,
+ "averageApexExecutionNano": 57440690,
+ "shortestApexExecutionNano": 18288074,
+ "longestApexExecutionNano": 129151723
+ },
+ {
+ "batchNumber": 2371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135556644,
+ "shortestRoundTripNano": 64486037,
+ "longestRoundTripNano": 168547910,
+ "averageApexExecutionNano": 61680637,
+ "shortestApexExecutionNano": 7487733,
+ "longestApexExecutionNano": 120426673
+ },
+ {
+ "batchNumber": 2372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148565114,
+ "shortestRoundTripNano": 71688036,
+ "longestRoundTripNano": 181048852,
+ "averageApexExecutionNano": 62351043,
+ "shortestApexExecutionNano": 14205952,
+ "longestApexExecutionNano": 105301415
+ },
+ {
+ "batchNumber": 2373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144533261,
+ "shortestRoundTripNano": 63779709,
+ "longestRoundTripNano": 175385687,
+ "averageApexExecutionNano": 55740415,
+ "shortestApexExecutionNano": 16155210,
+ "longestApexExecutionNano": 122266669
+ },
+ {
+ "batchNumber": 2374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158358892,
+ "shortestRoundTripNano": 36586655,
+ "longestRoundTripNano": 192475068,
+ "averageApexExecutionNano": 60449253,
+ "shortestApexExecutionNano": 6737271,
+ "longestApexExecutionNano": 146414081
+ },
+ {
+ "batchNumber": 2375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163894259,
+ "shortestRoundTripNano": 97535778,
+ "longestRoundTripNano": 187216362,
+ "averageApexExecutionNano": 72883742,
+ "shortestApexExecutionNano": 14749599,
+ "longestApexExecutionNano": 125301719
+ },
+ {
+ "batchNumber": 2376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134458196,
+ "shortestRoundTripNano": 57484403,
+ "longestRoundTripNano": 162475112,
+ "averageApexExecutionNano": 52672079,
+ "shortestApexExecutionNano": 8034638,
+ "longestApexExecutionNano": 98980464
+ },
+ {
+ "batchNumber": 2377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160754160,
+ "shortestRoundTripNano": 88112574,
+ "longestRoundTripNano": 187528886,
+ "averageApexExecutionNano": 69976135,
+ "shortestApexExecutionNano": 13849859,
+ "longestApexExecutionNano": 130082101
+ },
+ {
+ "batchNumber": 2378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134718766,
+ "shortestRoundTripNano": 46374652,
+ "longestRoundTripNano": 168223309,
+ "averageApexExecutionNano": 61998130,
+ "shortestApexExecutionNano": 9634068,
+ "longestApexExecutionNano": 109966753
+ },
+ {
+ "batchNumber": 2379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125429209,
+ "shortestRoundTripNano": 61093568,
+ "longestRoundTripNano": 153658577,
+ "averageApexExecutionNano": 55564733,
+ "shortestApexExecutionNano": 11348341,
+ "longestApexExecutionNano": 110275041
+ },
+ {
+ "batchNumber": 2380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159049779,
+ "shortestRoundTripNano": 56041335,
+ "longestRoundTripNano": 193774994,
+ "averageApexExecutionNano": 67086436,
+ "shortestApexExecutionNano": 7607092,
+ "longestApexExecutionNano": 118335642
+ },
+ {
+ "batchNumber": 2381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148882242,
+ "shortestRoundTripNano": 55912695,
+ "longestRoundTripNano": 175497160,
+ "averageApexExecutionNano": 62664150,
+ "shortestApexExecutionNano": 12559633,
+ "longestApexExecutionNano": 106459944
+ },
+ {
+ "batchNumber": 2382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148528530,
+ "shortestRoundTripNano": 66202187,
+ "longestRoundTripNano": 177458255,
+ "averageApexExecutionNano": 67595722,
+ "shortestApexExecutionNano": 19621719,
+ "longestApexExecutionNano": 116758772
+ },
+ {
+ "batchNumber": 2383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150590732,
+ "shortestRoundTripNano": 81199173,
+ "longestRoundTripNano": 177343519,
+ "averageApexExecutionNano": 59550900,
+ "shortestApexExecutionNano": 8098723,
+ "longestApexExecutionNano": 115189126
+ },
+ {
+ "batchNumber": 2384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141891471,
+ "shortestRoundTripNano": 70072700,
+ "longestRoundTripNano": 164504426,
+ "averageApexExecutionNano": 66298622,
+ "shortestApexExecutionNano": 11023107,
+ "longestApexExecutionNano": 121924306
+ },
+ {
+ "batchNumber": 2385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159819520,
+ "shortestRoundTripNano": 86021807,
+ "longestRoundTripNano": 181817071,
+ "averageApexExecutionNano": 65728334,
+ "shortestApexExecutionNano": 11152920,
+ "longestApexExecutionNano": 122969022
+ },
+ {
+ "batchNumber": 2386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136089724,
+ "shortestRoundTripNano": 54584108,
+ "longestRoundTripNano": 158769887,
+ "averageApexExecutionNano": 48222479,
+ "shortestApexExecutionNano": 5588614,
+ "longestApexExecutionNano": 104877900
+ },
+ {
+ "batchNumber": 2387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168628681,
+ "shortestRoundTripNano": 59861156,
+ "longestRoundTripNano": 197277665,
+ "averageApexExecutionNano": 71325927,
+ "shortestApexExecutionNano": 4894600,
+ "longestApexExecutionNano": 125381327
+ },
+ {
+ "batchNumber": 2388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142227336,
+ "shortestRoundTripNano": 52460782,
+ "longestRoundTripNano": 185170400,
+ "averageApexExecutionNano": 53881800,
+ "shortestApexExecutionNano": 6728792,
+ "longestApexExecutionNano": 105721408
+ },
+ {
+ "batchNumber": 2389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172047198,
+ "shortestRoundTripNano": 93403132,
+ "longestRoundTripNano": 205235440,
+ "averageApexExecutionNano": 91703350,
+ "shortestApexExecutionNano": 10049857,
+ "longestApexExecutionNano": 156926754
+ },
+ {
+ "batchNumber": 2390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134261049,
+ "shortestRoundTripNano": 57503157,
+ "longestRoundTripNano": 166589871,
+ "averageApexExecutionNano": 44221169,
+ "shortestApexExecutionNano": 6039322,
+ "longestApexExecutionNano": 90382427
+ },
+ {
+ "batchNumber": 2391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123318798,
+ "shortestRoundTripNano": 52608902,
+ "longestRoundTripNano": 155981730,
+ "averageApexExecutionNano": 52189077,
+ "shortestApexExecutionNano": 12971442,
+ "longestApexExecutionNano": 98937346
+ },
+ {
+ "batchNumber": 2392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147583518,
+ "shortestRoundTripNano": 71775400,
+ "longestRoundTripNano": 178362873,
+ "averageApexExecutionNano": 48103254,
+ "shortestApexExecutionNano": 7460720,
+ "longestApexExecutionNano": 106563525
+ },
+ {
+ "batchNumber": 2393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135352027,
+ "shortestRoundTripNano": 61401871,
+ "longestRoundTripNano": 169880418,
+ "averageApexExecutionNano": 59917883,
+ "shortestApexExecutionNano": 6156566,
+ "longestApexExecutionNano": 120125429
+ },
+ {
+ "batchNumber": 2394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136337246,
+ "shortestRoundTripNano": 47168323,
+ "longestRoundTripNano": 163849301,
+ "averageApexExecutionNano": 59870897,
+ "shortestApexExecutionNano": 10215316,
+ "longestApexExecutionNano": 108486069
+ },
+ {
+ "batchNumber": 2395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150103053,
+ "shortestRoundTripNano": 66354284,
+ "longestRoundTripNano": 182037283,
+ "averageApexExecutionNano": 57446831,
+ "shortestApexExecutionNano": 9082772,
+ "longestApexExecutionNano": 126546165
+ },
+ {
+ "batchNumber": 2396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137159969,
+ "shortestRoundTripNano": 58646459,
+ "longestRoundTripNano": 172794959,
+ "averageApexExecutionNano": 57203759,
+ "shortestApexExecutionNano": 6483500,
+ "longestApexExecutionNano": 120354149
+ },
+ {
+ "batchNumber": 2397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159489195,
+ "shortestRoundTripNano": 48906680,
+ "longestRoundTripNano": 190356096,
+ "averageApexExecutionNano": 66256089,
+ "shortestApexExecutionNano": 9059673,
+ "longestApexExecutionNano": 127031081
+ },
+ {
+ "batchNumber": 2398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157823685,
+ "shortestRoundTripNano": 74107606,
+ "longestRoundTripNano": 187504190,
+ "averageApexExecutionNano": 56654125,
+ "shortestApexExecutionNano": 8828816,
+ "longestApexExecutionNano": 123588004
+ },
+ {
+ "batchNumber": 2399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149715648,
+ "shortestRoundTripNano": 68542896,
+ "longestRoundTripNano": 182477111,
+ "averageApexExecutionNano": 52782251,
+ "shortestApexExecutionNano": 6456828,
+ "longestApexExecutionNano": 121390125
+ },
+ {
+ "batchNumber": 2400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191404466,
+ "shortestRoundTripNano": 68383135,
+ "longestRoundTripNano": 231389983,
+ "averageApexExecutionNano": 81811704,
+ "shortestApexExecutionNano": 6416640,
+ "longestApexExecutionNano": 175433003
+ },
+ {
+ "batchNumber": 2401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167791593,
+ "shortestRoundTripNano": 65282136,
+ "longestRoundTripNano": 198884600,
+ "averageApexExecutionNano": 68052035,
+ "shortestApexExecutionNano": 11910039,
+ "longestApexExecutionNano": 149873509
+ },
+ {
+ "batchNumber": 2402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126125470,
+ "shortestRoundTripNano": 67952419,
+ "longestRoundTripNano": 166865535,
+ "averageApexExecutionNano": 45866080,
+ "shortestApexExecutionNano": 5384510,
+ "longestApexExecutionNano": 108583868
+ },
+ {
+ "batchNumber": 2403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141987543,
+ "shortestRoundTripNano": 54501062,
+ "longestRoundTripNano": 169329841,
+ "averageApexExecutionNano": 56023004,
+ "shortestApexExecutionNano": 6173885,
+ "longestApexExecutionNano": 107940990
+ },
+ {
+ "batchNumber": 2404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138229124,
+ "shortestRoundTripNano": 74478924,
+ "longestRoundTripNano": 164095074,
+ "averageApexExecutionNano": 68574813,
+ "shortestApexExecutionNano": 17944836,
+ "longestApexExecutionNano": 114720863
+ },
+ {
+ "batchNumber": 2405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 260450164,
+ "shortestRoundTripNano": 53466771,
+ "longestRoundTripNano": 296821372,
+ "averageApexExecutionNano": 97430999,
+ "shortestApexExecutionNano": 6232277,
+ "longestApexExecutionNano": 241549133
+ },
+ {
+ "batchNumber": 2406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152966223,
+ "shortestRoundTripNano": 95598240,
+ "longestRoundTripNano": 175535001,
+ "averageApexExecutionNano": 69336024,
+ "shortestApexExecutionNano": 17444128,
+ "longestApexExecutionNano": 132600941
+ },
+ {
+ "batchNumber": 2407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137022000,
+ "shortestRoundTripNano": 59176846,
+ "longestRoundTripNano": 175955932,
+ "averageApexExecutionNano": 59701888,
+ "shortestApexExecutionNano": 9231129,
+ "longestApexExecutionNano": 115117672
+ },
+ {
+ "batchNumber": 2408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157084467,
+ "shortestRoundTripNano": 65765437,
+ "longestRoundTripNano": 183355140,
+ "averageApexExecutionNano": 86188113,
+ "shortestApexExecutionNano": 7121947,
+ "longestApexExecutionNano": 130907907
+ },
+ {
+ "batchNumber": 2409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141969656,
+ "shortestRoundTripNano": 74224562,
+ "longestRoundTripNano": 170243876,
+ "averageApexExecutionNano": 51876151,
+ "shortestApexExecutionNano": 7362508,
+ "longestApexExecutionNano": 121863662
+ },
+ {
+ "batchNumber": 2410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156666636,
+ "shortestRoundTripNano": 67844744,
+ "longestRoundTripNano": 184039865,
+ "averageApexExecutionNano": 57630060,
+ "shortestApexExecutionNano": 16532626,
+ "longestApexExecutionNano": 117029753
+ },
+ {
+ "batchNumber": 2411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160648972,
+ "shortestRoundTripNano": 70277403,
+ "longestRoundTripNano": 199404002,
+ "averageApexExecutionNano": 81167612,
+ "shortestApexExecutionNano": 10849776,
+ "longestApexExecutionNano": 156385469
+ },
+ {
+ "batchNumber": 2412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155452710,
+ "shortestRoundTripNano": 57003373,
+ "longestRoundTripNano": 193532044,
+ "averageApexExecutionNano": 59878210,
+ "shortestApexExecutionNano": 14420269,
+ "longestApexExecutionNano": 133766628
+ },
+ {
+ "batchNumber": 2413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154588699,
+ "shortestRoundTripNano": 91746912,
+ "longestRoundTripNano": 185302654,
+ "averageApexExecutionNano": 65432994,
+ "shortestApexExecutionNano": 14392102,
+ "longestApexExecutionNano": 127710468
+ },
+ {
+ "batchNumber": 2414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128612068,
+ "shortestRoundTripNano": 56579843,
+ "longestRoundTripNano": 167156600,
+ "averageApexExecutionNano": 48219627,
+ "shortestApexExecutionNano": 6127042,
+ "longestApexExecutionNano": 128430400
+ },
+ {
+ "batchNumber": 2415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129106771,
+ "shortestRoundTripNano": 66868041,
+ "longestRoundTripNano": 157405039,
+ "averageApexExecutionNano": 57112202,
+ "shortestApexExecutionNano": 9066027,
+ "longestApexExecutionNano": 107852128
+ },
+ {
+ "batchNumber": 2416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151460938,
+ "shortestRoundTripNano": 63556945,
+ "longestRoundTripNano": 192209141,
+ "averageApexExecutionNano": 52613247,
+ "shortestApexExecutionNano": 9007656,
+ "longestApexExecutionNano": 122168468
+ },
+ {
+ "batchNumber": 2417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142652402,
+ "shortestRoundTripNano": 66957127,
+ "longestRoundTripNano": 185668154,
+ "averageApexExecutionNano": 72369746,
+ "shortestApexExecutionNano": 12884284,
+ "longestApexExecutionNano": 107035870
+ },
+ {
+ "batchNumber": 2418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147860044,
+ "shortestRoundTripNano": 80474888,
+ "longestRoundTripNano": 175668534,
+ "averageApexExecutionNano": 63234318,
+ "shortestApexExecutionNano": 9869640,
+ "longestApexExecutionNano": 120103100
+ },
+ {
+ "batchNumber": 2419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150259123,
+ "shortestRoundTripNano": 68072509,
+ "longestRoundTripNano": 201755211,
+ "averageApexExecutionNano": 59946520,
+ "shortestApexExecutionNano": 5387116,
+ "longestApexExecutionNano": 120661488
+ },
+ {
+ "batchNumber": 2420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142405913,
+ "shortestRoundTripNano": 74863920,
+ "longestRoundTripNano": 170698652,
+ "averageApexExecutionNano": 66591563,
+ "shortestApexExecutionNano": 6259902,
+ "longestApexExecutionNano": 122962698
+ },
+ {
+ "batchNumber": 2421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145742504,
+ "shortestRoundTripNano": 67499176,
+ "longestRoundTripNano": 180367900,
+ "averageApexExecutionNano": 58330431,
+ "shortestApexExecutionNano": 10527168,
+ "longestApexExecutionNano": 118047436
+ },
+ {
+ "batchNumber": 2422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148192918,
+ "shortestRoundTripNano": 85478193,
+ "longestRoundTripNano": 182279198,
+ "averageApexExecutionNano": 72640110,
+ "shortestApexExecutionNano": 7505379,
+ "longestApexExecutionNano": 137236053
+ },
+ {
+ "batchNumber": 2423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150158680,
+ "shortestRoundTripNano": 79381316,
+ "longestRoundTripNano": 176269007,
+ "averageApexExecutionNano": 59669689,
+ "shortestApexExecutionNano": 9214654,
+ "longestApexExecutionNano": 129693055
+ },
+ {
+ "batchNumber": 2424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181318414,
+ "shortestRoundTripNano": 91063921,
+ "longestRoundTripNano": 209254384,
+ "averageApexExecutionNano": 78625235,
+ "shortestApexExecutionNano": 9995447,
+ "longestApexExecutionNano": 136724483
+ },
+ {
+ "batchNumber": 2425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137155298,
+ "shortestRoundTripNano": 61645880,
+ "longestRoundTripNano": 163546283,
+ "averageApexExecutionNano": 43686713,
+ "shortestApexExecutionNano": 9506773,
+ "longestApexExecutionNano": 97586896
+ },
+ {
+ "batchNumber": 2426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141016659,
+ "shortestRoundTripNano": 55881518,
+ "longestRoundTripNano": 194665138,
+ "averageApexExecutionNano": 45614811,
+ "shortestApexExecutionNano": 6982535,
+ "longestApexExecutionNano": 141630272
+ },
+ {
+ "batchNumber": 2427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141863975,
+ "shortestRoundTripNano": 74197576,
+ "longestRoundTripNano": 168159052,
+ "averageApexExecutionNano": 63726612,
+ "shortestApexExecutionNano": 19189690,
+ "longestApexExecutionNano": 115292614
+ },
+ {
+ "batchNumber": 2428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159201104,
+ "shortestRoundTripNano": 50732910,
+ "longestRoundTripNano": 199860059,
+ "averageApexExecutionNano": 74430462,
+ "shortestApexExecutionNano": 5551162,
+ "longestApexExecutionNano": 150707109
+ },
+ {
+ "batchNumber": 2429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163010649,
+ "shortestRoundTripNano": 27895090,
+ "longestRoundTripNano": 191515047,
+ "averageApexExecutionNano": 66100262,
+ "shortestApexExecutionNano": 6800117,
+ "longestApexExecutionNano": 135927455
+ },
+ {
+ "batchNumber": 2430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171027839,
+ "shortestRoundTripNano": 59546208,
+ "longestRoundTripNano": 210424060,
+ "averageApexExecutionNano": 87579597,
+ "shortestApexExecutionNano": 9689088,
+ "longestApexExecutionNano": 161138537
+ },
+ {
+ "batchNumber": 2431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158570146,
+ "shortestRoundTripNano": 85348295,
+ "longestRoundTripNano": 188019776,
+ "averageApexExecutionNano": 70547888,
+ "shortestApexExecutionNano": 9641387,
+ "longestApexExecutionNano": 132860277
+ },
+ {
+ "batchNumber": 2432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157089191,
+ "shortestRoundTripNano": 79088506,
+ "longestRoundTripNano": 203276077,
+ "averageApexExecutionNano": 83316900,
+ "shortestApexExecutionNano": 20888956,
+ "longestApexExecutionNano": 117983613
+ },
+ {
+ "batchNumber": 2433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169501556,
+ "shortestRoundTripNano": 72323297,
+ "longestRoundTripNano": 200499469,
+ "averageApexExecutionNano": 48772493,
+ "shortestApexExecutionNano": 8659601,
+ "longestApexExecutionNano": 115501818
+ },
+ {
+ "batchNumber": 2434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171912578,
+ "shortestRoundTripNano": 68038141,
+ "longestRoundTripNano": 200978888,
+ "averageApexExecutionNano": 64282958,
+ "shortestApexExecutionNano": 9238376,
+ "longestApexExecutionNano": 147993990
+ },
+ {
+ "batchNumber": 2435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152451813,
+ "shortestRoundTripNano": 79673781,
+ "longestRoundTripNano": 178276850,
+ "averageApexExecutionNano": 58322164,
+ "shortestApexExecutionNano": 6876369,
+ "longestApexExecutionNano": 123689167
+ },
+ {
+ "batchNumber": 2436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153230232,
+ "shortestRoundTripNano": 56850920,
+ "longestRoundTripNano": 190634868,
+ "averageApexExecutionNano": 52278150,
+ "shortestApexExecutionNano": 6316212,
+ "longestApexExecutionNano": 104365017
+ },
+ {
+ "batchNumber": 2437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150414603,
+ "shortestRoundTripNano": 41908031,
+ "longestRoundTripNano": 182047983,
+ "averageApexExecutionNano": 67298328,
+ "shortestApexExecutionNano": 10031861,
+ "longestApexExecutionNano": 134008765
+ },
+ {
+ "batchNumber": 2438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177965092,
+ "shortestRoundTripNano": 73259963,
+ "longestRoundTripNano": 233207866,
+ "averageApexExecutionNano": 83495763,
+ "shortestApexExecutionNano": 12962400,
+ "longestApexExecutionNano": 156308710
+ },
+ {
+ "batchNumber": 2439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156335606,
+ "shortestRoundTripNano": 74920884,
+ "longestRoundTripNano": 184534419,
+ "averageApexExecutionNano": 63499816,
+ "shortestApexExecutionNano": 6195886,
+ "longestApexExecutionNano": 131584169
+ },
+ {
+ "batchNumber": 2440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147200617,
+ "shortestRoundTripNano": 58864342,
+ "longestRoundTripNano": 183719061,
+ "averageApexExecutionNano": 51965567,
+ "shortestApexExecutionNano": 7715629,
+ "longestApexExecutionNano": 135136835
+ },
+ {
+ "batchNumber": 2441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146021170,
+ "shortestRoundTripNano": 74594817,
+ "longestRoundTripNano": 173644689,
+ "averageApexExecutionNano": 70468334,
+ "shortestApexExecutionNano": 11006041,
+ "longestApexExecutionNano": 128539117
+ },
+ {
+ "batchNumber": 2442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130404506,
+ "shortestRoundTripNano": 55529256,
+ "longestRoundTripNano": 166128336,
+ "averageApexExecutionNano": 55149652,
+ "shortestApexExecutionNano": 8920951,
+ "longestApexExecutionNano": 127434360
+ },
+ {
+ "batchNumber": 2443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137706241,
+ "shortestRoundTripNano": 57578684,
+ "longestRoundTripNano": 166392066,
+ "averageApexExecutionNano": 66834081,
+ "shortestApexExecutionNano": 31402088,
+ "longestApexExecutionNano": 112865301
+ },
+ {
+ "batchNumber": 2444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144076496,
+ "shortestRoundTripNano": 48072355,
+ "longestRoundTripNano": 182295410,
+ "averageApexExecutionNano": 62775110,
+ "shortestApexExecutionNano": 6816741,
+ "longestApexExecutionNano": 124542784
+ },
+ {
+ "batchNumber": 2445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151102698,
+ "shortestRoundTripNano": 74762013,
+ "longestRoundTripNano": 177137810,
+ "averageApexExecutionNano": 62047325,
+ "shortestApexExecutionNano": 7045454,
+ "longestApexExecutionNano": 136204976
+ },
+ {
+ "batchNumber": 2446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134519407,
+ "shortestRoundTripNano": 82866259,
+ "longestRoundTripNano": 157235569,
+ "averageApexExecutionNano": 57278860,
+ "shortestApexExecutionNano": 6922683,
+ "longestApexExecutionNano": 106756585
+ },
+ {
+ "batchNumber": 2447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144676209,
+ "shortestRoundTripNano": 64810373,
+ "longestRoundTripNano": 185058908,
+ "averageApexExecutionNano": 64906178,
+ "shortestApexExecutionNano": 6701396,
+ "longestApexExecutionNano": 127949742
+ },
+ {
+ "batchNumber": 2448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148785220,
+ "shortestRoundTripNano": 75114720,
+ "longestRoundTripNano": 176217742,
+ "averageApexExecutionNano": 64979487,
+ "shortestApexExecutionNano": 10784867,
+ "longestApexExecutionNano": 125677262
+ },
+ {
+ "batchNumber": 2449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138836052,
+ "shortestRoundTripNano": 59579139,
+ "longestRoundTripNano": 171203380,
+ "averageApexExecutionNano": 53815329,
+ "shortestApexExecutionNano": 5003864,
+ "longestApexExecutionNano": 129715910
+ },
+ {
+ "batchNumber": 2450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156512380,
+ "shortestRoundTripNano": 55150562,
+ "longestRoundTripNano": 190246382,
+ "averageApexExecutionNano": 52060135,
+ "shortestApexExecutionNano": 5938817,
+ "longestApexExecutionNano": 111741381
+ },
+ {
+ "batchNumber": 2451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35612",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126460864,
+ "shortestRoundTripNano": 44867649,
+ "longestRoundTripNano": 152338963,
+ "averageApexExecutionNano": 48750824,
+ "shortestApexExecutionNano": 5342130,
+ "longestApexExecutionNano": 101433934
+ },
+ {
+ "batchNumber": 2452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166873982,
+ "shortestRoundTripNano": 72111087,
+ "longestRoundTripNano": 198862042,
+ "averageApexExecutionNano": 70901397,
+ "shortestApexExecutionNano": 14877213,
+ "longestApexExecutionNano": 146432800
+ },
+ {
+ "batchNumber": 2453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131101468,
+ "shortestRoundTripNano": 51429614,
+ "longestRoundTripNano": 158497973,
+ "averageApexExecutionNano": 54021764,
+ "shortestApexExecutionNano": 7750787,
+ "longestApexExecutionNano": 103141472
+ },
+ {
+ "batchNumber": 2454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129056996,
+ "shortestRoundTripNano": 43996278,
+ "longestRoundTripNano": 161849954,
+ "averageApexExecutionNano": 54325465,
+ "shortestApexExecutionNano": 7864321,
+ "longestApexExecutionNano": 104676983
+ },
+ {
+ "batchNumber": 2455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156826197,
+ "shortestRoundTripNano": 68581429,
+ "longestRoundTripNano": 199285747,
+ "averageApexExecutionNano": 60495109,
+ "shortestApexExecutionNano": 11534145,
+ "longestApexExecutionNano": 125335364
+ },
+ {
+ "batchNumber": 2456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177893373,
+ "shortestRoundTripNano": 73887011,
+ "longestRoundTripNano": 211990728,
+ "averageApexExecutionNano": 95091787,
+ "shortestApexExecutionNano": 10752601,
+ "longestApexExecutionNano": 164797229
+ },
+ {
+ "batchNumber": 2457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159341154,
+ "shortestRoundTripNano": 96098129,
+ "longestRoundTripNano": 191305715,
+ "averageApexExecutionNano": 63906094,
+ "shortestApexExecutionNano": 10036187,
+ "longestApexExecutionNano": 141781623
+ },
+ {
+ "batchNumber": 2458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145205722,
+ "shortestRoundTripNano": 69098631,
+ "longestRoundTripNano": 181752079,
+ "averageApexExecutionNano": 75868010,
+ "shortestApexExecutionNano": 13751512,
+ "longestApexExecutionNano": 140778064
+ },
+ {
+ "batchNumber": 2459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149200028,
+ "shortestRoundTripNano": 61221604,
+ "longestRoundTripNano": 181137121,
+ "averageApexExecutionNano": 55455533,
+ "shortestApexExecutionNano": 8058845,
+ "longestApexExecutionNano": 119011299
+ },
+ {
+ "batchNumber": 2460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145700825,
+ "shortestRoundTripNano": 59141755,
+ "longestRoundTripNano": 178174678,
+ "averageApexExecutionNano": 52557569,
+ "shortestApexExecutionNano": 4891827,
+ "longestApexExecutionNano": 133193139
+ },
+ {
+ "batchNumber": 2461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150221099,
+ "shortestRoundTripNano": 71521022,
+ "longestRoundTripNano": 185317837,
+ "averageApexExecutionNano": 66104422,
+ "shortestApexExecutionNano": 6525385,
+ "longestApexExecutionNano": 131666937
+ },
+ {
+ "batchNumber": 2462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151006622,
+ "shortestRoundTripNano": 53547247,
+ "longestRoundTripNano": 186470166,
+ "averageApexExecutionNano": 62719962,
+ "shortestApexExecutionNano": 6107329,
+ "longestApexExecutionNano": 147215266
+ },
+ {
+ "batchNumber": 2463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137448285,
+ "shortestRoundTripNano": 55379755,
+ "longestRoundTripNano": 167375546,
+ "averageApexExecutionNano": 60052106,
+ "shortestApexExecutionNano": 10294959,
+ "longestApexExecutionNano": 117353098
+ },
+ {
+ "batchNumber": 2464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136769552,
+ "shortestRoundTripNano": 67109689,
+ "longestRoundTripNano": 164519931,
+ "averageApexExecutionNano": 35737346,
+ "shortestApexExecutionNano": 6698131,
+ "longestApexExecutionNano": 106592400
+ },
+ {
+ "batchNumber": 2465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150375889,
+ "shortestRoundTripNano": 42070708,
+ "longestRoundTripNano": 201248192,
+ "averageApexExecutionNano": 52298882,
+ "shortestApexExecutionNano": 6474288,
+ "longestApexExecutionNano": 99395131
+ },
+ {
+ "batchNumber": 2466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164602468,
+ "shortestRoundTripNano": 47919135,
+ "longestRoundTripNano": 201097736,
+ "averageApexExecutionNano": 81164757,
+ "shortestApexExecutionNano": 12624657,
+ "longestApexExecutionNano": 153731185
+ },
+ {
+ "batchNumber": 2467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126894207,
+ "shortestRoundTripNano": 62643552,
+ "longestRoundTripNano": 162827612,
+ "averageApexExecutionNano": 47421699,
+ "shortestApexExecutionNano": 5995516,
+ "longestApexExecutionNano": 126353137
+ },
+ {
+ "batchNumber": 2468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151402817,
+ "shortestRoundTripNano": 60601421,
+ "longestRoundTripNano": 179344111,
+ "averageApexExecutionNano": 58664011,
+ "shortestApexExecutionNano": 8590891,
+ "longestApexExecutionNano": 115541761
+ },
+ {
+ "batchNumber": 2469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154908095,
+ "shortestRoundTripNano": 41127566,
+ "longestRoundTripNano": 192414278,
+ "averageApexExecutionNano": 67730036,
+ "shortestApexExecutionNano": 10059975,
+ "longestApexExecutionNano": 122569643
+ },
+ {
+ "batchNumber": 2470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158622505,
+ "shortestRoundTripNano": 89842086,
+ "longestRoundTripNano": 180484826,
+ "averageApexExecutionNano": 63854541,
+ "shortestApexExecutionNano": 7035771,
+ "longestApexExecutionNano": 119944110
+ },
+ {
+ "batchNumber": 2471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148075588,
+ "shortestRoundTripNano": 61566686,
+ "longestRoundTripNano": 183295609,
+ "averageApexExecutionNano": 45373091,
+ "shortestApexExecutionNano": 7054531,
+ "longestApexExecutionNano": 117551203
+ },
+ {
+ "batchNumber": 2472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143307160,
+ "shortestRoundTripNano": 74084352,
+ "longestRoundTripNano": 173725292,
+ "averageApexExecutionNano": 74078333,
+ "shortestApexExecutionNano": 8262977,
+ "longestApexExecutionNano": 130794262
+ },
+ {
+ "batchNumber": 2473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170243787,
+ "shortestRoundTripNano": 64706203,
+ "longestRoundTripNano": 207735219,
+ "averageApexExecutionNano": 77746462,
+ "shortestApexExecutionNano": 5272266,
+ "longestApexExecutionNano": 145320534
+ },
+ {
+ "batchNumber": 2474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157896835,
+ "shortestRoundTripNano": 58906343,
+ "longestRoundTripNano": 191713566,
+ "averageApexExecutionNano": 65120828,
+ "shortestApexExecutionNano": 7541542,
+ "longestApexExecutionNano": 147671369
+ },
+ {
+ "batchNumber": 2475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144036170,
+ "shortestRoundTripNano": 54271859,
+ "longestRoundTripNano": 178561296,
+ "averageApexExecutionNano": 60653284,
+ "shortestApexExecutionNano": 5915843,
+ "longestApexExecutionNano": 138033875
+ },
+ {
+ "batchNumber": 2476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144629951,
+ "shortestRoundTripNano": 38841485,
+ "longestRoundTripNano": 172347968,
+ "averageApexExecutionNano": 55518616,
+ "shortestApexExecutionNano": 8177077,
+ "longestApexExecutionNano": 112319359
+ },
+ {
+ "batchNumber": 2477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153643719,
+ "shortestRoundTripNano": 61406644,
+ "longestRoundTripNano": 184747961,
+ "averageApexExecutionNano": 66078107,
+ "shortestApexExecutionNano": 8666900,
+ "longestApexExecutionNano": 118039010
+ },
+ {
+ "batchNumber": 2478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154042027,
+ "shortestRoundTripNano": 51358632,
+ "longestRoundTripNano": 178083438,
+ "averageApexExecutionNano": 70305342,
+ "shortestApexExecutionNano": 5984428,
+ "longestApexExecutionNano": 132452200
+ },
+ {
+ "batchNumber": 2479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161309806,
+ "shortestRoundTripNano": 79585481,
+ "longestRoundTripNano": 190802155,
+ "averageApexExecutionNano": 74946944,
+ "shortestApexExecutionNano": 13545258,
+ "longestApexExecutionNano": 121285102
+ },
+ {
+ "batchNumber": 2480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144704903,
+ "shortestRoundTripNano": 37594733,
+ "longestRoundTripNano": 175981049,
+ "averageApexExecutionNano": 53781782,
+ "shortestApexExecutionNano": 6904257,
+ "longestApexExecutionNano": 122061624
+ },
+ {
+ "batchNumber": 2481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167506082,
+ "shortestRoundTripNano": 72231073,
+ "longestRoundTripNano": 196529588,
+ "averageApexExecutionNano": 64635531,
+ "shortestApexExecutionNano": 9202415,
+ "longestApexExecutionNano": 141941184
+ },
+ {
+ "batchNumber": 2482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158055927,
+ "shortestRoundTripNano": 33155512,
+ "longestRoundTripNano": 190169499,
+ "averageApexExecutionNano": 69105557,
+ "shortestApexExecutionNano": 10066313,
+ "longestApexExecutionNano": 129539523
+ },
+ {
+ "batchNumber": 2483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154651784,
+ "shortestRoundTripNano": 56582644,
+ "longestRoundTripNano": 186400025,
+ "averageApexExecutionNano": 60819676,
+ "shortestApexExecutionNano": 8343439,
+ "longestApexExecutionNano": 133155545
+ },
+ {
+ "batchNumber": 2484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144829358,
+ "shortestRoundTripNano": 80747089,
+ "longestRoundTripNano": 178516303,
+ "averageApexExecutionNano": 58869374,
+ "shortestApexExecutionNano": 8057387,
+ "longestApexExecutionNano": 131284617
+ },
+ {
+ "batchNumber": 2485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150874408,
+ "shortestRoundTripNano": 63504266,
+ "longestRoundTripNano": 186740280,
+ "averageApexExecutionNano": 54755431,
+ "shortestApexExecutionNano": 7544119,
+ "longestApexExecutionNano": 122315011
+ },
+ {
+ "batchNumber": 2486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144211897,
+ "shortestRoundTripNano": 42441949,
+ "longestRoundTripNano": 170706243,
+ "averageApexExecutionNano": 60695983,
+ "shortestApexExecutionNano": 6182350,
+ "longestApexExecutionNano": 122622209
+ },
+ {
+ "batchNumber": 2487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165178389,
+ "shortestRoundTripNano": 51974117,
+ "longestRoundTripNano": 195250583,
+ "averageApexExecutionNano": 58991602,
+ "shortestApexExecutionNano": 10787803,
+ "longestApexExecutionNano": 135757792
+ },
+ {
+ "batchNumber": 2488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166343620,
+ "shortestRoundTripNano": 88607155,
+ "longestRoundTripNano": 190746470,
+ "averageApexExecutionNano": 87261535,
+ "shortestApexExecutionNano": 20937918,
+ "longestApexExecutionNano": 148117997
+ },
+ {
+ "batchNumber": 2489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148130560,
+ "shortestRoundTripNano": 61221176,
+ "longestRoundTripNano": 181787682,
+ "averageApexExecutionNano": 69896692,
+ "shortestApexExecutionNano": 25051972,
+ "longestApexExecutionNano": 113221892
+ },
+ {
+ "batchNumber": 2490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165520417,
+ "shortestRoundTripNano": 67985379,
+ "longestRoundTripNano": 196546819,
+ "averageApexExecutionNano": 68363414,
+ "shortestApexExecutionNano": 7761780,
+ "longestApexExecutionNano": 145885835
+ },
+ {
+ "batchNumber": 2491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139345205,
+ "shortestRoundTripNano": 60141236,
+ "longestRoundTripNano": 168088294,
+ "averageApexExecutionNano": 49198685,
+ "shortestApexExecutionNano": 8597406,
+ "longestApexExecutionNano": 114290470
+ },
+ {
+ "batchNumber": 2492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160917522,
+ "shortestRoundTripNano": 71165168,
+ "longestRoundTripNano": 202530538,
+ "averageApexExecutionNano": 67093698,
+ "shortestApexExecutionNano": 5944205,
+ "longestApexExecutionNano": 134709830
+ },
+ {
+ "batchNumber": 2493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145263726,
+ "shortestRoundTripNano": 85089912,
+ "longestRoundTripNano": 178179222,
+ "averageApexExecutionNano": 70073699,
+ "shortestApexExecutionNano": 6173924,
+ "longestApexExecutionNano": 116611530
+ },
+ {
+ "batchNumber": 2494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147769580,
+ "shortestRoundTripNano": 70928320,
+ "longestRoundTripNano": 178412465,
+ "averageApexExecutionNano": 60298831,
+ "shortestApexExecutionNano": 7800133,
+ "longestApexExecutionNano": 140454457
+ },
+ {
+ "batchNumber": 2495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155070655,
+ "shortestRoundTripNano": 69224685,
+ "longestRoundTripNano": 190860700,
+ "averageApexExecutionNano": 64818941,
+ "shortestApexExecutionNano": 9563404,
+ "longestApexExecutionNano": 148286477
+ },
+ {
+ "batchNumber": 2496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35630",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140044512,
+ "shortestRoundTripNano": 47369345,
+ "longestRoundTripNano": 173625329,
+ "averageApexExecutionNano": 46793970,
+ "shortestApexExecutionNano": 11365980,
+ "longestApexExecutionNano": 95464805
+ },
+ {
+ "batchNumber": 2497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35630",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174004166,
+ "shortestRoundTripNano": 56122636,
+ "longestRoundTripNano": 203042647,
+ "averageApexExecutionNano": 83173573,
+ "shortestApexExecutionNano": 11738927,
+ "longestApexExecutionNano": 150878824
+ },
+ {
+ "batchNumber": 2498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35630",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159531883,
+ "shortestRoundTripNano": 59340211,
+ "longestRoundTripNano": 196280084,
+ "averageApexExecutionNano": 58333570,
+ "shortestApexExecutionNano": 6689587,
+ "longestApexExecutionNano": 128992335
+ },
+ {
+ "batchNumber": 2499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164281805,
+ "shortestRoundTripNano": 77370238,
+ "longestRoundTripNano": 192826583,
+ "averageApexExecutionNano": 75600945,
+ "shortestApexExecutionNano": 10510024,
+ "longestApexExecutionNano": 149443472
+ },
+ {
+ "batchNumber": 2500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 207084345,
+ "shortestRoundTripNano": 32239270,
+ "longestRoundTripNano": 244213638,
+ "averageApexExecutionNano": 81986862,
+ "shortestApexExecutionNano": 7462975,
+ "longestApexExecutionNano": 194180817
+ },
+ {
+ "batchNumber": 2501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151458452,
+ "shortestRoundTripNano": 66958338,
+ "longestRoundTripNano": 186943314,
+ "averageApexExecutionNano": 58326588,
+ "shortestApexExecutionNano": 8900711,
+ "longestApexExecutionNano": 105732634
+ },
+ {
+ "batchNumber": 2502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153209542,
+ "shortestRoundTripNano": 62765677,
+ "longestRoundTripNano": 186143412,
+ "averageApexExecutionNano": 65725605,
+ "shortestApexExecutionNano": 11992952,
+ "longestApexExecutionNano": 145086759
+ },
+ {
+ "batchNumber": 2503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161300060,
+ "shortestRoundTripNano": 93289082,
+ "longestRoundTripNano": 195811817,
+ "averageApexExecutionNano": 63962374,
+ "shortestApexExecutionNano": 11968882,
+ "longestApexExecutionNano": 124907042
+ },
+ {
+ "batchNumber": 2504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159181006,
+ "shortestRoundTripNano": 67973685,
+ "longestRoundTripNano": 204424707,
+ "averageApexExecutionNano": 85631173,
+ "shortestApexExecutionNano": 13662770,
+ "longestApexExecutionNano": 135691915
+ },
+ {
+ "batchNumber": 2505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132811822,
+ "shortestRoundTripNano": 47585843,
+ "longestRoundTripNano": 166265728,
+ "averageApexExecutionNano": 48156598,
+ "shortestApexExecutionNano": 7100722,
+ "longestApexExecutionNano": 119711356
+ },
+ {
+ "batchNumber": 2506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149323451,
+ "shortestRoundTripNano": 49805916,
+ "longestRoundTripNano": 191190751,
+ "averageApexExecutionNano": 55217156,
+ "shortestApexExecutionNano": 7695795,
+ "longestApexExecutionNano": 128195653
+ },
+ {
+ "batchNumber": 2507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151843762,
+ "shortestRoundTripNano": 78866326,
+ "longestRoundTripNano": 179775932,
+ "averageApexExecutionNano": 56945967,
+ "shortestApexExecutionNano": 7507348,
+ "longestApexExecutionNano": 139493430
+ },
+ {
+ "batchNumber": 2508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150987670,
+ "shortestRoundTripNano": 53935331,
+ "longestRoundTripNano": 184869835,
+ "averageApexExecutionNano": 58990430,
+ "shortestApexExecutionNano": 6689208,
+ "longestApexExecutionNano": 129157714
+ },
+ {
+ "batchNumber": 2509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124702763,
+ "shortestRoundTripNano": 49448202,
+ "longestRoundTripNano": 150981930,
+ "averageApexExecutionNano": 54395577,
+ "shortestApexExecutionNano": 8521209,
+ "longestApexExecutionNano": 106749317
+ },
+ {
+ "batchNumber": 2510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136801189,
+ "shortestRoundTripNano": 73123295,
+ "longestRoundTripNano": 165634589,
+ "averageApexExecutionNano": 48710473,
+ "shortestApexExecutionNano": 6080041,
+ "longestApexExecutionNano": 103267096
+ },
+ {
+ "batchNumber": 2511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131987004,
+ "shortestRoundTripNano": 77304276,
+ "longestRoundTripNano": 154061744,
+ "averageApexExecutionNano": 66009098,
+ "shortestApexExecutionNano": 7051194,
+ "longestApexExecutionNano": 116434590
+ },
+ {
+ "batchNumber": 2512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170142247,
+ "shortestRoundTripNano": 53787299,
+ "longestRoundTripNano": 209699659,
+ "averageApexExecutionNano": 73623804,
+ "shortestApexExecutionNano": 8064860,
+ "longestApexExecutionNano": 132943429
+ },
+ {
+ "batchNumber": 2513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117264041,
+ "shortestRoundTripNano": 35744622,
+ "longestRoundTripNano": 150809663,
+ "averageApexExecutionNano": 40086296,
+ "shortestApexExecutionNano": 8781019,
+ "longestApexExecutionNano": 102146577
+ },
+ {
+ "batchNumber": 2514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138404516,
+ "shortestRoundTripNano": 68529364,
+ "longestRoundTripNano": 161871813,
+ "averageApexExecutionNano": 55524585,
+ "shortestApexExecutionNano": 8124208,
+ "longestApexExecutionNano": 115138096
+ },
+ {
+ "batchNumber": 2515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159006240,
+ "shortestRoundTripNano": 60032075,
+ "longestRoundTripNano": 189661039,
+ "averageApexExecutionNano": 61702018,
+ "shortestApexExecutionNano": 7345764,
+ "longestApexExecutionNano": 129685859
+ },
+ {
+ "batchNumber": 2516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134470595,
+ "shortestRoundTripNano": 52207390,
+ "longestRoundTripNano": 155618410,
+ "averageApexExecutionNano": 51298534,
+ "shortestApexExecutionNano": 7446411,
+ "longestApexExecutionNano": 99801436
+ },
+ {
+ "batchNumber": 2517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160607109,
+ "shortestRoundTripNano": 67538685,
+ "longestRoundTripNano": 190622113,
+ "averageApexExecutionNano": 58394422,
+ "shortestApexExecutionNano": 7773766,
+ "longestApexExecutionNano": 143924993
+ },
+ {
+ "batchNumber": 2518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142273084,
+ "shortestRoundTripNano": 42772225,
+ "longestRoundTripNano": 173579052,
+ "averageApexExecutionNano": 45990557,
+ "shortestApexExecutionNano": 7924163,
+ "longestApexExecutionNano": 119352978
+ },
+ {
+ "batchNumber": 2519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132034803,
+ "shortestRoundTripNano": 60365017,
+ "longestRoundTripNano": 163235649,
+ "averageApexExecutionNano": 44957263,
+ "shortestApexExecutionNano": 7882662,
+ "longestApexExecutionNano": 106590972
+ },
+ {
+ "batchNumber": 2520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127414483,
+ "shortestRoundTripNano": 64470909,
+ "longestRoundTripNano": 155735882,
+ "averageApexExecutionNano": 48822514,
+ "shortestApexExecutionNano": 5997081,
+ "longestApexExecutionNano": 110313865
+ },
+ {
+ "batchNumber": 2521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153641034,
+ "shortestRoundTripNano": 69123749,
+ "longestRoundTripNano": 187915246,
+ "averageApexExecutionNano": 62737448,
+ "shortestApexExecutionNano": 10794544,
+ "longestApexExecutionNano": 143751648
+ },
+ {
+ "batchNumber": 2522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162858671,
+ "shortestRoundTripNano": 68168091,
+ "longestRoundTripNano": 199957795,
+ "averageApexExecutionNano": 76507765,
+ "shortestApexExecutionNano": 8559498,
+ "longestApexExecutionNano": 144326954
+ },
+ {
+ "batchNumber": 2523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122706127,
+ "shortestRoundTripNano": 43721768,
+ "longestRoundTripNano": 157008961,
+ "averageApexExecutionNano": 47907744,
+ "shortestApexExecutionNano": 9253764,
+ "longestApexExecutionNano": 92888162
+ },
+ {
+ "batchNumber": 2524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139792575,
+ "shortestRoundTripNano": 39935737,
+ "longestRoundTripNano": 175010282,
+ "averageApexExecutionNano": 69108205,
+ "shortestApexExecutionNano": 8354274,
+ "longestApexExecutionNano": 133710571
+ },
+ {
+ "batchNumber": 2525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132798053,
+ "shortestRoundTripNano": 58500317,
+ "longestRoundTripNano": 169300009,
+ "averageApexExecutionNano": 52729479,
+ "shortestApexExecutionNano": 7523877,
+ "longestApexExecutionNano": 126691128
+ },
+ {
+ "batchNumber": 2526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148450280,
+ "shortestRoundTripNano": 45851907,
+ "longestRoundTripNano": 181087577,
+ "averageApexExecutionNano": 68174333,
+ "shortestApexExecutionNano": 11636953,
+ "longestApexExecutionNano": 130836954
+ },
+ {
+ "batchNumber": 2527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149242026,
+ "shortestRoundTripNano": 51934044,
+ "longestRoundTripNano": 174714127,
+ "averageApexExecutionNano": 62454866,
+ "shortestApexExecutionNano": 10858084,
+ "longestApexExecutionNano": 129319204
+ },
+ {
+ "batchNumber": 2528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154056351,
+ "shortestRoundTripNano": 81626338,
+ "longestRoundTripNano": 180501802,
+ "averageApexExecutionNano": 71521865,
+ "shortestApexExecutionNano": 10147407,
+ "longestApexExecutionNano": 126777977
+ },
+ {
+ "batchNumber": 2529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158902575,
+ "shortestRoundTripNano": 60371765,
+ "longestRoundTripNano": 211095216,
+ "averageApexExecutionNano": 63071831,
+ "shortestApexExecutionNano": 10786265,
+ "longestApexExecutionNano": 125582615
+ },
+ {
+ "batchNumber": 2530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135670176,
+ "shortestRoundTripNano": 73566656,
+ "longestRoundTripNano": 168830459,
+ "averageApexExecutionNano": 59409947,
+ "shortestApexExecutionNano": 8690081,
+ "longestApexExecutionNano": 118462601
+ },
+ {
+ "batchNumber": 2531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144953574,
+ "shortestRoundTripNano": 65700044,
+ "longestRoundTripNano": 194248179,
+ "averageApexExecutionNano": 62244083,
+ "shortestApexExecutionNano": 10142787,
+ "longestApexExecutionNano": 117761783
+ },
+ {
+ "batchNumber": 2532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149596401,
+ "shortestRoundTripNano": 32955133,
+ "longestRoundTripNano": 186073524,
+ "averageApexExecutionNano": 61524177,
+ "shortestApexExecutionNano": 8929596,
+ "longestApexExecutionNano": 118417013
+ },
+ {
+ "batchNumber": 2533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135876060,
+ "shortestRoundTripNano": 43125005,
+ "longestRoundTripNano": 161364487,
+ "averageApexExecutionNano": 55114008,
+ "shortestApexExecutionNano": 10107306,
+ "longestApexExecutionNano": 105415852
+ },
+ {
+ "batchNumber": 2534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151439647,
+ "shortestRoundTripNano": 67046150,
+ "longestRoundTripNano": 188155939,
+ "averageApexExecutionNano": 52414416,
+ "shortestApexExecutionNano": 7013298,
+ "longestApexExecutionNano": 104584826
+ },
+ {
+ "batchNumber": 2535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154155021,
+ "shortestRoundTripNano": 63870460,
+ "longestRoundTripNano": 183623135,
+ "averageApexExecutionNano": 57548944,
+ "shortestApexExecutionNano": 7633614,
+ "longestApexExecutionNano": 134397373
+ },
+ {
+ "batchNumber": 2536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157963240,
+ "shortestRoundTripNano": 53895548,
+ "longestRoundTripNano": 192638532,
+ "averageApexExecutionNano": 53464020,
+ "shortestApexExecutionNano": 8770863,
+ "longestApexExecutionNano": 136362332
+ },
+ {
+ "batchNumber": 2537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138508114,
+ "shortestRoundTripNano": 48372599,
+ "longestRoundTripNano": 164833088,
+ "averageApexExecutionNano": 68679689,
+ "shortestApexExecutionNano": 9298257,
+ "longestApexExecutionNano": 119452205
+ },
+ {
+ "batchNumber": 2538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141621742,
+ "shortestRoundTripNano": 58542776,
+ "longestRoundTripNano": 172119542,
+ "averageApexExecutionNano": 70241231,
+ "shortestApexExecutionNano": 7510094,
+ "longestApexExecutionNano": 125768535
+ },
+ {
+ "batchNumber": 2539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131503486,
+ "shortestRoundTripNano": 58672740,
+ "longestRoundTripNano": 159874487,
+ "averageApexExecutionNano": 53994192,
+ "shortestApexExecutionNano": 8779410,
+ "longestApexExecutionNano": 112089241
+ },
+ {
+ "batchNumber": 2540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148198907,
+ "shortestRoundTripNano": 65574764,
+ "longestRoundTripNano": 174006112,
+ "averageApexExecutionNano": 63589185,
+ "shortestApexExecutionNano": 8055280,
+ "longestApexExecutionNano": 118569723
+ },
+ {
+ "batchNumber": 2541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157037500,
+ "shortestRoundTripNano": 61469291,
+ "longestRoundTripNano": 199148244,
+ "averageApexExecutionNano": 71524114,
+ "shortestApexExecutionNano": 18489016,
+ "longestApexExecutionNano": 115176615
+ },
+ {
+ "batchNumber": 2542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146134683,
+ "shortestRoundTripNano": 76875727,
+ "longestRoundTripNano": 173925296,
+ "averageApexExecutionNano": 58055320,
+ "shortestApexExecutionNano": 25747638,
+ "longestApexExecutionNano": 105001744
+ },
+ {
+ "batchNumber": 2543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133014143,
+ "shortestRoundTripNano": 77252889,
+ "longestRoundTripNano": 156298846,
+ "averageApexExecutionNano": 50720777,
+ "shortestApexExecutionNano": 5720761,
+ "longestApexExecutionNano": 111810554
+ },
+ {
+ "batchNumber": 2544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120974312,
+ "shortestRoundTripNano": 55493990,
+ "longestRoundTripNano": 154772194,
+ "averageApexExecutionNano": 58094849,
+ "shortestApexExecutionNano": 6123431,
+ "longestApexExecutionNano": 96700104
+ },
+ {
+ "batchNumber": 2545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131591154,
+ "shortestRoundTripNano": 54446130,
+ "longestRoundTripNano": 159211036,
+ "averageApexExecutionNano": 61298195,
+ "shortestApexExecutionNano": 7540585,
+ "longestApexExecutionNano": 117887591
+ },
+ {
+ "batchNumber": 2546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160469180,
+ "shortestRoundTripNano": 53426483,
+ "longestRoundTripNano": 187473316,
+ "averageApexExecutionNano": 71682588,
+ "shortestApexExecutionNano": 15807076,
+ "longestApexExecutionNano": 134417507
+ },
+ {
+ "batchNumber": 2547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151463316,
+ "shortestRoundTripNano": 103697415,
+ "longestRoundTripNano": 178065282,
+ "averageApexExecutionNano": 66624314,
+ "shortestApexExecutionNano": 19111236,
+ "longestApexExecutionNano": 109335021
+ },
+ {
+ "batchNumber": 2548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128262344,
+ "shortestRoundTripNano": 53337978,
+ "longestRoundTripNano": 158956588,
+ "averageApexExecutionNano": 53694242,
+ "shortestApexExecutionNano": 14206708,
+ "longestApexExecutionNano": 112087743
+ },
+ {
+ "batchNumber": 2549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170939734,
+ "shortestRoundTripNano": 74860249,
+ "longestRoundTripNano": 204739152,
+ "averageApexExecutionNano": 71462542,
+ "shortestApexExecutionNano": 8832616,
+ "longestApexExecutionNano": 131900914
+ },
+ {
+ "batchNumber": 2550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157327052,
+ "shortestRoundTripNano": 69787967,
+ "longestRoundTripNano": 198580929,
+ "averageApexExecutionNano": 51897595,
+ "shortestApexExecutionNano": 7094350,
+ "longestApexExecutionNano": 140977637
+ },
+ {
+ "batchNumber": 2551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153967565,
+ "shortestRoundTripNano": 62966961,
+ "longestRoundTripNano": 181567795,
+ "averageApexExecutionNano": 60218704,
+ "shortestApexExecutionNano": 13515149,
+ "longestApexExecutionNano": 124917345
+ },
+ {
+ "batchNumber": 2552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 240015385,
+ "shortestRoundTripNano": 55432797,
+ "longestRoundTripNano": 274537627,
+ "averageApexExecutionNano": 121909018,
+ "shortestApexExecutionNano": 7440192,
+ "longestApexExecutionNano": 220624529
+ },
+ {
+ "batchNumber": 2553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151186353,
+ "shortestRoundTripNano": 67712437,
+ "longestRoundTripNano": 181263839,
+ "averageApexExecutionNano": 73356439,
+ "shortestApexExecutionNano": 10634387,
+ "longestApexExecutionNano": 130168575
+ },
+ {
+ "batchNumber": 2554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171980791,
+ "shortestRoundTripNano": 88864715,
+ "longestRoundTripNano": 202436421,
+ "averageApexExecutionNano": 57169003,
+ "shortestApexExecutionNano": 8989780,
+ "longestApexExecutionNano": 123932758
+ },
+ {
+ "batchNumber": 2555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152453358,
+ "shortestRoundTripNano": 74041757,
+ "longestRoundTripNano": 187576257,
+ "averageApexExecutionNano": 74930541,
+ "shortestApexExecutionNano": 15085206,
+ "longestApexExecutionNano": 139027834
+ },
+ {
+ "batchNumber": 2556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160656240,
+ "shortestRoundTripNano": 24734974,
+ "longestRoundTripNano": 190384148,
+ "averageApexExecutionNano": 73575603,
+ "shortestApexExecutionNano": 5651400,
+ "longestApexExecutionNano": 140589117
+ },
+ {
+ "batchNumber": 2557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126724247,
+ "shortestRoundTripNano": 63386071,
+ "longestRoundTripNano": 153898761,
+ "averageApexExecutionNano": 51139309,
+ "shortestApexExecutionNano": 5632287,
+ "longestApexExecutionNano": 105530761
+ },
+ {
+ "batchNumber": 2558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151828060,
+ "shortestRoundTripNano": 85154875,
+ "longestRoundTripNano": 178151969,
+ "averageApexExecutionNano": 53979060,
+ "shortestApexExecutionNano": 4763765,
+ "longestApexExecutionNano": 111981508
+ },
+ {
+ "batchNumber": 2559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139396761,
+ "shortestRoundTripNano": 62661996,
+ "longestRoundTripNano": 169931999,
+ "averageApexExecutionNano": 61478359,
+ "shortestApexExecutionNano": 13195751,
+ "longestApexExecutionNano": 114376395
+ },
+ {
+ "batchNumber": 2560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134141544,
+ "shortestRoundTripNano": 57163957,
+ "longestRoundTripNano": 159406039,
+ "averageApexExecutionNano": 49536682,
+ "shortestApexExecutionNano": 8447254,
+ "longestApexExecutionNano": 113179996
+ },
+ {
+ "batchNumber": 2561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132287699,
+ "shortestRoundTripNano": 50856815,
+ "longestRoundTripNano": 156944122,
+ "averageApexExecutionNano": 48709601,
+ "shortestApexExecutionNano": 9858730,
+ "longestApexExecutionNano": 105175766
+ },
+ {
+ "batchNumber": 2562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136733883,
+ "shortestRoundTripNano": 49370786,
+ "longestRoundTripNano": 165076778,
+ "averageApexExecutionNano": 59813601,
+ "shortestApexExecutionNano": 5183576,
+ "longestApexExecutionNano": 114785149
+ },
+ {
+ "batchNumber": 2563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125673450,
+ "shortestRoundTripNano": 57076304,
+ "longestRoundTripNano": 152793246,
+ "averageApexExecutionNano": 45447039,
+ "shortestApexExecutionNano": 7821069,
+ "longestApexExecutionNano": 111109608
+ },
+ {
+ "batchNumber": 2564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 205683171,
+ "shortestRoundTripNano": 63921044,
+ "longestRoundTripNano": 245923754,
+ "averageApexExecutionNano": 66919930,
+ "shortestApexExecutionNano": 9425006,
+ "longestApexExecutionNano": 165248789
+ },
+ {
+ "batchNumber": 2565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157200354,
+ "shortestRoundTripNano": 91948039,
+ "longestRoundTripNano": 183531446,
+ "averageApexExecutionNano": 80142401,
+ "shortestApexExecutionNano": 5398821,
+ "longestApexExecutionNano": 140064557
+ },
+ {
+ "batchNumber": 2566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133444022,
+ "shortestRoundTripNano": 62636398,
+ "longestRoundTripNano": 159577833,
+ "averageApexExecutionNano": 58873803,
+ "shortestApexExecutionNano": 14377371,
+ "longestApexExecutionNano": 114384586
+ },
+ {
+ "batchNumber": 2567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138104128,
+ "shortestRoundTripNano": 73052325,
+ "longestRoundTripNano": 171199230,
+ "averageApexExecutionNano": 69711951,
+ "shortestApexExecutionNano": 15776222,
+ "longestApexExecutionNano": 113775384
+ },
+ {
+ "batchNumber": 2568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133975611,
+ "shortestRoundTripNano": 72361116,
+ "longestRoundTripNano": 154966462,
+ "averageApexExecutionNano": 51851478,
+ "shortestApexExecutionNano": 12051051,
+ "longestApexExecutionNano": 97365292
+ },
+ {
+ "batchNumber": 2569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128404216,
+ "shortestRoundTripNano": 73328958,
+ "longestRoundTripNano": 158980202,
+ "averageApexExecutionNano": 59466103,
+ "shortestApexExecutionNano": 6040085,
+ "longestApexExecutionNano": 115386020
+ },
+ {
+ "batchNumber": 2570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158774672,
+ "shortestRoundTripNano": 53530897,
+ "longestRoundTripNano": 190441673,
+ "averageApexExecutionNano": 71100787,
+ "shortestApexExecutionNano": 7701897,
+ "longestApexExecutionNano": 134888549
+ },
+ {
+ "batchNumber": 2571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158871833,
+ "shortestRoundTripNano": 78892799,
+ "longestRoundTripNano": 192726081,
+ "averageApexExecutionNano": 68737520,
+ "shortestApexExecutionNano": 13206287,
+ "longestApexExecutionNano": 109014761
+ },
+ {
+ "batchNumber": 2572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136253194,
+ "shortestRoundTripNano": 47091758,
+ "longestRoundTripNano": 170292294,
+ "averageApexExecutionNano": 63689007,
+ "shortestApexExecutionNano": 7955196,
+ "longestApexExecutionNano": 126461180
+ },
+ {
+ "batchNumber": 2573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136666436,
+ "shortestRoundTripNano": 69674355,
+ "longestRoundTripNano": 160393717,
+ "averageApexExecutionNano": 49555840,
+ "shortestApexExecutionNano": 9798419,
+ "longestApexExecutionNano": 97936430
+ },
+ {
+ "batchNumber": 2574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35660",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155646980,
+ "shortestRoundTripNano": 48372806,
+ "longestRoundTripNano": 181816329,
+ "averageApexExecutionNano": 56643520,
+ "shortestApexExecutionNano": 8637414,
+ "longestApexExecutionNano": 119600673
+ },
+ {
+ "batchNumber": 2575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132150670,
+ "shortestRoundTripNano": 59796699,
+ "longestRoundTripNano": 160501491,
+ "averageApexExecutionNano": 56286911,
+ "shortestApexExecutionNano": 10371767,
+ "longestApexExecutionNano": 116222886
+ },
+ {
+ "batchNumber": 2576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142282159,
+ "shortestRoundTripNano": 56170415,
+ "longestRoundTripNano": 172767401,
+ "averageApexExecutionNano": 61294776,
+ "shortestApexExecutionNano": 8894428,
+ "longestApexExecutionNano": 126710875
+ },
+ {
+ "batchNumber": 2577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136178299,
+ "shortestRoundTripNano": 68508381,
+ "longestRoundTripNano": 160021677,
+ "averageApexExecutionNano": 50055342,
+ "shortestApexExecutionNano": 7031878,
+ "longestApexExecutionNano": 114657510
+ },
+ {
+ "batchNumber": 2578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154602991,
+ "shortestRoundTripNano": 61460143,
+ "longestRoundTripNano": 202395593,
+ "averageApexExecutionNano": 55390855,
+ "shortestApexExecutionNano": 9835550,
+ "longestApexExecutionNano": 104679400
+ },
+ {
+ "batchNumber": 2579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143880828,
+ "shortestRoundTripNano": 37185890,
+ "longestRoundTripNano": 172530392,
+ "averageApexExecutionNano": 71836423,
+ "shortestApexExecutionNano": 9613054,
+ "longestApexExecutionNano": 127080686
+ },
+ {
+ "batchNumber": 2580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155830613,
+ "shortestRoundTripNano": 72989564,
+ "longestRoundTripNano": 193922841,
+ "averageApexExecutionNano": 60504130,
+ "shortestApexExecutionNano": 6758421,
+ "longestApexExecutionNano": 111913881
+ },
+ {
+ "batchNumber": 2581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144535748,
+ "shortestRoundTripNano": 75653005,
+ "longestRoundTripNano": 176398349,
+ "averageApexExecutionNano": 67236099,
+ "shortestApexExecutionNano": 14150951,
+ "longestApexExecutionNano": 119756135
+ },
+ {
+ "batchNumber": 2582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164034284,
+ "shortestRoundTripNano": 79064118,
+ "longestRoundTripNano": 199303821,
+ "averageApexExecutionNano": 62295645,
+ "shortestApexExecutionNano": 13467773,
+ "longestApexExecutionNano": 137145872
+ },
+ {
+ "batchNumber": 2583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131386958,
+ "shortestRoundTripNano": 41531458,
+ "longestRoundTripNano": 155616448,
+ "averageApexExecutionNano": 45693303,
+ "shortestApexExecutionNano": 7412252,
+ "longestApexExecutionNano": 85092040
+ },
+ {
+ "batchNumber": 2584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154250747,
+ "shortestRoundTripNano": 79647476,
+ "longestRoundTripNano": 184500139,
+ "averageApexExecutionNano": 54490919,
+ "shortestApexExecutionNano": 9950837,
+ "longestApexExecutionNano": 139759395
+ },
+ {
+ "batchNumber": 2585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137071580,
+ "shortestRoundTripNano": 74836800,
+ "longestRoundTripNano": 158610366,
+ "averageApexExecutionNano": 54935965,
+ "shortestApexExecutionNano": 5711305,
+ "longestApexExecutionNano": 112993113
+ },
+ {
+ "batchNumber": 2586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148346478,
+ "shortestRoundTripNano": 69438473,
+ "longestRoundTripNano": 172124019,
+ "averageApexExecutionNano": 47865918,
+ "shortestApexExecutionNano": 8658611,
+ "longestApexExecutionNano": 109008584
+ },
+ {
+ "batchNumber": 2587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125573703,
+ "shortestRoundTripNano": 48008532,
+ "longestRoundTripNano": 153170589,
+ "averageApexExecutionNano": 57727364,
+ "shortestApexExecutionNano": 5269114,
+ "longestApexExecutionNano": 108881170
+ },
+ {
+ "batchNumber": 2588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146638679,
+ "shortestRoundTripNano": 58452431,
+ "longestRoundTripNano": 185285264,
+ "averageApexExecutionNano": 37810603,
+ "shortestApexExecutionNano": 5785654,
+ "longestApexExecutionNano": 101137947
+ },
+ {
+ "batchNumber": 2589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128509506,
+ "shortestRoundTripNano": 71041623,
+ "longestRoundTripNano": 157320718,
+ "averageApexExecutionNano": 66098303,
+ "shortestApexExecutionNano": 10665692,
+ "longestApexExecutionNano": 107791224
+ },
+ {
+ "batchNumber": 2590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144592459,
+ "shortestRoundTripNano": 67643790,
+ "longestRoundTripNano": 178406992,
+ "averageApexExecutionNano": 57825325,
+ "shortestApexExecutionNano": 9813199,
+ "longestApexExecutionNano": 113204972
+ },
+ {
+ "batchNumber": 2591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160504506,
+ "shortestRoundTripNano": 45805358,
+ "longestRoundTripNano": 202207858,
+ "averageApexExecutionNano": 61204824,
+ "shortestApexExecutionNano": 11528486,
+ "longestApexExecutionNano": 126985496
+ },
+ {
+ "batchNumber": 2592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151184070,
+ "shortestRoundTripNano": 63199854,
+ "longestRoundTripNano": 175298555,
+ "averageApexExecutionNano": 68108321,
+ "shortestApexExecutionNano": 12567183,
+ "longestApexExecutionNano": 114789980
+ },
+ {
+ "batchNumber": 2593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142950343,
+ "shortestRoundTripNano": 62463442,
+ "longestRoundTripNano": 172367125,
+ "averageApexExecutionNano": 60160385,
+ "shortestApexExecutionNano": 7300522,
+ "longestApexExecutionNano": 125519066
+ },
+ {
+ "batchNumber": 2594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155977753,
+ "shortestRoundTripNano": 55182709,
+ "longestRoundTripNano": 191603455,
+ "averageApexExecutionNano": 73848929,
+ "shortestApexExecutionNano": 6868398,
+ "longestApexExecutionNano": 156862890
+ },
+ {
+ "batchNumber": 2595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150522355,
+ "shortestRoundTripNano": 44393597,
+ "longestRoundTripNano": 182628669,
+ "averageApexExecutionNano": 55693397,
+ "shortestApexExecutionNano": 8964091,
+ "longestApexExecutionNano": 131765217
+ },
+ {
+ "batchNumber": 2596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150953421,
+ "shortestRoundTripNano": 62013288,
+ "longestRoundTripNano": 178794162,
+ "averageApexExecutionNano": 55351917,
+ "shortestApexExecutionNano": 9225195,
+ "longestApexExecutionNano": 118022140
+ },
+ {
+ "batchNumber": 2597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149730370,
+ "shortestRoundTripNano": 64029439,
+ "longestRoundTripNano": 188338457,
+ "averageApexExecutionNano": 44894970,
+ "shortestApexExecutionNano": 9678436,
+ "longestApexExecutionNano": 110976573
+ },
+ {
+ "batchNumber": 2598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132155046,
+ "shortestRoundTripNano": 61071577,
+ "longestRoundTripNano": 162333989,
+ "averageApexExecutionNano": 58003770,
+ "shortestApexExecutionNano": 8816695,
+ "longestApexExecutionNano": 107239506
+ },
+ {
+ "batchNumber": 2599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160532187,
+ "shortestRoundTripNano": 52503330,
+ "longestRoundTripNano": 197048783,
+ "averageApexExecutionNano": 62710801,
+ "shortestApexExecutionNano": 5299580,
+ "longestApexExecutionNano": 129709844
+ },
+ {
+ "batchNumber": 2600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160273921,
+ "shortestRoundTripNano": 106240228,
+ "longestRoundTripNano": 188165545,
+ "averageApexExecutionNano": 59672942,
+ "shortestApexExecutionNano": 6254587,
+ "longestApexExecutionNano": 128336886
+ },
+ {
+ "batchNumber": 2601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118708455,
+ "shortestRoundTripNano": 39164848,
+ "longestRoundTripNano": 149933366,
+ "averageApexExecutionNano": 49532490,
+ "shortestApexExecutionNano": 8939968,
+ "longestApexExecutionNano": 104338402
+ },
+ {
+ "batchNumber": 2602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134468763,
+ "shortestRoundTripNano": 78228545,
+ "longestRoundTripNano": 160474430,
+ "averageApexExecutionNano": 54524950,
+ "shortestApexExecutionNano": 7343531,
+ "longestApexExecutionNano": 105142386
+ },
+ {
+ "batchNumber": 2603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128752616,
+ "shortestRoundTripNano": 62705583,
+ "longestRoundTripNano": 152637827,
+ "averageApexExecutionNano": 61460969,
+ "shortestApexExecutionNano": 9174660,
+ "longestApexExecutionNano": 108475868
+ },
+ {
+ "batchNumber": 2604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157457677,
+ "shortestRoundTripNano": 62807247,
+ "longestRoundTripNano": 183198761,
+ "averageApexExecutionNano": 53817269,
+ "shortestApexExecutionNano": 8180644,
+ "longestApexExecutionNano": 105344083
+ },
+ {
+ "batchNumber": 2605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129472139,
+ "shortestRoundTripNano": 62547384,
+ "longestRoundTripNano": 154801394,
+ "averageApexExecutionNano": 57843438,
+ "shortestApexExecutionNano": 11210489,
+ "longestApexExecutionNano": 99740050
+ },
+ {
+ "batchNumber": 2606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127406703,
+ "shortestRoundTripNano": 57310739,
+ "longestRoundTripNano": 153678113,
+ "averageApexExecutionNano": 43693242,
+ "shortestApexExecutionNano": 6562858,
+ "longestApexExecutionNano": 109296715
+ },
+ {
+ "batchNumber": 2607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155969302,
+ "shortestRoundTripNano": 58561489,
+ "longestRoundTripNano": 189946573,
+ "averageApexExecutionNano": 63014695,
+ "shortestApexExecutionNano": 7509741,
+ "longestApexExecutionNano": 113478326
+ },
+ {
+ "batchNumber": 2608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148907027,
+ "shortestRoundTripNano": 42865078,
+ "longestRoundTripNano": 184300841,
+ "averageApexExecutionNano": 73195911,
+ "shortestApexExecutionNano": 6391290,
+ "longestApexExecutionNano": 142712843
+ },
+ {
+ "batchNumber": 2609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164916307,
+ "shortestRoundTripNano": 62805734,
+ "longestRoundTripNano": 209024478,
+ "averageApexExecutionNano": 69381431,
+ "shortestApexExecutionNano": 7650079,
+ "longestApexExecutionNano": 130975727
+ },
+ {
+ "batchNumber": 2610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146425653,
+ "shortestRoundTripNano": 69797012,
+ "longestRoundTripNano": 181218157,
+ "averageApexExecutionNano": 70289873,
+ "shortestApexExecutionNano": 11771641,
+ "longestApexExecutionNano": 140290598
+ },
+ {
+ "batchNumber": 2611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137545784,
+ "shortestRoundTripNano": 70561032,
+ "longestRoundTripNano": 168216572,
+ "averageApexExecutionNano": 54089075,
+ "shortestApexExecutionNano": 10500256,
+ "longestApexExecutionNano": 109875026
+ },
+ {
+ "batchNumber": 2612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148849868,
+ "shortestRoundTripNano": 77474841,
+ "longestRoundTripNano": 178254087,
+ "averageApexExecutionNano": 45292319,
+ "shortestApexExecutionNano": 8076753,
+ "longestApexExecutionNano": 122135158
+ },
+ {
+ "batchNumber": 2613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148184847,
+ "shortestRoundTripNano": 54961126,
+ "longestRoundTripNano": 180127772,
+ "averageApexExecutionNano": 57018620,
+ "shortestApexExecutionNano": 7576629,
+ "longestApexExecutionNano": 119459768
+ },
+ {
+ "batchNumber": 2614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145298808,
+ "shortestRoundTripNano": 33136188,
+ "longestRoundTripNano": 181116936,
+ "averageApexExecutionNano": 68657973,
+ "shortestApexExecutionNano": 6944764,
+ "longestApexExecutionNano": 133805611
+ },
+ {
+ "batchNumber": 2615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156500997,
+ "shortestRoundTripNano": 50566793,
+ "longestRoundTripNano": 184710895,
+ "averageApexExecutionNano": 43705304,
+ "shortestApexExecutionNano": 5338449,
+ "longestApexExecutionNano": 111502357
+ },
+ {
+ "batchNumber": 2616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153252929,
+ "shortestRoundTripNano": 38324074,
+ "longestRoundTripNano": 181191545,
+ "averageApexExecutionNano": 66473787,
+ "shortestApexExecutionNano": 8060348,
+ "longestApexExecutionNano": 134898790
+ },
+ {
+ "batchNumber": 2617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158796137,
+ "shortestRoundTripNano": 53204517,
+ "longestRoundTripNano": 228586805,
+ "averageApexExecutionNano": 58525216,
+ "shortestApexExecutionNano": 12030786,
+ "longestApexExecutionNano": 146446308
+ },
+ {
+ "batchNumber": 2618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151175844,
+ "shortestRoundTripNano": 72529076,
+ "longestRoundTripNano": 177089792,
+ "averageApexExecutionNano": 46512589,
+ "shortestApexExecutionNano": 6409937,
+ "longestApexExecutionNano": 84930661
+ },
+ {
+ "batchNumber": 2619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167233360,
+ "shortestRoundTripNano": 61419210,
+ "longestRoundTripNano": 216202146,
+ "averageApexExecutionNano": 81495237,
+ "shortestApexExecutionNano": 7882679,
+ "longestApexExecutionNano": 140230677
+ },
+ {
+ "batchNumber": 2620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152125589,
+ "shortestRoundTripNano": 77958024,
+ "longestRoundTripNano": 176205260,
+ "averageApexExecutionNano": 64294064,
+ "shortestApexExecutionNano": 9778067,
+ "longestApexExecutionNano": 121451699
+ },
+ {
+ "batchNumber": 2621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131115334,
+ "shortestRoundTripNano": 62518675,
+ "longestRoundTripNano": 168362145,
+ "averageApexExecutionNano": 46475620,
+ "shortestApexExecutionNano": 8559932,
+ "longestApexExecutionNano": 105351600
+ },
+ {
+ "batchNumber": 2622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128528290,
+ "shortestRoundTripNano": 53596386,
+ "longestRoundTripNano": 157126714,
+ "averageApexExecutionNano": 60249554,
+ "shortestApexExecutionNano": 5379625,
+ "longestApexExecutionNano": 107438823
+ },
+ {
+ "batchNumber": 2623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141707796,
+ "shortestRoundTripNano": 58895036,
+ "longestRoundTripNano": 175475307,
+ "averageApexExecutionNano": 58650851,
+ "shortestApexExecutionNano": 9176617,
+ "longestApexExecutionNano": 121462904
+ },
+ {
+ "batchNumber": 2624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129408964,
+ "shortestRoundTripNano": 65312057,
+ "longestRoundTripNano": 158575777,
+ "averageApexExecutionNano": 58370150,
+ "shortestApexExecutionNano": 9460269,
+ "longestApexExecutionNano": 113325085
+ },
+ {
+ "batchNumber": 2625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158825660,
+ "shortestRoundTripNano": 84957073,
+ "longestRoundTripNano": 190291666,
+ "averageApexExecutionNano": 70532284,
+ "shortestApexExecutionNano": 8348997,
+ "longestApexExecutionNano": 144375040
+ },
+ {
+ "batchNumber": 2626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149935270,
+ "shortestRoundTripNano": 74448022,
+ "longestRoundTripNano": 180656666,
+ "averageApexExecutionNano": 70677235,
+ "shortestApexExecutionNano": 8706350,
+ "longestApexExecutionNano": 130799543
+ },
+ {
+ "batchNumber": 2627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149399423,
+ "shortestRoundTripNano": 75662335,
+ "longestRoundTripNano": 178744808,
+ "averageApexExecutionNano": 67923618,
+ "shortestApexExecutionNano": 10113353,
+ "longestApexExecutionNano": 112998969
+ },
+ {
+ "batchNumber": 2628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156794998,
+ "shortestRoundTripNano": 62830547,
+ "longestRoundTripNano": 192094686,
+ "averageApexExecutionNano": 66103915,
+ "shortestApexExecutionNano": 5636236,
+ "longestApexExecutionNano": 108789224
+ },
+ {
+ "batchNumber": 2629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124411014,
+ "shortestRoundTripNano": 65379166,
+ "longestRoundTripNano": 153246239,
+ "averageApexExecutionNano": 59560251,
+ "shortestApexExecutionNano": 6339542,
+ "longestApexExecutionNano": 114198301
+ },
+ {
+ "batchNumber": 2630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126479488,
+ "shortestRoundTripNano": 66422087,
+ "longestRoundTripNano": 156783666,
+ "averageApexExecutionNano": 56909717,
+ "shortestApexExecutionNano": 6058569,
+ "longestApexExecutionNano": 94900809
+ },
+ {
+ "batchNumber": 2631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125923177,
+ "shortestRoundTripNano": 49741559,
+ "longestRoundTripNano": 152087038,
+ "averageApexExecutionNano": 61747371,
+ "shortestApexExecutionNano": 12224873,
+ "longestApexExecutionNano": 110607372
+ },
+ {
+ "batchNumber": 2632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131127134,
+ "shortestRoundTripNano": 40877945,
+ "longestRoundTripNano": 155971014,
+ "averageApexExecutionNano": 57536602,
+ "shortestApexExecutionNano": 6371797,
+ "longestApexExecutionNano": 105980586
+ },
+ {
+ "batchNumber": 2633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147308133,
+ "shortestRoundTripNano": 72786651,
+ "longestRoundTripNano": 185853343,
+ "averageApexExecutionNano": 53794669,
+ "shortestApexExecutionNano": 7715355,
+ "longestApexExecutionNano": 134554508
+ },
+ {
+ "batchNumber": 2634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142727805,
+ "shortestRoundTripNano": 54808629,
+ "longestRoundTripNano": 177394948,
+ "averageApexExecutionNano": 55343350,
+ "shortestApexExecutionNano": 7807066,
+ "longestApexExecutionNano": 104576308
+ },
+ {
+ "batchNumber": 2635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130356506,
+ "shortestRoundTripNano": 62310177,
+ "longestRoundTripNano": 155642343,
+ "averageApexExecutionNano": 52138481,
+ "shortestApexExecutionNano": 22284970,
+ "longestApexExecutionNano": 97661882
+ },
+ {
+ "batchNumber": 2636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132228651,
+ "shortestRoundTripNano": 62004087,
+ "longestRoundTripNano": 165126367,
+ "averageApexExecutionNano": 52896332,
+ "shortestApexExecutionNano": 6056454,
+ "longestApexExecutionNano": 125145763
+ },
+ {
+ "batchNumber": 2637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129648539,
+ "shortestRoundTripNano": 41727846,
+ "longestRoundTripNano": 164046030,
+ "averageApexExecutionNano": 47671018,
+ "shortestApexExecutionNano": 11498646,
+ "longestApexExecutionNano": 97676069
+ },
+ {
+ "batchNumber": 2638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141808800,
+ "shortestRoundTripNano": 68994330,
+ "longestRoundTripNano": 171812385,
+ "averageApexExecutionNano": 59125144,
+ "shortestApexExecutionNano": 12215955,
+ "longestApexExecutionNano": 116064094
+ },
+ {
+ "batchNumber": 2639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160615825,
+ "shortestRoundTripNano": 71601929,
+ "longestRoundTripNano": 190981920,
+ "averageApexExecutionNano": 65599741,
+ "shortestApexExecutionNano": 7538983,
+ "longestApexExecutionNano": 124326318
+ },
+ {
+ "batchNumber": 2640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121866398,
+ "shortestRoundTripNano": 63946276,
+ "longestRoundTripNano": 147214078,
+ "averageApexExecutionNano": 48543356,
+ "shortestApexExecutionNano": 7700765,
+ "longestApexExecutionNano": 105105653
+ },
+ {
+ "batchNumber": 2641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144072633,
+ "shortestRoundTripNano": 59050011,
+ "longestRoundTripNano": 169610204,
+ "averageApexExecutionNano": 58335535,
+ "shortestApexExecutionNano": 7297361,
+ "longestApexExecutionNano": 99022066
+ },
+ {
+ "batchNumber": 2642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149213228,
+ "shortestRoundTripNano": 62523159,
+ "longestRoundTripNano": 176011327,
+ "averageApexExecutionNano": 59429520,
+ "shortestApexExecutionNano": 9354471,
+ "longestApexExecutionNano": 118579750
+ },
+ {
+ "batchNumber": 2643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160445863,
+ "shortestRoundTripNano": 63675491,
+ "longestRoundTripNano": 191401315,
+ "averageApexExecutionNano": 88409782,
+ "shortestApexExecutionNano": 9874438,
+ "longestApexExecutionNano": 140376826
+ },
+ {
+ "batchNumber": 2644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141710533,
+ "shortestRoundTripNano": 47255594,
+ "longestRoundTripNano": 173161802,
+ "averageApexExecutionNano": 51018170,
+ "shortestApexExecutionNano": 6633452,
+ "longestApexExecutionNano": 113922308
+ },
+ {
+ "batchNumber": 2645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132375257,
+ "shortestRoundTripNano": 36196380,
+ "longestRoundTripNano": 164652352,
+ "averageApexExecutionNano": 49039521,
+ "shortestApexExecutionNano": 7954535,
+ "longestApexExecutionNano": 109882335
+ },
+ {
+ "batchNumber": 2646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150224321,
+ "shortestRoundTripNano": 39616609,
+ "longestRoundTripNano": 177303509,
+ "averageApexExecutionNano": 63310026,
+ "shortestApexExecutionNano": 7398309,
+ "longestApexExecutionNano": 102114497
+ },
+ {
+ "batchNumber": 2647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166482550,
+ "shortestRoundTripNano": 90898984,
+ "longestRoundTripNano": 215741332,
+ "averageApexExecutionNano": 64278894,
+ "shortestApexExecutionNano": 10871148,
+ "longestApexExecutionNano": 112240178
+ },
+ {
+ "batchNumber": 2648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152927757,
+ "shortestRoundTripNano": 96316739,
+ "longestRoundTripNano": 183868977,
+ "averageApexExecutionNano": 75512465,
+ "shortestApexExecutionNano": 9917205,
+ "longestApexExecutionNano": 134552261
+ },
+ {
+ "batchNumber": 2649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162483979,
+ "shortestRoundTripNano": 76648424,
+ "longestRoundTripNano": 192602711,
+ "averageApexExecutionNano": 68992359,
+ "shortestApexExecutionNano": 8563941,
+ "longestApexExecutionNano": 132358174
+ },
+ {
+ "batchNumber": 2650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35690",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175634701,
+ "shortestRoundTripNano": 80721566,
+ "longestRoundTripNano": 216407865,
+ "averageApexExecutionNano": 62325312,
+ "shortestApexExecutionNano": 9107154,
+ "longestApexExecutionNano": 113180313
+ },
+ {
+ "batchNumber": 2651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155181763,
+ "shortestRoundTripNano": 71800940,
+ "longestRoundTripNano": 192013195,
+ "averageApexExecutionNano": 77651541,
+ "shortestApexExecutionNano": 4834172,
+ "longestApexExecutionNano": 145355243
+ },
+ {
+ "batchNumber": 2652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151732602,
+ "shortestRoundTripNano": 50619632,
+ "longestRoundTripNano": 182661791,
+ "averageApexExecutionNano": 67404406,
+ "shortestApexExecutionNano": 14513999,
+ "longestApexExecutionNano": 119914539
+ },
+ {
+ "batchNumber": 2653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143020270,
+ "shortestRoundTripNano": 69382610,
+ "longestRoundTripNano": 169842015,
+ "averageApexExecutionNano": 57274571,
+ "shortestApexExecutionNano": 7223370,
+ "longestApexExecutionNano": 114757467
+ },
+ {
+ "batchNumber": 2654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159899283,
+ "shortestRoundTripNano": 61502035,
+ "longestRoundTripNano": 190683076,
+ "averageApexExecutionNano": 70488908,
+ "shortestApexExecutionNano": 11073908,
+ "longestApexExecutionNano": 138038154
+ },
+ {
+ "batchNumber": 2655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135209702,
+ "shortestRoundTripNano": 71454373,
+ "longestRoundTripNano": 163793416,
+ "averageApexExecutionNano": 55778206,
+ "shortestApexExecutionNano": 6373729,
+ "longestApexExecutionNano": 101400890
+ },
+ {
+ "batchNumber": 2656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153326577,
+ "shortestRoundTripNano": 98129419,
+ "longestRoundTripNano": 179450387,
+ "averageApexExecutionNano": 55255709,
+ "shortestApexExecutionNano": 6303020,
+ "longestApexExecutionNano": 111680210
+ },
+ {
+ "batchNumber": 2657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134167183,
+ "shortestRoundTripNano": 67750260,
+ "longestRoundTripNano": 160277164,
+ "averageApexExecutionNano": 58862251,
+ "shortestApexExecutionNano": 9318155,
+ "longestApexExecutionNano": 109379089
+ },
+ {
+ "batchNumber": 2658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163335468,
+ "shortestRoundTripNano": 69676250,
+ "longestRoundTripNano": 200192842,
+ "averageApexExecutionNano": 59744911,
+ "shortestApexExecutionNano": 6585136,
+ "longestApexExecutionNano": 127391743
+ },
+ {
+ "batchNumber": 2659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156607249,
+ "shortestRoundTripNano": 59879776,
+ "longestRoundTripNano": 184349907,
+ "averageApexExecutionNano": 73124947,
+ "shortestApexExecutionNano": 15944698,
+ "longestApexExecutionNano": 136626253
+ },
+ {
+ "batchNumber": 2660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143855129,
+ "shortestRoundTripNano": 74276715,
+ "longestRoundTripNano": 174070243,
+ "averageApexExecutionNano": 57069476,
+ "shortestApexExecutionNano": 7422594,
+ "longestApexExecutionNano": 120709914
+ },
+ {
+ "batchNumber": 2661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154882151,
+ "shortestRoundTripNano": 72580594,
+ "longestRoundTripNano": 182211890,
+ "averageApexExecutionNano": 75555480,
+ "shortestApexExecutionNano": 23864546,
+ "longestApexExecutionNano": 124073479
+ },
+ {
+ "batchNumber": 2662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173510859,
+ "shortestRoundTripNano": 62776790,
+ "longestRoundTripNano": 204352755,
+ "averageApexExecutionNano": 68782606,
+ "shortestApexExecutionNano": 8771750,
+ "longestApexExecutionNano": 143469930
+ },
+ {
+ "batchNumber": 2663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119855722,
+ "shortestRoundTripNano": 53008989,
+ "longestRoundTripNano": 147913852,
+ "averageApexExecutionNano": 44095608,
+ "shortestApexExecutionNano": 7055622,
+ "longestApexExecutionNano": 101030083
+ },
+ {
+ "batchNumber": 2664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136643402,
+ "shortestRoundTripNano": 56786683,
+ "longestRoundTripNano": 171924435,
+ "averageApexExecutionNano": 45004893,
+ "shortestApexExecutionNano": 6685792,
+ "longestApexExecutionNano": 123979279
+ },
+ {
+ "batchNumber": 2665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164243060,
+ "shortestRoundTripNano": 71857328,
+ "longestRoundTripNano": 196520047,
+ "averageApexExecutionNano": 77766643,
+ "shortestApexExecutionNano": 7745210,
+ "longestApexExecutionNano": 139554657
+ },
+ {
+ "batchNumber": 2666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139756810,
+ "shortestRoundTripNano": 60664964,
+ "longestRoundTripNano": 180884915,
+ "averageApexExecutionNano": 61626007,
+ "shortestApexExecutionNano": 10844309,
+ "longestApexExecutionNano": 121520084
+ },
+ {
+ "batchNumber": 2667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135205844,
+ "shortestRoundTripNano": 40456962,
+ "longestRoundTripNano": 168352941,
+ "averageApexExecutionNano": 64487868,
+ "shortestApexExecutionNano": 13916993,
+ "longestApexExecutionNano": 126583308
+ },
+ {
+ "batchNumber": 2668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125255605,
+ "shortestRoundTripNano": 58377086,
+ "longestRoundTripNano": 156334677,
+ "averageApexExecutionNano": 56163632,
+ "shortestApexExecutionNano": 9797404,
+ "longestApexExecutionNano": 103776541
+ },
+ {
+ "batchNumber": 2669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120077714,
+ "shortestRoundTripNano": 52404630,
+ "longestRoundTripNano": 144858771,
+ "averageApexExecutionNano": 35034690,
+ "shortestApexExecutionNano": 7932641,
+ "longestApexExecutionNano": 88958993
+ },
+ {
+ "batchNumber": 2670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148493253,
+ "shortestRoundTripNano": 68065169,
+ "longestRoundTripNano": 182308728,
+ "averageApexExecutionNano": 66008308,
+ "shortestApexExecutionNano": 22569455,
+ "longestApexExecutionNano": 115579681
+ },
+ {
+ "batchNumber": 2671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127071800,
+ "shortestRoundTripNano": 66379599,
+ "longestRoundTripNano": 160615232,
+ "averageApexExecutionNano": 55062500,
+ "shortestApexExecutionNano": 5943632,
+ "longestApexExecutionNano": 102610532
+ },
+ {
+ "batchNumber": 2672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148534462,
+ "shortestRoundTripNano": 58267681,
+ "longestRoundTripNano": 185553793,
+ "averageApexExecutionNano": 69045278,
+ "shortestApexExecutionNano": 11912526,
+ "longestApexExecutionNano": 132054003
+ },
+ {
+ "batchNumber": 2673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140367396,
+ "shortestRoundTripNano": 60982187,
+ "longestRoundTripNano": 162232896,
+ "averageApexExecutionNano": 48371308,
+ "shortestApexExecutionNano": 5096572,
+ "longestApexExecutionNano": 109950141
+ },
+ {
+ "batchNumber": 2674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133456251,
+ "shortestRoundTripNano": 40776055,
+ "longestRoundTripNano": 160694641,
+ "averageApexExecutionNano": 44955970,
+ "shortestApexExecutionNano": 6321583,
+ "longestApexExecutionNano": 110284112
+ },
+ {
+ "batchNumber": 2675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155250184,
+ "shortestRoundTripNano": 71081253,
+ "longestRoundTripNano": 191125785,
+ "averageApexExecutionNano": 69165512,
+ "shortestApexExecutionNano": 8240345,
+ "longestApexExecutionNano": 148882284
+ },
+ {
+ "batchNumber": 2676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126701813,
+ "shortestRoundTripNano": 57548884,
+ "longestRoundTripNano": 157900595,
+ "averageApexExecutionNano": 43553886,
+ "shortestApexExecutionNano": 7648451,
+ "longestApexExecutionNano": 111569790
+ },
+ {
+ "batchNumber": 2677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160693815,
+ "shortestRoundTripNano": 69698386,
+ "longestRoundTripNano": 190360804,
+ "averageApexExecutionNano": 62045656,
+ "shortestApexExecutionNano": 10739052,
+ "longestApexExecutionNano": 110815004
+ },
+ {
+ "batchNumber": 2678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137298591,
+ "shortestRoundTripNano": 61133046,
+ "longestRoundTripNano": 167087830,
+ "averageApexExecutionNano": 54817009,
+ "shortestApexExecutionNano": 9034855,
+ "longestApexExecutionNano": 117685959
+ },
+ {
+ "batchNumber": 2679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135508174,
+ "shortestRoundTripNano": 42930508,
+ "longestRoundTripNano": 163820073,
+ "averageApexExecutionNano": 67685730,
+ "shortestApexExecutionNano": 10862678,
+ "longestApexExecutionNano": 114316996
+ },
+ {
+ "batchNumber": 2680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156477427,
+ "shortestRoundTripNano": 94923903,
+ "longestRoundTripNano": 183193136,
+ "averageApexExecutionNano": 63618815,
+ "shortestApexExecutionNano": 9979090,
+ "longestApexExecutionNano": 118557581
+ },
+ {
+ "batchNumber": 2681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131876599,
+ "shortestRoundTripNano": 62501012,
+ "longestRoundTripNano": 154356157,
+ "averageApexExecutionNano": 51378303,
+ "shortestApexExecutionNano": 7688684,
+ "longestApexExecutionNano": 95649988
+ },
+ {
+ "batchNumber": 2682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141106329,
+ "shortestRoundTripNano": 85927393,
+ "longestRoundTripNano": 162039303,
+ "averageApexExecutionNano": 58066257,
+ "shortestApexExecutionNano": 12394038,
+ "longestApexExecutionNano": 117851669
+ },
+ {
+ "batchNumber": 2683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143244348,
+ "shortestRoundTripNano": 44470823,
+ "longestRoundTripNano": 167862023,
+ "averageApexExecutionNano": 54964033,
+ "shortestApexExecutionNano": 6034264,
+ "longestApexExecutionNano": 111613817
+ },
+ {
+ "batchNumber": 2684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35698",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153639084,
+ "shortestRoundTripNano": 63648425,
+ "longestRoundTripNano": 186367270,
+ "averageApexExecutionNano": 61828594,
+ "shortestApexExecutionNano": 8657712,
+ "longestApexExecutionNano": 118012344
+ },
+ {
+ "batchNumber": 2685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140791896,
+ "shortestRoundTripNano": 70114131,
+ "longestRoundTripNano": 169301434,
+ "averageApexExecutionNano": 70429421,
+ "shortestApexExecutionNano": 17705396,
+ "longestApexExecutionNano": 112968351
+ },
+ {
+ "batchNumber": 2686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 194518414,
+ "shortestRoundTripNano": 61275392,
+ "longestRoundTripNano": 231098056,
+ "averageApexExecutionNano": 104522727,
+ "shortestApexExecutionNano": 10904418,
+ "longestApexExecutionNano": 176487635
+ },
+ {
+ "batchNumber": 2687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143446960,
+ "shortestRoundTripNano": 72895330,
+ "longestRoundTripNano": 171786066,
+ "averageApexExecutionNano": 43632142,
+ "shortestApexExecutionNano": 6800751,
+ "longestApexExecutionNano": 117062807
+ },
+ {
+ "batchNumber": 2688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140527484,
+ "shortestRoundTripNano": 49010671,
+ "longestRoundTripNano": 178183844,
+ "averageApexExecutionNano": 58746721,
+ "shortestApexExecutionNano": 10379444,
+ "longestApexExecutionNano": 128837057
+ },
+ {
+ "batchNumber": 2689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143729618,
+ "shortestRoundTripNano": 87321472,
+ "longestRoundTripNano": 172656208,
+ "averageApexExecutionNano": 68439871,
+ "shortestApexExecutionNano": 8753513,
+ "longestApexExecutionNano": 120360725
+ },
+ {
+ "batchNumber": 2690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149810846,
+ "shortestRoundTripNano": 63541459,
+ "longestRoundTripNano": 187341618,
+ "averageApexExecutionNano": 43938874,
+ "shortestApexExecutionNano": 7536255,
+ "longestApexExecutionNano": 117763126
+ },
+ {
+ "batchNumber": 2691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156807161,
+ "shortestRoundTripNano": 71258125,
+ "longestRoundTripNano": 191388141,
+ "averageApexExecutionNano": 83781765,
+ "shortestApexExecutionNano": 24759887,
+ "longestApexExecutionNano": 142961900
+ },
+ {
+ "batchNumber": 2692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132877442,
+ "shortestRoundTripNano": 55288248,
+ "longestRoundTripNano": 164993350,
+ "averageApexExecutionNano": 56422678,
+ "shortestApexExecutionNano": 8560676,
+ "longestApexExecutionNano": 122313344
+ },
+ {
+ "batchNumber": 2693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145434349,
+ "shortestRoundTripNano": 74306704,
+ "longestRoundTripNano": 169959993,
+ "averageApexExecutionNano": 61950672,
+ "shortestApexExecutionNano": 8308042,
+ "longestApexExecutionNano": 122144845
+ },
+ {
+ "batchNumber": 2694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132833957,
+ "shortestRoundTripNano": 50553078,
+ "longestRoundTripNano": 163025266,
+ "averageApexExecutionNano": 54093364,
+ "shortestApexExecutionNano": 5669100,
+ "longestApexExecutionNano": 120464165
+ },
+ {
+ "batchNumber": 2695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166722305,
+ "shortestRoundTripNano": 63786123,
+ "longestRoundTripNano": 197921355,
+ "averageApexExecutionNano": 71386437,
+ "shortestApexExecutionNano": 6533903,
+ "longestApexExecutionNano": 137574204
+ },
+ {
+ "batchNumber": 2696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146121010,
+ "shortestRoundTripNano": 60153341,
+ "longestRoundTripNano": 176109171,
+ "averageApexExecutionNano": 59190147,
+ "shortestApexExecutionNano": 9093012,
+ "longestApexExecutionNano": 113701167
+ },
+ {
+ "batchNumber": 2697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114321590,
+ "shortestRoundTripNano": 54696343,
+ "longestRoundTripNano": 144776578,
+ "averageApexExecutionNano": 50479146,
+ "shortestApexExecutionNano": 5916022,
+ "longestApexExecutionNano": 106031948
+ },
+ {
+ "batchNumber": 2698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154548488,
+ "shortestRoundTripNano": 44370105,
+ "longestRoundTripNano": 210339773,
+ "averageApexExecutionNano": 69443242,
+ "shortestApexExecutionNano": 6667408,
+ "longestApexExecutionNano": 130008666
+ },
+ {
+ "batchNumber": 2699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159329855,
+ "shortestRoundTripNano": 72971571,
+ "longestRoundTripNano": 195067405,
+ "averageApexExecutionNano": 47111564,
+ "shortestApexExecutionNano": 7107138,
+ "longestApexExecutionNano": 121450223
+ },
+ {
+ "batchNumber": 2700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141294305,
+ "shortestRoundTripNano": 74553096,
+ "longestRoundTripNano": 172218270,
+ "averageApexExecutionNano": 65946319,
+ "shortestApexExecutionNano": 9790795,
+ "longestApexExecutionNano": 117998723
+ },
+ {
+ "batchNumber": 2701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147762562,
+ "shortestRoundTripNano": 69663675,
+ "longestRoundTripNano": 178051182,
+ "averageApexExecutionNano": 65356532,
+ "shortestApexExecutionNano": 10602581,
+ "longestApexExecutionNano": 132053462
+ },
+ {
+ "batchNumber": 2702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148941770,
+ "shortestRoundTripNano": 64124620,
+ "longestRoundTripNano": 172060061,
+ "averageApexExecutionNano": 57895150,
+ "shortestApexExecutionNano": 6545890,
+ "longestApexExecutionNano": 115079251
+ },
+ {
+ "batchNumber": 2703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147932089,
+ "shortestRoundTripNano": 74034858,
+ "longestRoundTripNano": 176944443,
+ "averageApexExecutionNano": 62484551,
+ "shortestApexExecutionNano": 17994535,
+ "longestApexExecutionNano": 104967600
+ },
+ {
+ "batchNumber": 2704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164268532,
+ "shortestRoundTripNano": 49811071,
+ "longestRoundTripNano": 198755050,
+ "averageApexExecutionNano": 81203482,
+ "shortestApexExecutionNano": 7675079,
+ "longestApexExecutionNano": 162204356
+ },
+ {
+ "batchNumber": 2705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163869974,
+ "shortestRoundTripNano": 85179773,
+ "longestRoundTripNano": 195802306,
+ "averageApexExecutionNano": 67731352,
+ "shortestApexExecutionNano": 18540931,
+ "longestApexExecutionNano": 124209084
+ },
+ {
+ "batchNumber": 2706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131683398,
+ "shortestRoundTripNano": 45520133,
+ "longestRoundTripNano": 159873733,
+ "averageApexExecutionNano": 61170293,
+ "shortestApexExecutionNano": 5836500,
+ "longestApexExecutionNano": 117416471
+ },
+ {
+ "batchNumber": 2707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137712573,
+ "shortestRoundTripNano": 53420933,
+ "longestRoundTripNano": 176989041,
+ "averageApexExecutionNano": 37870151,
+ "shortestApexExecutionNano": 6653182,
+ "longestApexExecutionNano": 102775822
+ },
+ {
+ "batchNumber": 2708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135912342,
+ "shortestRoundTripNano": 55660998,
+ "longestRoundTripNano": 162047942,
+ "averageApexExecutionNano": 63355389,
+ "shortestApexExecutionNano": 10081063,
+ "longestApexExecutionNano": 117576177
+ },
+ {
+ "batchNumber": 2709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147154011,
+ "shortestRoundTripNano": 70809049,
+ "longestRoundTripNano": 182441713,
+ "averageApexExecutionNano": 73197350,
+ "shortestApexExecutionNano": 7142724,
+ "longestApexExecutionNano": 133121334
+ },
+ {
+ "batchNumber": 2710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143624400,
+ "shortestRoundTripNano": 78810355,
+ "longestRoundTripNano": 171929993,
+ "averageApexExecutionNano": 44652355,
+ "shortestApexExecutionNano": 8424534,
+ "longestApexExecutionNano": 105559838
+ },
+ {
+ "batchNumber": 2711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167270763,
+ "shortestRoundTripNano": 52074686,
+ "longestRoundTripNano": 194415929,
+ "averageApexExecutionNano": 71407469,
+ "shortestApexExecutionNano": 8418206,
+ "longestApexExecutionNano": 135317084
+ },
+ {
+ "batchNumber": 2712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138628993,
+ "shortestRoundTripNano": 61227518,
+ "longestRoundTripNano": 162779323,
+ "averageApexExecutionNano": 50764415,
+ "shortestApexExecutionNano": 5430840,
+ "longestApexExecutionNano": 106217158
+ },
+ {
+ "batchNumber": 2713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139647238,
+ "shortestRoundTripNano": 65444939,
+ "longestRoundTripNano": 168614792,
+ "averageApexExecutionNano": 55410111,
+ "shortestApexExecutionNano": 8058024,
+ "longestApexExecutionNano": 120513133
+ },
+ {
+ "batchNumber": 2714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159481556,
+ "shortestRoundTripNano": 56935032,
+ "longestRoundTripNano": 191540654,
+ "averageApexExecutionNano": 54954232,
+ "shortestApexExecutionNano": 9313229,
+ "longestApexExecutionNano": 128795445
+ },
+ {
+ "batchNumber": 2715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148825871,
+ "shortestRoundTripNano": 62412061,
+ "longestRoundTripNano": 186191457,
+ "averageApexExecutionNano": 67431978,
+ "shortestApexExecutionNano": 9260381,
+ "longestApexExecutionNano": 124499076
+ },
+ {
+ "batchNumber": 2716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 233024960,
+ "shortestRoundTripNano": 64668976,
+ "longestRoundTripNano": 264115774,
+ "averageApexExecutionNano": 84241942,
+ "shortestApexExecutionNano": 8024161,
+ "longestApexExecutionNano": 205775305
+ },
+ {
+ "batchNumber": 2717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124726292,
+ "shortestRoundTripNano": 44203217,
+ "longestRoundTripNano": 159796679,
+ "averageApexExecutionNano": 51260332,
+ "shortestApexExecutionNano": 8130214,
+ "longestApexExecutionNano": 121227898
+ },
+ {
+ "batchNumber": 2718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147439541,
+ "shortestRoundTripNano": 74269378,
+ "longestRoundTripNano": 176910149,
+ "averageApexExecutionNano": 60949488,
+ "shortestApexExecutionNano": 9646703,
+ "longestApexExecutionNano": 135599328
+ },
+ {
+ "batchNumber": 2719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121991406,
+ "shortestRoundTripNano": 63424693,
+ "longestRoundTripNano": 148864691,
+ "averageApexExecutionNano": 57077514,
+ "shortestApexExecutionNano": 13573460,
+ "longestApexExecutionNano": 98498226
+ },
+ {
+ "batchNumber": 2720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146173108,
+ "shortestRoundTripNano": 62596188,
+ "longestRoundTripNano": 175984732,
+ "averageApexExecutionNano": 56602673,
+ "shortestApexExecutionNano": 12462764,
+ "longestApexExecutionNano": 104766459
+ },
+ {
+ "batchNumber": 2721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163136128,
+ "shortestRoundTripNano": 98168149,
+ "longestRoundTripNano": 184734085,
+ "averageApexExecutionNano": 79212760,
+ "shortestApexExecutionNano": 15866531,
+ "longestApexExecutionNano": 133331537
+ },
+ {
+ "batchNumber": 2722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145596755,
+ "shortestRoundTripNano": 59244753,
+ "longestRoundTripNano": 176371868,
+ "averageApexExecutionNano": 61995717,
+ "shortestApexExecutionNano": 12095362,
+ "longestApexExecutionNano": 124364486
+ },
+ {
+ "batchNumber": 2723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155567609,
+ "shortestRoundTripNano": 87406335,
+ "longestRoundTripNano": 182669752,
+ "averageApexExecutionNano": 69444173,
+ "shortestApexExecutionNano": 6228662,
+ "longestApexExecutionNano": 119700700
+ },
+ {
+ "batchNumber": 2724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163752514,
+ "shortestRoundTripNano": 103659783,
+ "longestRoundTripNano": 191660860,
+ "averageApexExecutionNano": 72033617,
+ "shortestApexExecutionNano": 7656678,
+ "longestApexExecutionNano": 121892488
+ },
+ {
+ "batchNumber": 2725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143303475,
+ "shortestRoundTripNano": 57719532,
+ "longestRoundTripNano": 173600480,
+ "averageApexExecutionNano": 55164997,
+ "shortestApexExecutionNano": 8596815,
+ "longestApexExecutionNano": 132428878
+ },
+ {
+ "batchNumber": 2726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155556640,
+ "shortestRoundTripNano": 86427294,
+ "longestRoundTripNano": 182879959,
+ "averageApexExecutionNano": 71718583,
+ "shortestApexExecutionNano": 10762742,
+ "longestApexExecutionNano": 125413254
+ },
+ {
+ "batchNumber": 2727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134073365,
+ "shortestRoundTripNano": 52869289,
+ "longestRoundTripNano": 159612812,
+ "averageApexExecutionNano": 59211547,
+ "shortestApexExecutionNano": 12603946,
+ "longestApexExecutionNano": 114760297
+ },
+ {
+ "batchNumber": 2728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154324272,
+ "shortestRoundTripNano": 54013813,
+ "longestRoundTripNano": 189621485,
+ "averageApexExecutionNano": 67003044,
+ "shortestApexExecutionNano": 8371686,
+ "longestApexExecutionNano": 134748462
+ },
+ {
+ "batchNumber": 2729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131956990,
+ "shortestRoundTripNano": 56302004,
+ "longestRoundTripNano": 165101499,
+ "averageApexExecutionNano": 38878749,
+ "shortestApexExecutionNano": 7039241,
+ "longestApexExecutionNano": 102456787
+ },
+ {
+ "batchNumber": 2730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158078232,
+ "shortestRoundTripNano": 61222359,
+ "longestRoundTripNano": 184856834,
+ "averageApexExecutionNano": 62438825,
+ "shortestApexExecutionNano": 8596320,
+ "longestApexExecutionNano": 128125934
+ },
+ {
+ "batchNumber": 2731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147134275,
+ "shortestRoundTripNano": 81178700,
+ "longestRoundTripNano": 173723695,
+ "averageApexExecutionNano": 59199490,
+ "shortestApexExecutionNano": 8773941,
+ "longestApexExecutionNano": 115995967
+ },
+ {
+ "batchNumber": 2732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139473753,
+ "shortestRoundTripNano": 69567765,
+ "longestRoundTripNano": 168094638,
+ "averageApexExecutionNano": 56922276,
+ "shortestApexExecutionNano": 7081868,
+ "longestApexExecutionNano": 114580015
+ },
+ {
+ "batchNumber": 2733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142176043,
+ "shortestRoundTripNano": 48134125,
+ "longestRoundTripNano": 166583559,
+ "averageApexExecutionNano": 46283102,
+ "shortestApexExecutionNano": 9546581,
+ "longestApexExecutionNano": 97945370
+ },
+ {
+ "batchNumber": 2734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160360891,
+ "shortestRoundTripNano": 70707689,
+ "longestRoundTripNano": 187633034,
+ "averageApexExecutionNano": 69190740,
+ "shortestApexExecutionNano": 6271745,
+ "longestApexExecutionNano": 139944038
+ },
+ {
+ "batchNumber": 2735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159665398,
+ "shortestRoundTripNano": 69772161,
+ "longestRoundTripNano": 195026131,
+ "averageApexExecutionNano": 86313391,
+ "shortestApexExecutionNano": 14466366,
+ "longestApexExecutionNano": 149373762
+ },
+ {
+ "batchNumber": 2736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134612018,
+ "shortestRoundTripNano": 49873580,
+ "longestRoundTripNano": 166651078,
+ "averageApexExecutionNano": 51176323,
+ "shortestApexExecutionNano": 5506481,
+ "longestApexExecutionNano": 116867786
+ },
+ {
+ "batchNumber": 2737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149978979,
+ "shortestRoundTripNano": 70795501,
+ "longestRoundTripNano": 180819217,
+ "averageApexExecutionNano": 68319174,
+ "shortestApexExecutionNano": 14534249,
+ "longestApexExecutionNano": 119949194
+ },
+ {
+ "batchNumber": 2738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165009857,
+ "shortestRoundTripNano": 71675237,
+ "longestRoundTripNano": 197146533,
+ "averageApexExecutionNano": 83725720,
+ "shortestApexExecutionNano": 15789376,
+ "longestApexExecutionNano": 143954882
+ },
+ {
+ "batchNumber": 2739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150760526,
+ "shortestRoundTripNano": 50027035,
+ "longestRoundTripNano": 180209971,
+ "averageApexExecutionNano": 63669487,
+ "shortestApexExecutionNano": 8104897,
+ "longestApexExecutionNano": 131304479
+ },
+ {
+ "batchNumber": 2740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137545376,
+ "shortestRoundTripNano": 63285697,
+ "longestRoundTripNano": 165868142,
+ "averageApexExecutionNano": 64900223,
+ "shortestApexExecutionNano": 9247735,
+ "longestApexExecutionNano": 116506649
+ },
+ {
+ "batchNumber": 2741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138206412,
+ "shortestRoundTripNano": 47058820,
+ "longestRoundTripNano": 171727903,
+ "averageApexExecutionNano": 59302844,
+ "shortestApexExecutionNano": 11262012,
+ "longestApexExecutionNano": 109259212
+ },
+ {
+ "batchNumber": 2742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128623200,
+ "shortestRoundTripNano": 42700147,
+ "longestRoundTripNano": 154842005,
+ "averageApexExecutionNano": 53967592,
+ "shortestApexExecutionNano": 6803946,
+ "longestApexExecutionNano": 105469828
+ },
+ {
+ "batchNumber": 2743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143758489,
+ "shortestRoundTripNano": 44939711,
+ "longestRoundTripNano": 172402022,
+ "averageApexExecutionNano": 53801151,
+ "shortestApexExecutionNano": 6739884,
+ "longestApexExecutionNano": 122563438
+ },
+ {
+ "batchNumber": 2744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142545240,
+ "shortestRoundTripNano": 58219148,
+ "longestRoundTripNano": 171458510,
+ "averageApexExecutionNano": 61420024,
+ "shortestApexExecutionNano": 9885880,
+ "longestApexExecutionNano": 114584368
+ },
+ {
+ "batchNumber": 2745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130465645,
+ "shortestRoundTripNano": 49527102,
+ "longestRoundTripNano": 161709197,
+ "averageApexExecutionNano": 55017316,
+ "shortestApexExecutionNano": 9767194,
+ "longestApexExecutionNano": 122682647
+ },
+ {
+ "batchNumber": 2746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124751710,
+ "shortestRoundTripNano": 65818601,
+ "longestRoundTripNano": 153174887,
+ "averageApexExecutionNano": 56017449,
+ "shortestApexExecutionNano": 12781739,
+ "longestApexExecutionNano": 101594571
+ },
+ {
+ "batchNumber": 2747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128443782,
+ "shortestRoundTripNano": 39759827,
+ "longestRoundTripNano": 161776516,
+ "averageApexExecutionNano": 46159387,
+ "shortestApexExecutionNano": 8977203,
+ "longestApexExecutionNano": 98937102
+ },
+ {
+ "batchNumber": 2748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160235362,
+ "shortestRoundTripNano": 66882881,
+ "longestRoundTripNano": 191517209,
+ "averageApexExecutionNano": 65290459,
+ "shortestApexExecutionNano": 15822465,
+ "longestApexExecutionNano": 113709406
+ },
+ {
+ "batchNumber": 2749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127174648,
+ "shortestRoundTripNano": 58140771,
+ "longestRoundTripNano": 156311490,
+ "averageApexExecutionNano": 35846855,
+ "shortestApexExecutionNano": 6595397,
+ "longestApexExecutionNano": 105354331
+ },
+ {
+ "batchNumber": 2750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137754030,
+ "shortestRoundTripNano": 62662081,
+ "longestRoundTripNano": 166188050,
+ "averageApexExecutionNano": 48781327,
+ "shortestApexExecutionNano": 5379158,
+ "longestApexExecutionNano": 120879236
+ },
+ {
+ "batchNumber": 2751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164750409,
+ "shortestRoundTripNano": 91543146,
+ "longestRoundTripNano": 192044451,
+ "averageApexExecutionNano": 63964852,
+ "shortestApexExecutionNano": 10294185,
+ "longestApexExecutionNano": 127079263
+ },
+ {
+ "batchNumber": 2752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177738026,
+ "shortestRoundTripNano": 48158950,
+ "longestRoundTripNano": 232466385,
+ "averageApexExecutionNano": 82974680,
+ "shortestApexExecutionNano": 9702367,
+ "longestApexExecutionNano": 143647200
+ },
+ {
+ "batchNumber": 2753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148006545,
+ "shortestRoundTripNano": 66025971,
+ "longestRoundTripNano": 170734395,
+ "averageApexExecutionNano": 56120730,
+ "shortestApexExecutionNano": 9061514,
+ "longestApexExecutionNano": 102506872
+ },
+ {
+ "batchNumber": 2754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142393550,
+ "shortestRoundTripNano": 54393214,
+ "longestRoundTripNano": 173089187,
+ "averageApexExecutionNano": 46486443,
+ "shortestApexExecutionNano": 6541210,
+ "longestApexExecutionNano": 107742886
+ },
+ {
+ "batchNumber": 2755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144120447,
+ "shortestRoundTripNano": 78426809,
+ "longestRoundTripNano": 172356126,
+ "averageApexExecutionNano": 62370494,
+ "shortestApexExecutionNano": 7674095,
+ "longestApexExecutionNano": 128221230
+ },
+ {
+ "batchNumber": 2756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140922844,
+ "shortestRoundTripNano": 58642647,
+ "longestRoundTripNano": 168413551,
+ "averageApexExecutionNano": 56339139,
+ "shortestApexExecutionNano": 6866718,
+ "longestApexExecutionNano": 114373960
+ },
+ {
+ "batchNumber": 2757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157463295,
+ "shortestRoundTripNano": 83082449,
+ "longestRoundTripNano": 178641978,
+ "averageApexExecutionNano": 71926005,
+ "shortestApexExecutionNano": 14782932,
+ "longestApexExecutionNano": 121427266
+ },
+ {
+ "batchNumber": 2758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142347262,
+ "shortestRoundTripNano": 68012476,
+ "longestRoundTripNano": 168521596,
+ "averageApexExecutionNano": 59817487,
+ "shortestApexExecutionNano": 8158900,
+ "longestApexExecutionNano": 126156153
+ },
+ {
+ "batchNumber": 2759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165498406,
+ "shortestRoundTripNano": 49628454,
+ "longestRoundTripNano": 206842245,
+ "averageApexExecutionNano": 49307213,
+ "shortestApexExecutionNano": 9567963,
+ "longestApexExecutionNano": 136892097
+ },
+ {
+ "batchNumber": 2760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154591019,
+ "shortestRoundTripNano": 81055086,
+ "longestRoundTripNano": 176746383,
+ "averageApexExecutionNano": 77229984,
+ "shortestApexExecutionNano": 11873780,
+ "longestApexExecutionNano": 134815535
+ },
+ {
+ "batchNumber": 2761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165356737,
+ "shortestRoundTripNano": 71739423,
+ "longestRoundTripNano": 192553246,
+ "averageApexExecutionNano": 70858868,
+ "shortestApexExecutionNano": 8275229,
+ "longestApexExecutionNano": 139110256
+ },
+ {
+ "batchNumber": 2762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134730966,
+ "shortestRoundTripNano": 67457215,
+ "longestRoundTripNano": 164941177,
+ "averageApexExecutionNano": 54390507,
+ "shortestApexExecutionNano": 7165086,
+ "longestApexExecutionNano": 119915051
+ },
+ {
+ "batchNumber": 2763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184722286,
+ "shortestRoundTripNano": 65568972,
+ "longestRoundTripNano": 218344702,
+ "averageApexExecutionNano": 88955878,
+ "shortestApexExecutionNano": 12646748,
+ "longestApexExecutionNano": 152263088
+ },
+ {
+ "batchNumber": 2764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146393764,
+ "shortestRoundTripNano": 69644445,
+ "longestRoundTripNano": 186583267,
+ "averageApexExecutionNano": 63785431,
+ "shortestApexExecutionNano": 7403263,
+ "longestApexExecutionNano": 124171908
+ },
+ {
+ "batchNumber": 2765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155122168,
+ "shortestRoundTripNano": 60184488,
+ "longestRoundTripNano": 220384897,
+ "averageApexExecutionNano": 68213786,
+ "shortestApexExecutionNano": 7241515,
+ "longestApexExecutionNano": 135235589
+ },
+ {
+ "batchNumber": 2766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148853177,
+ "shortestRoundTripNano": 80542405,
+ "longestRoundTripNano": 177375217,
+ "averageApexExecutionNano": 58303692,
+ "shortestApexExecutionNano": 11874334,
+ "longestApexExecutionNano": 132083407
+ },
+ {
+ "batchNumber": 2767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135837923,
+ "shortestRoundTripNano": 38891637,
+ "longestRoundTripNano": 176609742,
+ "averageApexExecutionNano": 57086043,
+ "shortestApexExecutionNano": 7746451,
+ "longestApexExecutionNano": 110705107
+ },
+ {
+ "batchNumber": 2768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140389071,
+ "shortestRoundTripNano": 74550632,
+ "longestRoundTripNano": 177452863,
+ "averageApexExecutionNano": 56062101,
+ "shortestApexExecutionNano": 6510936,
+ "longestApexExecutionNano": 126593786
+ },
+ {
+ "batchNumber": 2769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164762517,
+ "shortestRoundTripNano": 58209941,
+ "longestRoundTripNano": 202017075,
+ "averageApexExecutionNano": 87594971,
+ "shortestApexExecutionNano": 10935329,
+ "longestApexExecutionNano": 160436545
+ },
+ {
+ "batchNumber": 2770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167522643,
+ "shortestRoundTripNano": 85819376,
+ "longestRoundTripNano": 199122306,
+ "averageApexExecutionNano": 84127574,
+ "shortestApexExecutionNano": 12062100,
+ "longestApexExecutionNano": 150738586
+ },
+ {
+ "batchNumber": 2771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158711705,
+ "shortestRoundTripNano": 64059140,
+ "longestRoundTripNano": 198886089,
+ "averageApexExecutionNano": 50412704,
+ "shortestApexExecutionNano": 7495378,
+ "longestApexExecutionNano": 130118419
+ },
+ {
+ "batchNumber": 2772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165276510,
+ "shortestRoundTripNano": 79673512,
+ "longestRoundTripNano": 192599541,
+ "averageApexExecutionNano": 66638693,
+ "shortestApexExecutionNano": 6981354,
+ "longestApexExecutionNano": 138532564
+ },
+ {
+ "batchNumber": 2773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158997717,
+ "shortestRoundTripNano": 57900202,
+ "longestRoundTripNano": 188273284,
+ "averageApexExecutionNano": 63547265,
+ "shortestApexExecutionNano": 9977600,
+ "longestApexExecutionNano": 136075732
+ },
+ {
+ "batchNumber": 2774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143513897,
+ "shortestRoundTripNano": 73155223,
+ "longestRoundTripNano": 177065863,
+ "averageApexExecutionNano": 62097043,
+ "shortestApexExecutionNano": 8755638,
+ "longestApexExecutionNano": 128044837
+ },
+ {
+ "batchNumber": 2775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142585011,
+ "shortestRoundTripNano": 77680126,
+ "longestRoundTripNano": 170712792,
+ "averageApexExecutionNano": 64426651,
+ "shortestApexExecutionNano": 9934422,
+ "longestApexExecutionNano": 117718590
+ },
+ {
+ "batchNumber": 2776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133910568,
+ "shortestRoundTripNano": 61642258,
+ "longestRoundTripNano": 163658908,
+ "averageApexExecutionNano": 52624392,
+ "shortestApexExecutionNano": 6572668,
+ "longestApexExecutionNano": 116215384
+ },
+ {
+ "batchNumber": 2777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167248085,
+ "shortestRoundTripNano": 75583112,
+ "longestRoundTripNano": 196915310,
+ "averageApexExecutionNano": 71905681,
+ "shortestApexExecutionNano": 26491308,
+ "longestApexExecutionNano": 128099246
+ },
+ {
+ "batchNumber": 2778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161954633,
+ "shortestRoundTripNano": 90014177,
+ "longestRoundTripNano": 192348362,
+ "averageApexExecutionNano": 85130264,
+ "shortestApexExecutionNano": 8705415,
+ "longestApexExecutionNano": 142576442
+ },
+ {
+ "batchNumber": 2779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153329048,
+ "shortestRoundTripNano": 74546869,
+ "longestRoundTripNano": 179720538,
+ "averageApexExecutionNano": 59926943,
+ "shortestApexExecutionNano": 12035657,
+ "longestApexExecutionNano": 125089111
+ },
+ {
+ "batchNumber": 2780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149575650,
+ "shortestRoundTripNano": 33279772,
+ "longestRoundTripNano": 175681875,
+ "averageApexExecutionNano": 64516460,
+ "shortestApexExecutionNano": 8117567,
+ "longestApexExecutionNano": 117003150
+ },
+ {
+ "batchNumber": 2781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130352905,
+ "shortestRoundTripNano": 59879693,
+ "longestRoundTripNano": 154054113,
+ "averageApexExecutionNano": 49850667,
+ "shortestApexExecutionNano": 8503752,
+ "longestApexExecutionNano": 96120944
+ },
+ {
+ "batchNumber": 2782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171793308,
+ "shortestRoundTripNano": 64030286,
+ "longestRoundTripNano": 228686554,
+ "averageApexExecutionNano": 64932237,
+ "shortestApexExecutionNano": 10597050,
+ "longestApexExecutionNano": 141178608
+ },
+ {
+ "batchNumber": 2783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169138176,
+ "shortestRoundTripNano": 83381444,
+ "longestRoundTripNano": 194813773,
+ "averageApexExecutionNano": 68466840,
+ "shortestApexExecutionNano": 8582633,
+ "longestApexExecutionNano": 152186556
+ },
+ {
+ "batchNumber": 2784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140140661,
+ "shortestRoundTripNano": 81707259,
+ "longestRoundTripNano": 175207545,
+ "averageApexExecutionNano": 56609341,
+ "shortestApexExecutionNano": 11566305,
+ "longestApexExecutionNano": 115602658
+ },
+ {
+ "batchNumber": 2785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134127005,
+ "shortestRoundTripNano": 73194126,
+ "longestRoundTripNano": 161515341,
+ "averageApexExecutionNano": 59281670,
+ "shortestApexExecutionNano": 6850186,
+ "longestApexExecutionNano": 116750868
+ },
+ {
+ "batchNumber": 2786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147031258,
+ "shortestRoundTripNano": 64883953,
+ "longestRoundTripNano": 175107762,
+ "averageApexExecutionNano": 47882555,
+ "shortestApexExecutionNano": 5833994,
+ "longestApexExecutionNano": 120767540
+ },
+ {
+ "batchNumber": 2787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139407527,
+ "shortestRoundTripNano": 60664611,
+ "longestRoundTripNano": 175957285,
+ "averageApexExecutionNano": 54923763,
+ "shortestApexExecutionNano": 6200990,
+ "longestApexExecutionNano": 123393780
+ },
+ {
+ "batchNumber": 2788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147954742,
+ "shortestRoundTripNano": 74224749,
+ "longestRoundTripNano": 175700103,
+ "averageApexExecutionNano": 61777845,
+ "shortestApexExecutionNano": 8594468,
+ "longestApexExecutionNano": 115013309
+ },
+ {
+ "batchNumber": 2789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140550145,
+ "shortestRoundTripNano": 48286550,
+ "longestRoundTripNano": 167560354,
+ "averageApexExecutionNano": 65612727,
+ "shortestApexExecutionNano": 7902180,
+ "longestApexExecutionNano": 133068857
+ },
+ {
+ "batchNumber": 2790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122417815,
+ "shortestRoundTripNano": 51699716,
+ "longestRoundTripNano": 152988414,
+ "averageApexExecutionNano": 43184826,
+ "shortestApexExecutionNano": 6208258,
+ "longestApexExecutionNano": 91082613
+ },
+ {
+ "batchNumber": 2791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143500811,
+ "shortestRoundTripNano": 55275146,
+ "longestRoundTripNano": 169673835,
+ "averageApexExecutionNano": 69294107,
+ "shortestApexExecutionNano": 11407440,
+ "longestApexExecutionNano": 115204632
+ },
+ {
+ "batchNumber": 2792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149165167,
+ "shortestRoundTripNano": 56424863,
+ "longestRoundTripNano": 174375843,
+ "averageApexExecutionNano": 67687854,
+ "shortestApexExecutionNano": 9791704,
+ "longestApexExecutionNano": 114933632
+ },
+ {
+ "batchNumber": 2793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151346486,
+ "shortestRoundTripNano": 67848384,
+ "longestRoundTripNano": 180588351,
+ "averageApexExecutionNano": 54313976,
+ "shortestApexExecutionNano": 8634372,
+ "longestApexExecutionNano": 134546414
+ },
+ {
+ "batchNumber": 2794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151784026,
+ "shortestRoundTripNano": 59097369,
+ "longestRoundTripNano": 180052561,
+ "averageApexExecutionNano": 61498896,
+ "shortestApexExecutionNano": 8874831,
+ "longestApexExecutionNano": 132442196
+ },
+ {
+ "batchNumber": 2795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135603703,
+ "shortestRoundTripNano": 70135289,
+ "longestRoundTripNano": 157716774,
+ "averageApexExecutionNano": 61187236,
+ "shortestApexExecutionNano": 12158312,
+ "longestApexExecutionNano": 94723300
+ },
+ {
+ "batchNumber": 2796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156056089,
+ "shortestRoundTripNano": 76977261,
+ "longestRoundTripNano": 192422802,
+ "averageApexExecutionNano": 54685260,
+ "shortestApexExecutionNano": 10286539,
+ "longestApexExecutionNano": 139789852
+ },
+ {
+ "batchNumber": 2797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159620746,
+ "shortestRoundTripNano": 61305062,
+ "longestRoundTripNano": 189490911,
+ "averageApexExecutionNano": 70200904,
+ "shortestApexExecutionNano": 7124417,
+ "longestApexExecutionNano": 125637978
+ },
+ {
+ "batchNumber": 2798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160423347,
+ "shortestRoundTripNano": 72637667,
+ "longestRoundTripNano": 201787339,
+ "averageApexExecutionNano": 74659989,
+ "shortestApexExecutionNano": 19494821,
+ "longestApexExecutionNano": 127709893
+ },
+ {
+ "batchNumber": 2799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135452572,
+ "shortestRoundTripNano": 41205045,
+ "longestRoundTripNano": 163228688,
+ "averageApexExecutionNano": 56865281,
+ "shortestApexExecutionNano": 6522360,
+ "longestApexExecutionNano": 127804511
+ },
+ {
+ "batchNumber": 2800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149127715,
+ "shortestRoundTripNano": 54101275,
+ "longestRoundTripNano": 181047585,
+ "averageApexExecutionNano": 57775015,
+ "shortestApexExecutionNano": 9193732,
+ "longestApexExecutionNano": 117800992
+ },
+ {
+ "batchNumber": 2801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149632273,
+ "shortestRoundTripNano": 39905629,
+ "longestRoundTripNano": 183675690,
+ "averageApexExecutionNano": 57387863,
+ "shortestApexExecutionNano": 7146007,
+ "longestApexExecutionNano": 132280400
+ },
+ {
+ "batchNumber": 2802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154147077,
+ "shortestRoundTripNano": 64005567,
+ "longestRoundTripNano": 183235879,
+ "averageApexExecutionNano": 64112867,
+ "shortestApexExecutionNano": 8719148,
+ "longestApexExecutionNano": 131142309
+ },
+ {
+ "batchNumber": 2803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161725594,
+ "shortestRoundTripNano": 69453359,
+ "longestRoundTripNano": 199236493,
+ "averageApexExecutionNano": 47284010,
+ "shortestApexExecutionNano": 7979906,
+ "longestApexExecutionNano": 88589825
+ },
+ {
+ "batchNumber": 2804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139079185,
+ "shortestRoundTripNano": 64734486,
+ "longestRoundTripNano": 188193869,
+ "averageApexExecutionNano": 62241310,
+ "shortestApexExecutionNano": 6397273,
+ "longestApexExecutionNano": 125098299
+ },
+ {
+ "batchNumber": 2805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143799017,
+ "shortestRoundTripNano": 69108301,
+ "longestRoundTripNano": 177181842,
+ "averageApexExecutionNano": 67964709,
+ "shortestApexExecutionNano": 11937214,
+ "longestApexExecutionNano": 130579575
+ },
+ {
+ "batchNumber": 2806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133835066,
+ "shortestRoundTripNano": 64653281,
+ "longestRoundTripNano": 177925840,
+ "averageApexExecutionNano": 56605001,
+ "shortestApexExecutionNano": 5437101,
+ "longestApexExecutionNano": 117555891
+ },
+ {
+ "batchNumber": 2807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172916011,
+ "shortestRoundTripNano": 70671887,
+ "longestRoundTripNano": 208281563,
+ "averageApexExecutionNano": 77642151,
+ "shortestApexExecutionNano": 11038631,
+ "longestApexExecutionNano": 129413201
+ },
+ {
+ "batchNumber": 2808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147321797,
+ "shortestRoundTripNano": 48204077,
+ "longestRoundTripNano": 174980032,
+ "averageApexExecutionNano": 60746092,
+ "shortestApexExecutionNano": 8384063,
+ "longestApexExecutionNano": 121489511
+ },
+ {
+ "batchNumber": 2809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134734130,
+ "shortestRoundTripNano": 68365694,
+ "longestRoundTripNano": 163681735,
+ "averageApexExecutionNano": 55415442,
+ "shortestApexExecutionNano": 11216020,
+ "longestApexExecutionNano": 128733338
+ },
+ {
+ "batchNumber": 2810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155703785,
+ "shortestRoundTripNano": 69263240,
+ "longestRoundTripNano": 186246063,
+ "averageApexExecutionNano": 61661784,
+ "shortestApexExecutionNano": 8796989,
+ "longestApexExecutionNano": 147631950
+ },
+ {
+ "batchNumber": 2811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150141377,
+ "shortestRoundTripNano": 73358813,
+ "longestRoundTripNano": 180440314,
+ "averageApexExecutionNano": 72620420,
+ "shortestApexExecutionNano": 8881998,
+ "longestApexExecutionNano": 136512453
+ },
+ {
+ "batchNumber": 2812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162771951,
+ "shortestRoundTripNano": 56607141,
+ "longestRoundTripNano": 196055469,
+ "averageApexExecutionNano": 64360550,
+ "shortestApexExecutionNano": 11544351,
+ "longestApexExecutionNano": 134622677
+ },
+ {
+ "batchNumber": 2813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168821233,
+ "shortestRoundTripNano": 56662411,
+ "longestRoundTripNano": 199472119,
+ "averageApexExecutionNano": 67602750,
+ "shortestApexExecutionNano": 9281092,
+ "longestApexExecutionNano": 130727044
+ },
+ {
+ "batchNumber": 2814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152372599,
+ "shortestRoundTripNano": 61572516,
+ "longestRoundTripNano": 190584857,
+ "averageApexExecutionNano": 60500184,
+ "shortestApexExecutionNano": 9326334,
+ "longestApexExecutionNano": 120147478
+ },
+ {
+ "batchNumber": 2815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146605829,
+ "shortestRoundTripNano": 29489708,
+ "longestRoundTripNano": 177834959,
+ "averageApexExecutionNano": 65107274,
+ "shortestApexExecutionNano": 6910142,
+ "longestApexExecutionNano": 117561553
+ },
+ {
+ "batchNumber": 2816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143652337,
+ "shortestRoundTripNano": 62727317,
+ "longestRoundTripNano": 175371919,
+ "averageApexExecutionNano": 57843613,
+ "shortestApexExecutionNano": 6274683,
+ "longestApexExecutionNano": 128700544
+ },
+ {
+ "batchNumber": 2817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145284933,
+ "shortestRoundTripNano": 82541250,
+ "longestRoundTripNano": 174506980,
+ "averageApexExecutionNano": 66140016,
+ "shortestApexExecutionNano": 7252258,
+ "longestApexExecutionNano": 128731895
+ },
+ {
+ "batchNumber": 2818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146641554,
+ "shortestRoundTripNano": 68164830,
+ "longestRoundTripNano": 180949133,
+ "averageApexExecutionNano": 53153858,
+ "shortestApexExecutionNano": 7125753,
+ "longestApexExecutionNano": 112310816
+ },
+ {
+ "batchNumber": 2819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149461793,
+ "shortestRoundTripNano": 82627825,
+ "longestRoundTripNano": 174425226,
+ "averageApexExecutionNano": 74547758,
+ "shortestApexExecutionNano": 12234564,
+ "longestApexExecutionNano": 129782338
+ },
+ {
+ "batchNumber": 2820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127721354,
+ "shortestRoundTripNano": 55615223,
+ "longestRoundTripNano": 163876856,
+ "averageApexExecutionNano": 62132202,
+ "shortestApexExecutionNano": 8450986,
+ "longestApexExecutionNano": 116051871
+ },
+ {
+ "batchNumber": 2821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145511895,
+ "shortestRoundTripNano": 38991516,
+ "longestRoundTripNano": 175988277,
+ "averageApexExecutionNano": 69278510,
+ "shortestApexExecutionNano": 13190274,
+ "longestApexExecutionNano": 120867553
+ },
+ {
+ "batchNumber": 2822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134323787,
+ "shortestRoundTripNano": 58924750,
+ "longestRoundTripNano": 159711473,
+ "averageApexExecutionNano": 56231127,
+ "shortestApexExecutionNano": 7115683,
+ "longestApexExecutionNano": 113375803
+ },
+ {
+ "batchNumber": 2823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138384719,
+ "shortestRoundTripNano": 62359495,
+ "longestRoundTripNano": 175864454,
+ "averageApexExecutionNano": 47650209,
+ "shortestApexExecutionNano": 9327146,
+ "longestApexExecutionNano": 126704551
+ },
+ {
+ "batchNumber": 2824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166004390,
+ "shortestRoundTripNano": 69263523,
+ "longestRoundTripNano": 201444634,
+ "averageApexExecutionNano": 91621915,
+ "shortestApexExecutionNano": 24754761,
+ "longestApexExecutionNano": 148228832
+ },
+ {
+ "batchNumber": 2825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161602984,
+ "shortestRoundTripNano": 54677072,
+ "longestRoundTripNano": 188699154,
+ "averageApexExecutionNano": 68881222,
+ "shortestApexExecutionNano": 11605588,
+ "longestApexExecutionNano": 134330856
+ },
+ {
+ "batchNumber": 2826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137648399,
+ "shortestRoundTripNano": 63120058,
+ "longestRoundTripNano": 160433668,
+ "averageApexExecutionNano": 48392227,
+ "shortestApexExecutionNano": 8254101,
+ "longestApexExecutionNano": 104670956
+ },
+ {
+ "batchNumber": 2827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151148934,
+ "shortestRoundTripNano": 84047245,
+ "longestRoundTripNano": 180576379,
+ "averageApexExecutionNano": 67013704,
+ "shortestApexExecutionNano": 11632168,
+ "longestApexExecutionNano": 117179741
+ },
+ {
+ "batchNumber": 2828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129422064,
+ "shortestRoundTripNano": 64994121,
+ "longestRoundTripNano": 154520821,
+ "averageApexExecutionNano": 54476595,
+ "shortestApexExecutionNano": 12921764,
+ "longestApexExecutionNano": 107773445
+ },
+ {
+ "batchNumber": 2829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131010576,
+ "shortestRoundTripNano": 54283210,
+ "longestRoundTripNano": 162012883,
+ "averageApexExecutionNano": 51231994,
+ "shortestApexExecutionNano": 5614885,
+ "longestApexExecutionNano": 105174717
+ },
+ {
+ "batchNumber": 2830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139084321,
+ "shortestRoundTripNano": 44716894,
+ "longestRoundTripNano": 177574701,
+ "averageApexExecutionNano": 63462449,
+ "shortestApexExecutionNano": 9790951,
+ "longestApexExecutionNano": 137048161
+ },
+ {
+ "batchNumber": 2831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138369472,
+ "shortestRoundTripNano": 62016348,
+ "longestRoundTripNano": 170922791,
+ "averageApexExecutionNano": 52319743,
+ "shortestApexExecutionNano": 7827777,
+ "longestApexExecutionNano": 110115690
+ },
+ {
+ "batchNumber": 2832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157372640,
+ "shortestRoundTripNano": 54912012,
+ "longestRoundTripNano": 206295015,
+ "averageApexExecutionNano": 65456022,
+ "shortestApexExecutionNano": 10898090,
+ "longestApexExecutionNano": 145371901
+ },
+ {
+ "batchNumber": 2833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35764",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157343841,
+ "shortestRoundTripNano": 52446844,
+ "longestRoundTripNano": 193615824,
+ "averageApexExecutionNano": 78086045,
+ "shortestApexExecutionNano": 13702579,
+ "longestApexExecutionNano": 125541896
+ },
+ {
+ "batchNumber": 2834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35764",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146498222,
+ "shortestRoundTripNano": 62949173,
+ "longestRoundTripNano": 177774977,
+ "averageApexExecutionNano": 71843556,
+ "shortestApexExecutionNano": 7239160,
+ "longestApexExecutionNano": 137678165
+ },
+ {
+ "batchNumber": 2835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140085553,
+ "shortestRoundTripNano": 54182833,
+ "longestRoundTripNano": 171579896,
+ "averageApexExecutionNano": 54020284,
+ "shortestApexExecutionNano": 7068991,
+ "longestApexExecutionNano": 99995547
+ },
+ {
+ "batchNumber": 2836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137062945,
+ "shortestRoundTripNano": 65407454,
+ "longestRoundTripNano": 171579307,
+ "averageApexExecutionNano": 62031886,
+ "shortestApexExecutionNano": 5590645,
+ "longestApexExecutionNano": 110996194
+ },
+ {
+ "batchNumber": 2837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139051196,
+ "shortestRoundTripNano": 68504213,
+ "longestRoundTripNano": 169845406,
+ "averageApexExecutionNano": 58936706,
+ "shortestApexExecutionNano": 16348485,
+ "longestApexExecutionNano": 114118205
+ },
+ {
+ "batchNumber": 2838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137786002,
+ "shortestRoundTripNano": 68738914,
+ "longestRoundTripNano": 163415876,
+ "averageApexExecutionNano": 58374812,
+ "shortestApexExecutionNano": 14748356,
+ "longestApexExecutionNano": 114623486
+ },
+ {
+ "batchNumber": 2839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132853823,
+ "shortestRoundTripNano": 65356347,
+ "longestRoundTripNano": 160366131,
+ "averageApexExecutionNano": 45634205,
+ "shortestApexExecutionNano": 8557653,
+ "longestApexExecutionNano": 110388512
+ },
+ {
+ "batchNumber": 2840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182116488,
+ "shortestRoundTripNano": 43244576,
+ "longestRoundTripNano": 221554400,
+ "averageApexExecutionNano": 80594525,
+ "shortestApexExecutionNano": 5731464,
+ "longestApexExecutionNano": 179002479
+ },
+ {
+ "batchNumber": 2841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147563215,
+ "shortestRoundTripNano": 57468306,
+ "longestRoundTripNano": 176633939,
+ "averageApexExecutionNano": 63413161,
+ "shortestApexExecutionNano": 9663787,
+ "longestApexExecutionNano": 117138858
+ },
+ {
+ "batchNumber": 2842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153080527,
+ "shortestRoundTripNano": 67453424,
+ "longestRoundTripNano": 185364252,
+ "averageApexExecutionNano": 48716548,
+ "shortestApexExecutionNano": 7672582,
+ "longestApexExecutionNano": 108351756
+ },
+ {
+ "batchNumber": 2843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137392972,
+ "shortestRoundTripNano": 77954479,
+ "longestRoundTripNano": 172027792,
+ "averageApexExecutionNano": 63458916,
+ "shortestApexExecutionNano": 6984838,
+ "longestApexExecutionNano": 118842367
+ },
+ {
+ "batchNumber": 2844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131306643,
+ "shortestRoundTripNano": 69629396,
+ "longestRoundTripNano": 156191378,
+ "averageApexExecutionNano": 60947206,
+ "shortestApexExecutionNano": 10156542,
+ "longestApexExecutionNano": 114318743
+ },
+ {
+ "batchNumber": 2845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152436899,
+ "shortestRoundTripNano": 65532528,
+ "longestRoundTripNano": 185447459,
+ "averageApexExecutionNano": 55188222,
+ "shortestApexExecutionNano": 9736816,
+ "longestApexExecutionNano": 102022666
+ },
+ {
+ "batchNumber": 2846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136976787,
+ "shortestRoundTripNano": 60688850,
+ "longestRoundTripNano": 166780409,
+ "averageApexExecutionNano": 50951659,
+ "shortestApexExecutionNano": 7068440,
+ "longestApexExecutionNano": 115151322
+ },
+ {
+ "batchNumber": 2847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160789656,
+ "shortestRoundTripNano": 50740963,
+ "longestRoundTripNano": 196804203,
+ "averageApexExecutionNano": 66981913,
+ "shortestApexExecutionNano": 15444427,
+ "longestApexExecutionNano": 146709618
+ },
+ {
+ "batchNumber": 2848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181924818,
+ "shortestRoundTripNano": 70490590,
+ "longestRoundTripNano": 215982144,
+ "averageApexExecutionNano": 81861630,
+ "shortestApexExecutionNano": 7979170,
+ "longestApexExecutionNano": 139074784
+ },
+ {
+ "batchNumber": 2849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142917146,
+ "shortestRoundTripNano": 82730613,
+ "longestRoundTripNano": 171863067,
+ "averageApexExecutionNano": 70623358,
+ "shortestApexExecutionNano": 6137864,
+ "longestApexExecutionNano": 140501240
+ },
+ {
+ "batchNumber": 2850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139087747,
+ "shortestRoundTripNano": 57825287,
+ "longestRoundTripNano": 169276113,
+ "averageApexExecutionNano": 43952820,
+ "shortestApexExecutionNano": 9245958,
+ "longestApexExecutionNano": 109956003
+ },
+ {
+ "batchNumber": 2851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139113514,
+ "shortestRoundTripNano": 60665159,
+ "longestRoundTripNano": 174540129,
+ "averageApexExecutionNano": 44554577,
+ "shortestApexExecutionNano": 6438891,
+ "longestApexExecutionNano": 114349377
+ },
+ {
+ "batchNumber": 2852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144822185,
+ "shortestRoundTripNano": 81981754,
+ "longestRoundTripNano": 169376220,
+ "averageApexExecutionNano": 68359883,
+ "shortestApexExecutionNano": 8217944,
+ "longestApexExecutionNano": 125856209
+ },
+ {
+ "batchNumber": 2853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132258214,
+ "shortestRoundTripNano": 61058530,
+ "longestRoundTripNano": 174558019,
+ "averageApexExecutionNano": 55883591,
+ "shortestApexExecutionNano": 5316540,
+ "longestApexExecutionNano": 110855810
+ },
+ {
+ "batchNumber": 2854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135184301,
+ "shortestRoundTripNano": 33902024,
+ "longestRoundTripNano": 174854065,
+ "averageApexExecutionNano": 59799816,
+ "shortestApexExecutionNano": 7409424,
+ "longestApexExecutionNano": 127551487
+ },
+ {
+ "batchNumber": 2855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153758917,
+ "shortestRoundTripNano": 89256204,
+ "longestRoundTripNano": 195132117,
+ "averageApexExecutionNano": 60831078,
+ "shortestApexExecutionNano": 12089539,
+ "longestApexExecutionNano": 149427739
+ },
+ {
+ "batchNumber": 2856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156908425,
+ "shortestRoundTripNano": 96271320,
+ "longestRoundTripNano": 192890943,
+ "averageApexExecutionNano": 77975404,
+ "shortestApexExecutionNano": 7994948,
+ "longestApexExecutionNano": 147275532
+ },
+ {
+ "batchNumber": 2857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129821771,
+ "shortestRoundTripNano": 58295348,
+ "longestRoundTripNano": 157581577,
+ "averageApexExecutionNano": 51230376,
+ "shortestApexExecutionNano": 9111809,
+ "longestApexExecutionNano": 103649907
+ },
+ {
+ "batchNumber": 2858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177378080,
+ "shortestRoundTripNano": 79145913,
+ "longestRoundTripNano": 209878790,
+ "averageApexExecutionNano": 50836911,
+ "shortestApexExecutionNano": 7860967,
+ "longestApexExecutionNano": 133469137
+ },
+ {
+ "batchNumber": 2859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161300329,
+ "shortestRoundTripNano": 49382436,
+ "longestRoundTripNano": 194295157,
+ "averageApexExecutionNano": 76589673,
+ "shortestApexExecutionNano": 10457357,
+ "longestApexExecutionNano": 150791270
+ },
+ {
+ "batchNumber": 2860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152575450,
+ "shortestRoundTripNano": 73161341,
+ "longestRoundTripNano": 180984946,
+ "averageApexExecutionNano": 71656713,
+ "shortestApexExecutionNano": 11814594,
+ "longestApexExecutionNano": 135196529
+ },
+ {
+ "batchNumber": 2861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143964999,
+ "shortestRoundTripNano": 62285542,
+ "longestRoundTripNano": 171761385,
+ "averageApexExecutionNano": 50055832,
+ "shortestApexExecutionNano": 10126976,
+ "longestApexExecutionNano": 107543780
+ },
+ {
+ "batchNumber": 2862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152569487,
+ "shortestRoundTripNano": 55149889,
+ "longestRoundTripNano": 179577038,
+ "averageApexExecutionNano": 72551019,
+ "shortestApexExecutionNano": 11605234,
+ "longestApexExecutionNano": 131958219
+ },
+ {
+ "batchNumber": 2863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146902146,
+ "shortestRoundTripNano": 65432611,
+ "longestRoundTripNano": 182235684,
+ "averageApexExecutionNano": 62281805,
+ "shortestApexExecutionNano": 8164076,
+ "longestApexExecutionNano": 115592328
+ },
+ {
+ "batchNumber": 2864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152672481,
+ "shortestRoundTripNano": 83321693,
+ "longestRoundTripNano": 182673432,
+ "averageApexExecutionNano": 87964065,
+ "shortestApexExecutionNano": 13635520,
+ "longestApexExecutionNano": 140670868
+ },
+ {
+ "batchNumber": 2865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154735240,
+ "shortestRoundTripNano": 65665959,
+ "longestRoundTripNano": 183062133,
+ "averageApexExecutionNano": 61136918,
+ "shortestApexExecutionNano": 8241557,
+ "longestApexExecutionNano": 106930176
+ },
+ {
+ "batchNumber": 2866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143543213,
+ "shortestRoundTripNano": 69918669,
+ "longestRoundTripNano": 174319335,
+ "averageApexExecutionNano": 67580829,
+ "shortestApexExecutionNano": 8645419,
+ "longestApexExecutionNano": 125881817
+ },
+ {
+ "batchNumber": 2867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148953760,
+ "shortestRoundTripNano": 58238995,
+ "longestRoundTripNano": 183943313,
+ "averageApexExecutionNano": 57356210,
+ "shortestApexExecutionNano": 7668727,
+ "longestApexExecutionNano": 141966110
+ },
+ {
+ "batchNumber": 2868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161740300,
+ "shortestRoundTripNano": 81436163,
+ "longestRoundTripNano": 222157211,
+ "averageApexExecutionNano": 65383606,
+ "shortestApexExecutionNano": 7317290,
+ "longestApexExecutionNano": 147416954
+ },
+ {
+ "batchNumber": 2869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143248837,
+ "shortestRoundTripNano": 84474797,
+ "longestRoundTripNano": 168255025,
+ "averageApexExecutionNano": 65412203,
+ "shortestApexExecutionNano": 8558475,
+ "longestApexExecutionNano": 120840161
+ },
+ {
+ "batchNumber": 2870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128519747,
+ "shortestRoundTripNano": 62660589,
+ "longestRoundTripNano": 154700243,
+ "averageApexExecutionNano": 45406474,
+ "shortestApexExecutionNano": 10767223,
+ "longestApexExecutionNano": 103424054
+ },
+ {
+ "batchNumber": 2871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146718591,
+ "shortestRoundTripNano": 66830221,
+ "longestRoundTripNano": 173084035,
+ "averageApexExecutionNano": 59245666,
+ "shortestApexExecutionNano": 7950614,
+ "longestApexExecutionNano": 120838559
+ },
+ {
+ "batchNumber": 2872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 270358694,
+ "shortestRoundTripNano": 60431946,
+ "longestRoundTripNano": 319335494,
+ "averageApexExecutionNano": 118520948,
+ "shortestApexExecutionNano": 10350670,
+ "longestApexExecutionNano": 229896650
+ },
+ {
+ "batchNumber": 2873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156288078,
+ "shortestRoundTripNano": 76704717,
+ "longestRoundTripNano": 183407460,
+ "averageApexExecutionNano": 65066341,
+ "shortestApexExecutionNano": 8421273,
+ "longestApexExecutionNano": 116545428
+ },
+ {
+ "batchNumber": 2874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144560078,
+ "shortestRoundTripNano": 87160196,
+ "longestRoundTripNano": 175475407,
+ "averageApexExecutionNano": 67391268,
+ "shortestApexExecutionNano": 7605464,
+ "longestApexExecutionNano": 114269912
+ },
+ {
+ "batchNumber": 2875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122893601,
+ "shortestRoundTripNano": 45516442,
+ "longestRoundTripNano": 156738944,
+ "averageApexExecutionNano": 52689586,
+ "shortestApexExecutionNano": 6427694,
+ "longestApexExecutionNano": 111581806
+ },
+ {
+ "batchNumber": 2876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156201494,
+ "shortestRoundTripNano": 83674265,
+ "longestRoundTripNano": 186970447,
+ "averageApexExecutionNano": 64802150,
+ "shortestApexExecutionNano": 17469941,
+ "longestApexExecutionNano": 127860206
+ },
+ {
+ "batchNumber": 2877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179876394,
+ "shortestRoundTripNano": 58884125,
+ "longestRoundTripNano": 220184215,
+ "averageApexExecutionNano": 95300212,
+ "shortestApexExecutionNano": 9245148,
+ "longestApexExecutionNano": 172170194
+ },
+ {
+ "batchNumber": 2878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152064477,
+ "shortestRoundTripNano": 90117656,
+ "longestRoundTripNano": 180689240,
+ "averageApexExecutionNano": 66467361,
+ "shortestApexExecutionNano": 6313085,
+ "longestApexExecutionNano": 131734491
+ },
+ {
+ "batchNumber": 2879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131221275,
+ "shortestRoundTripNano": 47121382,
+ "longestRoundTripNano": 165562505,
+ "averageApexExecutionNano": 49714023,
+ "shortestApexExecutionNano": 9166142,
+ "longestApexExecutionNano": 119158854
+ },
+ {
+ "batchNumber": 2880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147061066,
+ "shortestRoundTripNano": 49322408,
+ "longestRoundTripNano": 181807014,
+ "averageApexExecutionNano": 56800227,
+ "shortestApexExecutionNano": 10930784,
+ "longestApexExecutionNano": 121747130
+ },
+ {
+ "batchNumber": 2881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135607942,
+ "shortestRoundTripNano": 55968613,
+ "longestRoundTripNano": 160258703,
+ "averageApexExecutionNano": 52933389,
+ "shortestApexExecutionNano": 9278992,
+ "longestApexExecutionNano": 110064235
+ },
+ {
+ "batchNumber": 2882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131835828,
+ "shortestRoundTripNano": 63935135,
+ "longestRoundTripNano": 159201826,
+ "averageApexExecutionNano": 61145122,
+ "shortestApexExecutionNano": 6456488,
+ "longestApexExecutionNano": 115697849
+ },
+ {
+ "batchNumber": 2883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147958097,
+ "shortestRoundTripNano": 56707557,
+ "longestRoundTripNano": 182271059,
+ "averageApexExecutionNano": 50293830,
+ "shortestApexExecutionNano": 5978228,
+ "longestApexExecutionNano": 123713885
+ },
+ {
+ "batchNumber": 2884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145107060,
+ "shortestRoundTripNano": 39035903,
+ "longestRoundTripNano": 168217534,
+ "averageApexExecutionNano": 65063483,
+ "shortestApexExecutionNano": 15781362,
+ "longestApexExecutionNano": 116874730
+ },
+ {
+ "batchNumber": 2885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35784",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147379878,
+ "shortestRoundTripNano": 54713493,
+ "longestRoundTripNano": 186418615,
+ "averageApexExecutionNano": 59427924,
+ "shortestApexExecutionNano": 10414622,
+ "longestApexExecutionNano": 111674334
+ },
+ {
+ "batchNumber": 2886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35784",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141063216,
+ "shortestRoundTripNano": 46272513,
+ "longestRoundTripNano": 166484406,
+ "averageApexExecutionNano": 56974398,
+ "shortestApexExecutionNano": 16979694,
+ "longestApexExecutionNano": 100930128
+ },
+ {
+ "batchNumber": 2887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35784",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146369850,
+ "shortestRoundTripNano": 69717806,
+ "longestRoundTripNano": 181910784,
+ "averageApexExecutionNano": 57730243,
+ "shortestApexExecutionNano": 4912124,
+ "longestApexExecutionNano": 130757617
+ },
+ {
+ "batchNumber": 2888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35784",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147086418,
+ "shortestRoundTripNano": 53957323,
+ "longestRoundTripNano": 178350572,
+ "averageApexExecutionNano": 74379029,
+ "shortestApexExecutionNano": 14187932,
+ "longestApexExecutionNano": 137494402
+ },
+ {
+ "batchNumber": 2889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137539919,
+ "shortestRoundTripNano": 65408608,
+ "longestRoundTripNano": 168469686,
+ "averageApexExecutionNano": 53988879,
+ "shortestApexExecutionNano": 8431007,
+ "longestApexExecutionNano": 104600555
+ },
+ {
+ "batchNumber": 2890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149050324,
+ "shortestRoundTripNano": 36836528,
+ "longestRoundTripNano": 175688175,
+ "averageApexExecutionNano": 57509974,
+ "shortestApexExecutionNano": 9841151,
+ "longestApexExecutionNano": 113607466
+ },
+ {
+ "batchNumber": 2891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142282979,
+ "shortestRoundTripNano": 72992127,
+ "longestRoundTripNano": 171289914,
+ "averageApexExecutionNano": 55791124,
+ "shortestApexExecutionNano": 11066278,
+ "longestApexExecutionNano": 121408660
+ },
+ {
+ "batchNumber": 2892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136577177,
+ "shortestRoundTripNano": 59026475,
+ "longestRoundTripNano": 164139753,
+ "averageApexExecutionNano": 61572002,
+ "shortestApexExecutionNano": 7167010,
+ "longestApexExecutionNano": 110731833
+ },
+ {
+ "batchNumber": 2893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159039871,
+ "shortestRoundTripNano": 53337143,
+ "longestRoundTripNano": 196421744,
+ "averageApexExecutionNano": 71464440,
+ "shortestApexExecutionNano": 5856172,
+ "longestApexExecutionNano": 126160626
+ },
+ {
+ "batchNumber": 2894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153775800,
+ "shortestRoundTripNano": 70354069,
+ "longestRoundTripNano": 190215638,
+ "averageApexExecutionNano": 50969162,
+ "shortestApexExecutionNano": 7878827,
+ "longestApexExecutionNano": 139781167
+ },
+ {
+ "batchNumber": 2895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159999483,
+ "shortestRoundTripNano": 55968688,
+ "longestRoundTripNano": 197127694,
+ "averageApexExecutionNano": 62536444,
+ "shortestApexExecutionNano": 8319669,
+ "longestApexExecutionNano": 134987021
+ },
+ {
+ "batchNumber": 2896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137606457,
+ "shortestRoundTripNano": 73799792,
+ "longestRoundTripNano": 170433367,
+ "averageApexExecutionNano": 51724711,
+ "shortestApexExecutionNano": 4768173,
+ "longestApexExecutionNano": 135562598
+ },
+ {
+ "batchNumber": 2897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150609869,
+ "shortestRoundTripNano": 47885134,
+ "longestRoundTripNano": 179968450,
+ "averageApexExecutionNano": 52272050,
+ "shortestApexExecutionNano": 9151726,
+ "longestApexExecutionNano": 118401868
+ },
+ {
+ "batchNumber": 2898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172170049,
+ "shortestRoundTripNano": 60942330,
+ "longestRoundTripNano": 200497979,
+ "averageApexExecutionNano": 81785285,
+ "shortestApexExecutionNano": 8242938,
+ "longestApexExecutionNano": 149754304
+ },
+ {
+ "batchNumber": 2899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153063493,
+ "shortestRoundTripNano": 55737151,
+ "longestRoundTripNano": 176685036,
+ "averageApexExecutionNano": 57331397,
+ "shortestApexExecutionNano": 7069812,
+ "longestApexExecutionNano": 117611705
+ },
+ {
+ "batchNumber": 2900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151358880,
+ "shortestRoundTripNano": 63739854,
+ "longestRoundTripNano": 182976242,
+ "averageApexExecutionNano": 67238584,
+ "shortestApexExecutionNano": 5783668,
+ "longestApexExecutionNano": 125766797
+ },
+ {
+ "batchNumber": 2901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163595914,
+ "shortestRoundTripNano": 68440036,
+ "longestRoundTripNano": 195769561,
+ "averageApexExecutionNano": 62082281,
+ "shortestApexExecutionNano": 7176836,
+ "longestApexExecutionNano": 135740247
+ },
+ {
+ "batchNumber": 2902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173974314,
+ "shortestRoundTripNano": 92917705,
+ "longestRoundTripNano": 206766225,
+ "averageApexExecutionNano": 85167259,
+ "shortestApexExecutionNano": 10856089,
+ "longestApexExecutionNano": 159203183
+ },
+ {
+ "batchNumber": 2903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140121392,
+ "shortestRoundTripNano": 61209925,
+ "longestRoundTripNano": 169552223,
+ "averageApexExecutionNano": 57034185,
+ "shortestApexExecutionNano": 10873281,
+ "longestApexExecutionNano": 110462832
+ },
+ {
+ "batchNumber": 2904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162562601,
+ "shortestRoundTripNano": 42305396,
+ "longestRoundTripNano": 197152611,
+ "averageApexExecutionNano": 82752876,
+ "shortestApexExecutionNano": 6878482,
+ "longestApexExecutionNano": 135189777
+ },
+ {
+ "batchNumber": 2905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147734892,
+ "shortestRoundTripNano": 56504512,
+ "longestRoundTripNano": 185568310,
+ "averageApexExecutionNano": 64604590,
+ "shortestApexExecutionNano": 6044761,
+ "longestApexExecutionNano": 136369349
+ },
+ {
+ "batchNumber": 2906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127260292,
+ "shortestRoundTripNano": 53297248,
+ "longestRoundTripNano": 157804252,
+ "averageApexExecutionNano": 64306385,
+ "shortestApexExecutionNano": 10993246,
+ "longestApexExecutionNano": 100813660
+ },
+ {
+ "batchNumber": 2907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132052459,
+ "shortestRoundTripNano": 58831790,
+ "longestRoundTripNano": 158870370,
+ "averageApexExecutionNano": 61287905,
+ "shortestApexExecutionNano": 11310843,
+ "longestApexExecutionNano": 106590291
+ },
+ {
+ "batchNumber": 2908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157358881,
+ "shortestRoundTripNano": 71238249,
+ "longestRoundTripNano": 182613271,
+ "averageApexExecutionNano": 62061737,
+ "shortestApexExecutionNano": 7515207,
+ "longestApexExecutionNano": 113951472
+ },
+ {
+ "batchNumber": 2909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135864583,
+ "shortestRoundTripNano": 64771088,
+ "longestRoundTripNano": 166388975,
+ "averageApexExecutionNano": 57084560,
+ "shortestApexExecutionNano": 8803152,
+ "longestApexExecutionNano": 116809134
+ },
+ {
+ "batchNumber": 2910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141593143,
+ "shortestRoundTripNano": 52538103,
+ "longestRoundTripNano": 167933551,
+ "averageApexExecutionNano": 55838903,
+ "shortestApexExecutionNano": 6215364,
+ "longestApexExecutionNano": 114212675
+ },
+ {
+ "batchNumber": 2911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147314935,
+ "shortestRoundTripNano": 70996860,
+ "longestRoundTripNano": 177180110,
+ "averageApexExecutionNano": 66861401,
+ "shortestApexExecutionNano": 5969844,
+ "longestApexExecutionNano": 130158850
+ },
+ {
+ "batchNumber": 2912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158139740,
+ "shortestRoundTripNano": 67825135,
+ "longestRoundTripNano": 195965117,
+ "averageApexExecutionNano": 51185721,
+ "shortestApexExecutionNano": 9318984,
+ "longestApexExecutionNano": 129697461
+ },
+ {
+ "batchNumber": 2913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144322761,
+ "shortestRoundTripNano": 85176708,
+ "longestRoundTripNano": 171810740,
+ "averageApexExecutionNano": 67668955,
+ "shortestApexExecutionNano": 12251921,
+ "longestApexExecutionNano": 121448759
+ },
+ {
+ "batchNumber": 2914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138379513,
+ "shortestRoundTripNano": 35708360,
+ "longestRoundTripNano": 177636815,
+ "averageApexExecutionNano": 58566514,
+ "shortestApexExecutionNano": 7913081,
+ "longestApexExecutionNano": 119392483
+ },
+ {
+ "batchNumber": 2915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150968680,
+ "shortestRoundTripNano": 56089331,
+ "longestRoundTripNano": 202108734,
+ "averageApexExecutionNano": 67733424,
+ "shortestApexExecutionNano": 10703357,
+ "longestApexExecutionNano": 124196105
+ },
+ {
+ "batchNumber": 2916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153060731,
+ "shortestRoundTripNano": 79412238,
+ "longestRoundTripNano": 179561250,
+ "averageApexExecutionNano": 66047465,
+ "shortestApexExecutionNano": 6543276,
+ "longestApexExecutionNano": 135296229
+ },
+ {
+ "batchNumber": 2917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133821206,
+ "shortestRoundTripNano": 57464900,
+ "longestRoundTripNano": 161287385,
+ "averageApexExecutionNano": 60635930,
+ "shortestApexExecutionNano": 7333751,
+ "longestApexExecutionNano": 116751062
+ },
+ {
+ "batchNumber": 2918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156338233,
+ "shortestRoundTripNano": 70655203,
+ "longestRoundTripNano": 190390197,
+ "averageApexExecutionNano": 67466244,
+ "shortestApexExecutionNano": 9511504,
+ "longestApexExecutionNano": 129305971
+ },
+ {
+ "batchNumber": 2919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152786914,
+ "shortestRoundTripNano": 70039882,
+ "longestRoundTripNano": 183184504,
+ "averageApexExecutionNano": 58843246,
+ "shortestApexExecutionNano": 7520208,
+ "longestApexExecutionNano": 130269085
+ },
+ {
+ "batchNumber": 2920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135363048,
+ "shortestRoundTripNano": 57440396,
+ "longestRoundTripNano": 172072275,
+ "averageApexExecutionNano": 45039833,
+ "shortestApexExecutionNano": 10191008,
+ "longestApexExecutionNano": 104278252
+ },
+ {
+ "batchNumber": 2921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135392301,
+ "shortestRoundTripNano": 60499082,
+ "longestRoundTripNano": 177514904,
+ "averageApexExecutionNano": 61159571,
+ "shortestApexExecutionNano": 5907184,
+ "longestApexExecutionNano": 136215840
+ },
+ {
+ "batchNumber": 2922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163493607,
+ "shortestRoundTripNano": 84485347,
+ "longestRoundTripNano": 194408119,
+ "averageApexExecutionNano": 60115625,
+ "shortestApexExecutionNano": 10297374,
+ "longestApexExecutionNano": 147592034
+ },
+ {
+ "batchNumber": 2923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141108694,
+ "shortestRoundTripNano": 52525928,
+ "longestRoundTripNano": 187513711,
+ "averageApexExecutionNano": 51050576,
+ "shortestApexExecutionNano": 7835288,
+ "longestApexExecutionNano": 115611418
+ },
+ {
+ "batchNumber": 2924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147269735,
+ "shortestRoundTripNano": 53076953,
+ "longestRoundTripNano": 180507818,
+ "averageApexExecutionNano": 57771085,
+ "shortestApexExecutionNano": 5543528,
+ "longestApexExecutionNano": 103550203
+ },
+ {
+ "batchNumber": 2925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133482991,
+ "shortestRoundTripNano": 38834519,
+ "longestRoundTripNano": 160962424,
+ "averageApexExecutionNano": 64270427,
+ "shortestApexExecutionNano": 10257791,
+ "longestApexExecutionNano": 121694154
+ },
+ {
+ "batchNumber": 2926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160677656,
+ "shortestRoundTripNano": 79918129,
+ "longestRoundTripNano": 182983548,
+ "averageApexExecutionNano": 48656350,
+ "shortestApexExecutionNano": 8057938,
+ "longestApexExecutionNano": 128995231
+ },
+ {
+ "batchNumber": 2927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144333970,
+ "shortestRoundTripNano": 83926339,
+ "longestRoundTripNano": 167001783,
+ "averageApexExecutionNano": 66167507,
+ "shortestApexExecutionNano": 10343480,
+ "longestApexExecutionNano": 101678408
+ },
+ {
+ "batchNumber": 2928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138036059,
+ "shortestRoundTripNano": 65394879,
+ "longestRoundTripNano": 165744141,
+ "averageApexExecutionNano": 73655946,
+ "shortestApexExecutionNano": 6021129,
+ "longestApexExecutionNano": 132059562
+ },
+ {
+ "batchNumber": 2929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141450012,
+ "shortestRoundTripNano": 51478981,
+ "longestRoundTripNano": 180556696,
+ "averageApexExecutionNano": 56248594,
+ "shortestApexExecutionNano": 9859429,
+ "longestApexExecutionNano": 121639264
+ },
+ {
+ "batchNumber": 2930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149311999,
+ "shortestRoundTripNano": 49038301,
+ "longestRoundTripNano": 187364356,
+ "averageApexExecutionNano": 61734683,
+ "shortestApexExecutionNano": 10320365,
+ "longestApexExecutionNano": 137033165
+ },
+ {
+ "batchNumber": 2931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148820909,
+ "shortestRoundTripNano": 48220583,
+ "longestRoundTripNano": 189639415,
+ "averageApexExecutionNano": 73877022,
+ "shortestApexExecutionNano": 11880418,
+ "longestApexExecutionNano": 132237212
+ },
+ {
+ "batchNumber": 2932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160458817,
+ "shortestRoundTripNano": 76971653,
+ "longestRoundTripNano": 196574414,
+ "averageApexExecutionNano": 50152943,
+ "shortestApexExecutionNano": 11049256,
+ "longestApexExecutionNano": 134501072
+ },
+ {
+ "batchNumber": 2933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149027743,
+ "shortestRoundTripNano": 71239805,
+ "longestRoundTripNano": 187701845,
+ "averageApexExecutionNano": 66658568,
+ "shortestApexExecutionNano": 9820088,
+ "longestApexExecutionNano": 122543985
+ },
+ {
+ "batchNumber": 2934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143731653,
+ "shortestRoundTripNano": 24684936,
+ "longestRoundTripNano": 172168992,
+ "averageApexExecutionNano": 56548340,
+ "shortestApexExecutionNano": 8460791,
+ "longestApexExecutionNano": 128528093
+ },
+ {
+ "batchNumber": 2935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139178216,
+ "shortestRoundTripNano": 57765388,
+ "longestRoundTripNano": 161933937,
+ "averageApexExecutionNano": 47314005,
+ "shortestApexExecutionNano": 9956729,
+ "longestApexExecutionNano": 109614244
+ },
+ {
+ "batchNumber": 2936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134263746,
+ "shortestRoundTripNano": 58218235,
+ "longestRoundTripNano": 161240707,
+ "averageApexExecutionNano": 45870764,
+ "shortestApexExecutionNano": 8907223,
+ "longestApexExecutionNano": 101167537
+ },
+ {
+ "batchNumber": 2937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122436515,
+ "shortestRoundTripNano": 42216208,
+ "longestRoundTripNano": 158189152,
+ "averageApexExecutionNano": 55068879,
+ "shortestApexExecutionNano": 7074272,
+ "longestApexExecutionNano": 99864368
+ },
+ {
+ "batchNumber": 2938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123484993,
+ "shortestRoundTripNano": 58622021,
+ "longestRoundTripNano": 151774170,
+ "averageApexExecutionNano": 52750230,
+ "shortestApexExecutionNano": 9241953,
+ "longestApexExecutionNano": 104225106
+ },
+ {
+ "batchNumber": 2939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147655349,
+ "shortestRoundTripNano": 30632655,
+ "longestRoundTripNano": 185227857,
+ "averageApexExecutionNano": 61163248,
+ "shortestApexExecutionNano": 8536204,
+ "longestApexExecutionNano": 137292042
+ },
+ {
+ "batchNumber": 2940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147895250,
+ "shortestRoundTripNano": 62454260,
+ "longestRoundTripNano": 178853764,
+ "averageApexExecutionNano": 64179695,
+ "shortestApexExecutionNano": 15663569,
+ "longestApexExecutionNano": 117754085
+ },
+ {
+ "batchNumber": 2941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160013284,
+ "shortestRoundTripNano": 40556565,
+ "longestRoundTripNano": 190312658,
+ "averageApexExecutionNano": 85033936,
+ "shortestApexExecutionNano": 9199738,
+ "longestApexExecutionNano": 138509890
+ },
+ {
+ "batchNumber": 2942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126963073,
+ "shortestRoundTripNano": 62516197,
+ "longestRoundTripNano": 150943049,
+ "averageApexExecutionNano": 58864464,
+ "shortestApexExecutionNano": 8565453,
+ "longestApexExecutionNano": 104315640
+ },
+ {
+ "batchNumber": 2943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126924239,
+ "shortestRoundTripNano": 66923517,
+ "longestRoundTripNano": 158170699,
+ "averageApexExecutionNano": 56394020,
+ "shortestApexExecutionNano": 12246423,
+ "longestApexExecutionNano": 122153561
+ },
+ {
+ "batchNumber": 2944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146975219,
+ "shortestRoundTripNano": 37021925,
+ "longestRoundTripNano": 177095226,
+ "averageApexExecutionNano": 58296067,
+ "shortestApexExecutionNano": 5713133,
+ "longestApexExecutionNano": 113667739
+ },
+ {
+ "batchNumber": 2945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133163997,
+ "shortestRoundTripNano": 59500266,
+ "longestRoundTripNano": 162957154,
+ "averageApexExecutionNano": 60130550,
+ "shortestApexExecutionNano": 11569893,
+ "longestApexExecutionNano": 112728198
+ },
+ {
+ "batchNumber": 2946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143819669,
+ "shortestRoundTripNano": 62955424,
+ "longestRoundTripNano": 171664962,
+ "averageApexExecutionNano": 55015103,
+ "shortestApexExecutionNano": 8282129,
+ "longestApexExecutionNano": 111861127
+ },
+ {
+ "batchNumber": 2947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141548908,
+ "shortestRoundTripNano": 56431804,
+ "longestRoundTripNano": 172605100,
+ "averageApexExecutionNano": 52603109,
+ "shortestApexExecutionNano": 7884088,
+ "longestApexExecutionNano": 114841897
+ },
+ {
+ "batchNumber": 2948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145557306,
+ "shortestRoundTripNano": 71250590,
+ "longestRoundTripNano": 175083226,
+ "averageApexExecutionNano": 61443239,
+ "shortestApexExecutionNano": 12372963,
+ "longestApexExecutionNano": 119510970
+ },
+ {
+ "batchNumber": 2949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153074699,
+ "shortestRoundTripNano": 51675409,
+ "longestRoundTripNano": 187658430,
+ "averageApexExecutionNano": 65928877,
+ "shortestApexExecutionNano": 9500439,
+ "longestApexExecutionNano": 125891590
+ },
+ {
+ "batchNumber": 2950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139838538,
+ "shortestRoundTripNano": 24554211,
+ "longestRoundTripNano": 172909834,
+ "averageApexExecutionNano": 55685893,
+ "shortestApexExecutionNano": 7357758,
+ "longestApexExecutionNano": 128552641
+ },
+ {
+ "batchNumber": 2951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154839293,
+ "shortestRoundTripNano": 95395711,
+ "longestRoundTripNano": 193585898,
+ "averageApexExecutionNano": 55377961,
+ "shortestApexExecutionNano": 8666778,
+ "longestApexExecutionNano": 132956576
+ },
+ {
+ "batchNumber": 2952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135179458,
+ "shortestRoundTripNano": 45429989,
+ "longestRoundTripNano": 163837141,
+ "averageApexExecutionNano": 58215136,
+ "shortestApexExecutionNano": 7517279,
+ "longestApexExecutionNano": 112072058
+ },
+ {
+ "batchNumber": 2953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160533681,
+ "shortestRoundTripNano": 71814039,
+ "longestRoundTripNano": 187938206,
+ "averageApexExecutionNano": 61009730,
+ "shortestApexExecutionNano": 5986661,
+ "longestApexExecutionNano": 126841276
+ },
+ {
+ "batchNumber": 2954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131803536,
+ "shortestRoundTripNano": 56510865,
+ "longestRoundTripNano": 166220992,
+ "averageApexExecutionNano": 51627531,
+ "shortestApexExecutionNano": 7081735,
+ "longestApexExecutionNano": 117132248
+ },
+ {
+ "batchNumber": 2955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158163364,
+ "shortestRoundTripNano": 51541893,
+ "longestRoundTripNano": 193677511,
+ "averageApexExecutionNano": 64416996,
+ "shortestApexExecutionNano": 9078790,
+ "longestApexExecutionNano": 144930043
+ },
+ {
+ "batchNumber": 2956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125916011,
+ "shortestRoundTripNano": 65566097,
+ "longestRoundTripNano": 153885023,
+ "averageApexExecutionNano": 57036501,
+ "shortestApexExecutionNano": 9594818,
+ "longestApexExecutionNano": 115255848
+ },
+ {
+ "batchNumber": 2957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136528878,
+ "shortestRoundTripNano": 67837037,
+ "longestRoundTripNano": 181443420,
+ "averageApexExecutionNano": 41575413,
+ "shortestApexExecutionNano": 5393676,
+ "longestApexExecutionNano": 113960799
+ },
+ {
+ "batchNumber": 2958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153605105,
+ "shortestRoundTripNano": 73229626,
+ "longestRoundTripNano": 180178400,
+ "averageApexExecutionNano": 56770214,
+ "shortestApexExecutionNano": 5634346,
+ "longestApexExecutionNano": 116778144
+ },
+ {
+ "batchNumber": 2959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129710868,
+ "shortestRoundTripNano": 59833237,
+ "longestRoundTripNano": 156143313,
+ "averageApexExecutionNano": 48798557,
+ "shortestApexExecutionNano": 7098181,
+ "longestApexExecutionNano": 97647756
+ },
+ {
+ "batchNumber": 2960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127860754,
+ "shortestRoundTripNano": 49437707,
+ "longestRoundTripNano": 157527176,
+ "averageApexExecutionNano": 58368150,
+ "shortestApexExecutionNano": 7352494,
+ "longestApexExecutionNano": 114291070
+ },
+ {
+ "batchNumber": 2961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139953799,
+ "shortestRoundTripNano": 69341636,
+ "longestRoundTripNano": 170058005,
+ "averageApexExecutionNano": 64791644,
+ "shortestApexExecutionNano": 10966118,
+ "longestApexExecutionNano": 118906175
+ },
+ {
+ "batchNumber": 2962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155852488,
+ "shortestRoundTripNano": 75820125,
+ "longestRoundTripNano": 180152118,
+ "averageApexExecutionNano": 62471253,
+ "shortestApexExecutionNano": 13285586,
+ "longestApexExecutionNano": 114660521
+ },
+ {
+ "batchNumber": 2963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140123670,
+ "shortestRoundTripNano": 62854254,
+ "longestRoundTripNano": 162608251,
+ "averageApexExecutionNano": 53722688,
+ "shortestApexExecutionNano": 7363054,
+ "longestApexExecutionNano": 93721840
+ },
+ {
+ "batchNumber": 2964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126760778,
+ "shortestRoundTripNano": 57299673,
+ "longestRoundTripNano": 154533757,
+ "averageApexExecutionNano": 54903923,
+ "shortestApexExecutionNano": 8554763,
+ "longestApexExecutionNano": 106535012
+ },
+ {
+ "batchNumber": 2965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141173990,
+ "shortestRoundTripNano": 54140736,
+ "longestRoundTripNano": 171000929,
+ "averageApexExecutionNano": 61066310,
+ "shortestApexExecutionNano": 6502915,
+ "longestApexExecutionNano": 116784395
+ },
+ {
+ "batchNumber": 2966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153201815,
+ "shortestRoundTripNano": 62270684,
+ "longestRoundTripNano": 197692873,
+ "averageApexExecutionNano": 54664829,
+ "shortestApexExecutionNano": 5138785,
+ "longestApexExecutionNano": 120096048
+ },
+ {
+ "batchNumber": 2967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152046843,
+ "shortestRoundTripNano": 41567641,
+ "longestRoundTripNano": 191409825,
+ "averageApexExecutionNano": 79955367,
+ "shortestApexExecutionNano": 6417311,
+ "longestApexExecutionNano": 137526812
+ },
+ {
+ "batchNumber": 2968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169905145,
+ "shortestRoundTripNano": 81447900,
+ "longestRoundTripNano": 202901446,
+ "averageApexExecutionNano": 71947298,
+ "shortestApexExecutionNano": 13783907,
+ "longestApexExecutionNano": 137926558
+ },
+ {
+ "batchNumber": 2969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156994946,
+ "shortestRoundTripNano": 40715741,
+ "longestRoundTripNano": 182418857,
+ "averageApexExecutionNano": 70640297,
+ "shortestApexExecutionNano": 14355992,
+ "longestApexExecutionNano": 123029032
+ },
+ {
+ "batchNumber": 2970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175303893,
+ "shortestRoundTripNano": 67679533,
+ "longestRoundTripNano": 215171317,
+ "averageApexExecutionNano": 85800105,
+ "shortestApexExecutionNano": 8383920,
+ "longestApexExecutionNano": 146032981
+ },
+ {
+ "batchNumber": 2971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144088588,
+ "shortestRoundTripNano": 85505690,
+ "longestRoundTripNano": 166836792,
+ "averageApexExecutionNano": 70665526,
+ "shortestApexExecutionNano": 12869324,
+ "longestApexExecutionNano": 121453896
+ },
+ {
+ "batchNumber": 2972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133173559,
+ "shortestRoundTripNano": 79743587,
+ "longestRoundTripNano": 158566396,
+ "averageApexExecutionNano": 49481120,
+ "shortestApexExecutionNano": 5715547,
+ "longestApexExecutionNano": 119415305
+ },
+ {
+ "batchNumber": 2973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150295951,
+ "shortestRoundTripNano": 51978056,
+ "longestRoundTripNano": 181943900,
+ "averageApexExecutionNano": 55271003,
+ "shortestApexExecutionNano": 9999448,
+ "longestApexExecutionNano": 104897832
+ },
+ {
+ "batchNumber": 2974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161241501,
+ "shortestRoundTripNano": 51870654,
+ "longestRoundTripNano": 187726949,
+ "averageApexExecutionNano": 70524981,
+ "shortestApexExecutionNano": 7398856,
+ "longestApexExecutionNano": 144090410
+ },
+ {
+ "batchNumber": 2975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141873598,
+ "shortestRoundTripNano": 61434911,
+ "longestRoundTripNano": 174116175,
+ "averageApexExecutionNano": 55167354,
+ "shortestApexExecutionNano": 8196547,
+ "longestApexExecutionNano": 110610668
+ },
+ {
+ "batchNumber": 2976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168807204,
+ "shortestRoundTripNano": 62630691,
+ "longestRoundTripNano": 206405914,
+ "averageApexExecutionNano": 59279937,
+ "shortestApexExecutionNano": 10756173,
+ "longestApexExecutionNano": 123153583
+ },
+ {
+ "batchNumber": 2977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133437405,
+ "shortestRoundTripNano": 37746134,
+ "longestRoundTripNano": 168048005,
+ "averageApexExecutionNano": 54544434,
+ "shortestApexExecutionNano": 8314280,
+ "longestApexExecutionNano": 118826468
+ },
+ {
+ "batchNumber": 2978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155615105,
+ "shortestRoundTripNano": 79104632,
+ "longestRoundTripNano": 178166212,
+ "averageApexExecutionNano": 70310703,
+ "shortestApexExecutionNano": 9454781,
+ "longestApexExecutionNano": 135786413
+ },
+ {
+ "batchNumber": 2979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144686995,
+ "shortestRoundTripNano": 52743687,
+ "longestRoundTripNano": 175423036,
+ "averageApexExecutionNano": 55162518,
+ "shortestApexExecutionNano": 7536261,
+ "longestApexExecutionNano": 133264802
+ },
+ {
+ "batchNumber": 2980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162291098,
+ "shortestRoundTripNano": 74797552,
+ "longestRoundTripNano": 198526540,
+ "averageApexExecutionNano": 84335031,
+ "shortestApexExecutionNano": 10353509,
+ "longestApexExecutionNano": 157436930
+ },
+ {
+ "batchNumber": 2981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35822",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148594043,
+ "shortestRoundTripNano": 77747074,
+ "longestRoundTripNano": 179847038,
+ "averageApexExecutionNano": 62634979,
+ "shortestApexExecutionNano": 8379602,
+ "longestApexExecutionNano": 119459500
+ },
+ {
+ "batchNumber": 2982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35822",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142565768,
+ "shortestRoundTripNano": 76906263,
+ "longestRoundTripNano": 172926169,
+ "averageApexExecutionNano": 63751608,
+ "shortestApexExecutionNano": 6500700,
+ "longestApexExecutionNano": 130829373
+ },
+ {
+ "batchNumber": 2983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35822",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172097469,
+ "shortestRoundTripNano": 63215579,
+ "longestRoundTripNano": 208028501,
+ "averageApexExecutionNano": 71909604,
+ "shortestApexExecutionNano": 9266512,
+ "longestApexExecutionNano": 155751649
+ },
+ {
+ "batchNumber": 2984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35822",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156969668,
+ "shortestRoundTripNano": 32426351,
+ "longestRoundTripNano": 187788988,
+ "averageApexExecutionNano": 78468699,
+ "shortestApexExecutionNano": 11155049,
+ "longestApexExecutionNano": 145337025
+ },
+ {
+ "batchNumber": 2985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160403586,
+ "shortestRoundTripNano": 70023428,
+ "longestRoundTripNano": 191335916,
+ "averageApexExecutionNano": 64626229,
+ "shortestApexExecutionNano": 6869052,
+ "longestApexExecutionNano": 142584001
+ },
+ {
+ "batchNumber": 2986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157688364,
+ "shortestRoundTripNano": 81445089,
+ "longestRoundTripNano": 185460963,
+ "averageApexExecutionNano": 59487055,
+ "shortestApexExecutionNano": 9608520,
+ "longestApexExecutionNano": 136313002
+ },
+ {
+ "batchNumber": 2987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 212074926,
+ "shortestRoundTripNano": 58247861,
+ "longestRoundTripNano": 247927847,
+ "averageApexExecutionNano": 106371081,
+ "shortestApexExecutionNano": 5464452,
+ "longestApexExecutionNano": 180624620
+ },
+ {
+ "batchNumber": 2988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144141480,
+ "shortestRoundTripNano": 52495639,
+ "longestRoundTripNano": 172192219,
+ "averageApexExecutionNano": 60716674,
+ "shortestApexExecutionNano": 5905411,
+ "longestApexExecutionNano": 118581459
+ },
+ {
+ "batchNumber": 2989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136340473,
+ "shortestRoundTripNano": 67443336,
+ "longestRoundTripNano": 163652396,
+ "averageApexExecutionNano": 62088377,
+ "shortestApexExecutionNano": 7093559,
+ "longestApexExecutionNano": 117344512
+ },
+ {
+ "batchNumber": 2990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144287528,
+ "shortestRoundTripNano": 63965714,
+ "longestRoundTripNano": 180335487,
+ "averageApexExecutionNano": 56274215,
+ "shortestApexExecutionNano": 8902817,
+ "longestApexExecutionNano": 120109080
+ },
+ {
+ "batchNumber": 2991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35824",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156774341,
+ "shortestRoundTripNano": 57815532,
+ "longestRoundTripNano": 180229180,
+ "averageApexExecutionNano": 69976944,
+ "shortestApexExecutionNano": 7521318,
+ "longestApexExecutionNano": 128822708
+ },
+ {
+ "batchNumber": 2992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162016417,
+ "shortestRoundTripNano": 83333756,
+ "longestRoundTripNano": 187348481,
+ "averageApexExecutionNano": 66593169,
+ "shortestApexExecutionNano": 7863682,
+ "longestApexExecutionNano": 119754593
+ },
+ {
+ "batchNumber": 2993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142867792,
+ "shortestRoundTripNano": 64514414,
+ "longestRoundTripNano": 171241499,
+ "averageApexExecutionNano": 56028711,
+ "shortestApexExecutionNano": 8014286,
+ "longestApexExecutionNano": 118965087
+ },
+ {
+ "batchNumber": 2994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145762753,
+ "shortestRoundTripNano": 75219555,
+ "longestRoundTripNano": 172729920,
+ "averageApexExecutionNano": 61941372,
+ "shortestApexExecutionNano": 8899653,
+ "longestApexExecutionNano": 131747337
+ },
+ {
+ "batchNumber": 2995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132982639,
+ "shortestRoundTripNano": 51997096,
+ "longestRoundTripNano": 169972085,
+ "averageApexExecutionNano": 58181403,
+ "shortestApexExecutionNano": 7323497,
+ "longestApexExecutionNano": 116990148
+ },
+ {
+ "batchNumber": 2996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150484502,
+ "shortestRoundTripNano": 72672184,
+ "longestRoundTripNano": 179525032,
+ "averageApexExecutionNano": 55023922,
+ "shortestApexExecutionNano": 10350131,
+ "longestApexExecutionNano": 112138336
+ },
+ {
+ "batchNumber": 2997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141544485,
+ "shortestRoundTripNano": 64320687,
+ "longestRoundTripNano": 170586929,
+ "averageApexExecutionNano": 58096876,
+ "shortestApexExecutionNano": 10422249,
+ "longestApexExecutionNano": 111858636
+ },
+ {
+ "batchNumber": 2998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148908985,
+ "shortestRoundTripNano": 53272109,
+ "longestRoundTripNano": 185969543,
+ "averageApexExecutionNano": 61388810,
+ "shortestApexExecutionNano": 6403898,
+ "longestApexExecutionNano": 121898938
+ },
+ {
+ "batchNumber": 2999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152769996,
+ "shortestRoundTripNano": 74839392,
+ "longestRoundTripNano": 183940867,
+ "averageApexExecutionNano": 75812278,
+ "shortestApexExecutionNano": 11078639,
+ "longestApexExecutionNano": 139927769
+ },
+ {
+ "batchNumber": 3000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138364375,
+ "shortestRoundTripNano": 47888196,
+ "longestRoundTripNano": 172217276,
+ "averageApexExecutionNano": 60411095,
+ "shortestApexExecutionNano": 11011209,
+ "longestApexExecutionNano": 109259168
+ },
+ {
+ "batchNumber": 3001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138056595,
+ "shortestRoundTripNano": 58548782,
+ "longestRoundTripNano": 167515549,
+ "averageApexExecutionNano": 58490359,
+ "shortestApexExecutionNano": 8122869,
+ "longestApexExecutionNano": 117449144
+ },
+ {
+ "batchNumber": 3002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122571558,
+ "shortestRoundTripNano": 48349867,
+ "longestRoundTripNano": 145264603,
+ "averageApexExecutionNano": 50579014,
+ "shortestApexExecutionNano": 7206881,
+ "longestApexExecutionNano": 88491207
+ },
+ {
+ "batchNumber": 3003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128158259,
+ "shortestRoundTripNano": 85014399,
+ "longestRoundTripNano": 149971760,
+ "averageApexExecutionNano": 53627110,
+ "shortestApexExecutionNano": 6640919,
+ "longestApexExecutionNano": 99218954
+ },
+ {
+ "batchNumber": 3004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133475997,
+ "shortestRoundTripNano": 63887371,
+ "longestRoundTripNano": 160646389,
+ "averageApexExecutionNano": 58591980,
+ "shortestApexExecutionNano": 7541431,
+ "longestApexExecutionNano": 109223141
+ },
+ {
+ "batchNumber": 3005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127163101,
+ "shortestRoundTripNano": 39308300,
+ "longestRoundTripNano": 157953363,
+ "averageApexExecutionNano": 46898410,
+ "shortestApexExecutionNano": 8931420,
+ "longestApexExecutionNano": 99071249
+ },
+ {
+ "batchNumber": 3006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159761683,
+ "shortestRoundTripNano": 55675080,
+ "longestRoundTripNano": 202286981,
+ "averageApexExecutionNano": 64377014,
+ "shortestApexExecutionNano": 8210714,
+ "longestApexExecutionNano": 153051663
+ },
+ {
+ "batchNumber": 3007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146354834,
+ "shortestRoundTripNano": 61251857,
+ "longestRoundTripNano": 184431171,
+ "averageApexExecutionNano": 59982311,
+ "shortestApexExecutionNano": 6227007,
+ "longestApexExecutionNano": 131590239
+ },
+ {
+ "batchNumber": 3008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154976173,
+ "shortestRoundTripNano": 61124540,
+ "longestRoundTripNano": 193425944,
+ "averageApexExecutionNano": 76601826,
+ "shortestApexExecutionNano": 12429338,
+ "longestApexExecutionNano": 159818725
+ },
+ {
+ "batchNumber": 3009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131112892,
+ "shortestRoundTripNano": 30488352,
+ "longestRoundTripNano": 157744432,
+ "averageApexExecutionNano": 48861708,
+ "shortestApexExecutionNano": 8246974,
+ "longestApexExecutionNano": 108675050
+ },
+ {
+ "batchNumber": 3010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128796313,
+ "shortestRoundTripNano": 64498084,
+ "longestRoundTripNano": 163090950,
+ "averageApexExecutionNano": 43184122,
+ "shortestApexExecutionNano": 10349579,
+ "longestApexExecutionNano": 100635524
+ },
+ {
+ "batchNumber": 3011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128681829,
+ "shortestRoundTripNano": 62968268,
+ "longestRoundTripNano": 158098103,
+ "averageApexExecutionNano": 40164489,
+ "shortestApexExecutionNano": 7173786,
+ "longestApexExecutionNano": 93901865
+ },
+ {
+ "batchNumber": 3012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128496227,
+ "shortestRoundTripNano": 38018812,
+ "longestRoundTripNano": 155636449,
+ "averageApexExecutionNano": 56282164,
+ "shortestApexExecutionNano": 5808101,
+ "longestApexExecutionNano": 106074752
+ },
+ {
+ "batchNumber": 3013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147919272,
+ "shortestRoundTripNano": 73243287,
+ "longestRoundTripNano": 182514206,
+ "averageApexExecutionNano": 63088478,
+ "shortestApexExecutionNano": 10135025,
+ "longestApexExecutionNano": 119767650
+ },
+ {
+ "batchNumber": 3014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143620012,
+ "shortestRoundTripNano": 62631216,
+ "longestRoundTripNano": 171500467,
+ "averageApexExecutionNano": 69416179,
+ "shortestApexExecutionNano": 9271003,
+ "longestApexExecutionNano": 129345287
+ },
+ {
+ "batchNumber": 3015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160884738,
+ "shortestRoundTripNano": 62957456,
+ "longestRoundTripNano": 202489094,
+ "averageApexExecutionNano": 62558348,
+ "shortestApexExecutionNano": 7672342,
+ "longestApexExecutionNano": 136921658
+ },
+ {
+ "batchNumber": 3016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165171164,
+ "shortestRoundTripNano": 89536569,
+ "longestRoundTripNano": 195373806,
+ "averageApexExecutionNano": 73909168,
+ "shortestApexExecutionNano": 6660848,
+ "longestApexExecutionNano": 134865896
+ },
+ {
+ "batchNumber": 3017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 243486464,
+ "shortestRoundTripNano": 61300957,
+ "longestRoundTripNano": 270023081,
+ "averageApexExecutionNano": 120173416,
+ "shortestApexExecutionNano": 15232735,
+ "longestApexExecutionNano": 219526835
+ },
+ {
+ "batchNumber": 3018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150360823,
+ "shortestRoundTripNano": 74581046,
+ "longestRoundTripNano": 177559477,
+ "averageApexExecutionNano": 65276425,
+ "shortestApexExecutionNano": 8444800,
+ "longestApexExecutionNano": 130039612
+ },
+ {
+ "batchNumber": 3019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133916125,
+ "shortestRoundTripNano": 69204119,
+ "longestRoundTripNano": 158726040,
+ "averageApexExecutionNano": 63779326,
+ "shortestApexExecutionNano": 10127903,
+ "longestApexExecutionNano": 108718768
+ },
+ {
+ "batchNumber": 3020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140831505,
+ "shortestRoundTripNano": 56846174,
+ "longestRoundTripNano": 179404632,
+ "averageApexExecutionNano": 59543372,
+ "shortestApexExecutionNano": 6485484,
+ "longestApexExecutionNano": 128702274
+ },
+ {
+ "batchNumber": 3021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134913645,
+ "shortestRoundTripNano": 42415228,
+ "longestRoundTripNano": 159959783,
+ "averageApexExecutionNano": 68554039,
+ "shortestApexExecutionNano": 11471789,
+ "longestApexExecutionNano": 115210334
+ },
+ {
+ "batchNumber": 3022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140657987,
+ "shortestRoundTripNano": 79475614,
+ "longestRoundTripNano": 161884135,
+ "averageApexExecutionNano": 51836302,
+ "shortestApexExecutionNano": 20313734,
+ "longestApexExecutionNano": 100639944
+ },
+ {
+ "batchNumber": 3023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163667040,
+ "shortestRoundTripNano": 62940903,
+ "longestRoundTripNano": 195751894,
+ "averageApexExecutionNano": 62363910,
+ "shortestApexExecutionNano": 6515646,
+ "longestApexExecutionNano": 123882630
+ },
+ {
+ "batchNumber": 3024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146696092,
+ "shortestRoundTripNano": 56539618,
+ "longestRoundTripNano": 181736725,
+ "averageApexExecutionNano": 68923322,
+ "shortestApexExecutionNano": 5013990,
+ "longestApexExecutionNano": 125378375
+ },
+ {
+ "batchNumber": 3025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140534468,
+ "shortestRoundTripNano": 72706281,
+ "longestRoundTripNano": 165946008,
+ "averageApexExecutionNano": 63206437,
+ "shortestApexExecutionNano": 18104385,
+ "longestApexExecutionNano": 103178044
+ },
+ {
+ "batchNumber": 3026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144161274,
+ "shortestRoundTripNano": 76983461,
+ "longestRoundTripNano": 170818579,
+ "averageApexExecutionNano": 64861279,
+ "shortestApexExecutionNano": 5578508,
+ "longestApexExecutionNano": 125726608
+ },
+ {
+ "batchNumber": 3027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149870443,
+ "shortestRoundTripNano": 59552256,
+ "longestRoundTripNano": 181163557,
+ "averageApexExecutionNano": 57919743,
+ "shortestApexExecutionNano": 9086233,
+ "longestApexExecutionNano": 110458215
+ },
+ {
+ "batchNumber": 3028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145793392,
+ "shortestRoundTripNano": 80335918,
+ "longestRoundTripNano": 167844776,
+ "averageApexExecutionNano": 67694828,
+ "shortestApexExecutionNano": 10296970,
+ "longestApexExecutionNano": 118405198
+ },
+ {
+ "batchNumber": 3029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141560125,
+ "shortestRoundTripNano": 48772834,
+ "longestRoundTripNano": 168188253,
+ "averageApexExecutionNano": 39349503,
+ "shortestApexExecutionNano": 8989966,
+ "longestApexExecutionNano": 117432040
+ },
+ {
+ "batchNumber": 3030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158808381,
+ "shortestRoundTripNano": 61194258,
+ "longestRoundTripNano": 208806449,
+ "averageApexExecutionNano": 58971044,
+ "shortestApexExecutionNano": 14605976,
+ "longestApexExecutionNano": 116082183
+ },
+ {
+ "batchNumber": 3031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161851980,
+ "shortestRoundTripNano": 76687582,
+ "longestRoundTripNano": 196495013,
+ "averageApexExecutionNano": 60735654,
+ "shortestApexExecutionNano": 9795265,
+ "longestApexExecutionNano": 146845071
+ },
+ {
+ "batchNumber": 3032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146675073,
+ "shortestRoundTripNano": 63303335,
+ "longestRoundTripNano": 170932602,
+ "averageApexExecutionNano": 55915344,
+ "shortestApexExecutionNano": 10776532,
+ "longestApexExecutionNano": 120543336
+ },
+ {
+ "batchNumber": 3033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150790055,
+ "shortestRoundTripNano": 56777910,
+ "longestRoundTripNano": 187370372,
+ "averageApexExecutionNano": 64020256,
+ "shortestApexExecutionNano": 14334481,
+ "longestApexExecutionNano": 124669177
+ },
+ {
+ "batchNumber": 3034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137879990,
+ "shortestRoundTripNano": 73545737,
+ "longestRoundTripNano": 167340114,
+ "averageApexExecutionNano": 40352791,
+ "shortestApexExecutionNano": 7100420,
+ "longestApexExecutionNano": 122163036
+ },
+ {
+ "batchNumber": 3035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139223940,
+ "shortestRoundTripNano": 60667909,
+ "longestRoundTripNano": 170029315,
+ "averageApexExecutionNano": 61605398,
+ "shortestApexExecutionNano": 8780505,
+ "longestApexExecutionNano": 115151781
+ },
+ {
+ "batchNumber": 3036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158061279,
+ "shortestRoundTripNano": 60712811,
+ "longestRoundTripNano": 185102178,
+ "averageApexExecutionNano": 59758677,
+ "shortestApexExecutionNano": 9978055,
+ "longestApexExecutionNano": 136681750
+ },
+ {
+ "batchNumber": 3037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154478981,
+ "shortestRoundTripNano": 72380745,
+ "longestRoundTripNano": 180026899,
+ "averageApexExecutionNano": 51384845,
+ "shortestApexExecutionNano": 10038289,
+ "longestApexExecutionNano": 109721207
+ },
+ {
+ "batchNumber": 3038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134926732,
+ "shortestRoundTripNano": 42925362,
+ "longestRoundTripNano": 164351524,
+ "averageApexExecutionNano": 68853324,
+ "shortestApexExecutionNano": 7763731,
+ "longestApexExecutionNano": 128757805
+ },
+ {
+ "batchNumber": 3039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177173191,
+ "shortestRoundTripNano": 60807871,
+ "longestRoundTripNano": 223623548,
+ "averageApexExecutionNano": 92304240,
+ "shortestApexExecutionNano": 9536119,
+ "longestApexExecutionNano": 172088826
+ },
+ {
+ "batchNumber": 3040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160251227,
+ "shortestRoundTripNano": 93190804,
+ "longestRoundTripNano": 191031359,
+ "averageApexExecutionNano": 83952383,
+ "shortestApexExecutionNano": 8015441,
+ "longestApexExecutionNano": 148047927
+ },
+ {
+ "batchNumber": 3041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161294266,
+ "shortestRoundTripNano": 67690311,
+ "longestRoundTripNano": 195641108,
+ "averageApexExecutionNano": 66259555,
+ "shortestApexExecutionNano": 10146635,
+ "longestApexExecutionNano": 127615751
+ },
+ {
+ "batchNumber": 3042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155919248,
+ "shortestRoundTripNano": 82300111,
+ "longestRoundTripNano": 180179260,
+ "averageApexExecutionNano": 78939686,
+ "shortestApexExecutionNano": 8172261,
+ "longestApexExecutionNano": 133407218
+ },
+ {
+ "batchNumber": 3043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142599582,
+ "shortestRoundTripNano": 86647572,
+ "longestRoundTripNano": 171489683,
+ "averageApexExecutionNano": 70078783,
+ "shortestApexExecutionNano": 5301303,
+ "longestApexExecutionNano": 126146269
+ },
+ {
+ "batchNumber": 3044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162315807,
+ "shortestRoundTripNano": 67978284,
+ "longestRoundTripNano": 187315277,
+ "averageApexExecutionNano": 68783415,
+ "shortestApexExecutionNano": 5383449,
+ "longestApexExecutionNano": 135708953
+ },
+ {
+ "batchNumber": 3045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157407919,
+ "shortestRoundTripNano": 50644220,
+ "longestRoundTripNano": 194118505,
+ "averageApexExecutionNano": 59119885,
+ "shortestApexExecutionNano": 9500571,
+ "longestApexExecutionNano": 127943917
+ },
+ {
+ "batchNumber": 3046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145267577,
+ "shortestRoundTripNano": 48820642,
+ "longestRoundTripNano": 177241543,
+ "averageApexExecutionNano": 61600405,
+ "shortestApexExecutionNano": 7197413,
+ "longestApexExecutionNano": 123999696
+ },
+ {
+ "batchNumber": 3047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175114703,
+ "shortestRoundTripNano": 93341136,
+ "longestRoundTripNano": 201926666,
+ "averageApexExecutionNano": 67708553,
+ "shortestApexExecutionNano": 12858346,
+ "longestApexExecutionNano": 137325455
+ },
+ {
+ "batchNumber": 3048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152583312,
+ "shortestRoundTripNano": 43272929,
+ "longestRoundTripNano": 181659718,
+ "averageApexExecutionNano": 63716499,
+ "shortestApexExecutionNano": 8140583,
+ "longestApexExecutionNano": 131971294
+ },
+ {
+ "batchNumber": 3049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137061558,
+ "shortestRoundTripNano": 54637819,
+ "longestRoundTripNano": 175491828,
+ "averageApexExecutionNano": 44921764,
+ "shortestApexExecutionNano": 7915305,
+ "longestApexExecutionNano": 108088589
+ },
+ {
+ "batchNumber": 3050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149007048,
+ "shortestRoundTripNano": 77420569,
+ "longestRoundTripNano": 172908328,
+ "averageApexExecutionNano": 55637920,
+ "shortestApexExecutionNano": 10222894,
+ "longestApexExecutionNano": 103518339
+ },
+ {
+ "batchNumber": 3051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131114986,
+ "shortestRoundTripNano": 60142260,
+ "longestRoundTripNano": 153194088,
+ "averageApexExecutionNano": 56742315,
+ "shortestApexExecutionNano": 7768985,
+ "longestApexExecutionNano": 111114826
+ },
+ {
+ "batchNumber": 3052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140999695,
+ "shortestRoundTripNano": 79123692,
+ "longestRoundTripNano": 163799772,
+ "averageApexExecutionNano": 53330893,
+ "shortestApexExecutionNano": 8303989,
+ "longestApexExecutionNano": 122522529
+ },
+ {
+ "batchNumber": 3053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141767401,
+ "shortestRoundTripNano": 52657307,
+ "longestRoundTripNano": 167983839,
+ "averageApexExecutionNano": 69107489,
+ "shortestApexExecutionNano": 5442934,
+ "longestApexExecutionNano": 126055835
+ },
+ {
+ "batchNumber": 3054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124112329,
+ "shortestRoundTripNano": 47412374,
+ "longestRoundTripNano": 157627937,
+ "averageApexExecutionNano": 37554168,
+ "shortestApexExecutionNano": 6594213,
+ "longestApexExecutionNano": 98440180
+ },
+ {
+ "batchNumber": 3055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157868040,
+ "shortestRoundTripNano": 47656673,
+ "longestRoundTripNano": 193563985,
+ "averageApexExecutionNano": 72057188,
+ "shortestApexExecutionNano": 11510797,
+ "longestApexExecutionNano": 145853047
+ },
+ {
+ "batchNumber": 3056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139590661,
+ "shortestRoundTripNano": 71007213,
+ "longestRoundTripNano": 171011281,
+ "averageApexExecutionNano": 56548925,
+ "shortestApexExecutionNano": 7228795,
+ "longestApexExecutionNano": 132018608
+ },
+ {
+ "batchNumber": 3057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148253070,
+ "shortestRoundTripNano": 74113242,
+ "longestRoundTripNano": 177608466,
+ "averageApexExecutionNano": 53100223,
+ "shortestApexExecutionNano": 6540041,
+ "longestApexExecutionNano": 112407037
+ },
+ {
+ "batchNumber": 3058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129844985,
+ "shortestRoundTripNano": 52000722,
+ "longestRoundTripNano": 163262844,
+ "averageApexExecutionNano": 55742242,
+ "shortestApexExecutionNano": 10215511,
+ "longestApexExecutionNano": 106855460
+ },
+ {
+ "batchNumber": 3059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163595165,
+ "shortestRoundTripNano": 54751395,
+ "longestRoundTripNano": 192236625,
+ "averageApexExecutionNano": 74002467,
+ "shortestApexExecutionNano": 11126046,
+ "longestApexExecutionNano": 136555288
+ },
+ {
+ "batchNumber": 3060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158206791,
+ "shortestRoundTripNano": 82966389,
+ "longestRoundTripNano": 188768194,
+ "averageApexExecutionNano": 56883291,
+ "shortestApexExecutionNano": 12979631,
+ "longestApexExecutionNano": 103510981
+ },
+ {
+ "batchNumber": 3061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144888616,
+ "shortestRoundTripNano": 77419149,
+ "longestRoundTripNano": 172361045,
+ "averageApexExecutionNano": 64324653,
+ "shortestApexExecutionNano": 18509579,
+ "longestApexExecutionNano": 103155469
+ },
+ {
+ "batchNumber": 3062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154785915,
+ "shortestRoundTripNano": 77466503,
+ "longestRoundTripNano": 183689883,
+ "averageApexExecutionNano": 60492811,
+ "shortestApexExecutionNano": 9659794,
+ "longestApexExecutionNano": 120957069
+ },
+ {
+ "batchNumber": 3063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153742287,
+ "shortestRoundTripNano": 40101676,
+ "longestRoundTripNano": 187090809,
+ "averageApexExecutionNano": 75024725,
+ "shortestApexExecutionNano": 11007654,
+ "longestApexExecutionNano": 141140638
+ },
+ {
+ "batchNumber": 3064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151984198,
+ "shortestRoundTripNano": 85064132,
+ "longestRoundTripNano": 187722012,
+ "averageApexExecutionNano": 55220802,
+ "shortestApexExecutionNano": 8226408,
+ "longestApexExecutionNano": 146440856
+ },
+ {
+ "batchNumber": 3065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167540522,
+ "shortestRoundTripNano": 58696819,
+ "longestRoundTripNano": 195981410,
+ "averageApexExecutionNano": 76356381,
+ "shortestApexExecutionNano": 11195233,
+ "longestApexExecutionNano": 146969102
+ },
+ {
+ "batchNumber": 3066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 194241802,
+ "shortestRoundTripNano": 112878189,
+ "longestRoundTripNano": 225911180,
+ "averageApexExecutionNano": 92870388,
+ "shortestApexExecutionNano": 5774377,
+ "longestApexExecutionNano": 158368950
+ },
+ {
+ "batchNumber": 3067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143713481,
+ "shortestRoundTripNano": 70567882,
+ "longestRoundTripNano": 196750774,
+ "averageApexExecutionNano": 41558164,
+ "shortestApexExecutionNano": 6532401,
+ "longestApexExecutionNano": 106456627
+ },
+ {
+ "batchNumber": 3068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139396902,
+ "shortestRoundTripNano": 79090349,
+ "longestRoundTripNano": 163938910,
+ "averageApexExecutionNano": 63219493,
+ "shortestApexExecutionNano": 15533753,
+ "longestApexExecutionNano": 123300205
+ },
+ {
+ "batchNumber": 3069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175270675,
+ "shortestRoundTripNano": 86999472,
+ "longestRoundTripNano": 202210521,
+ "averageApexExecutionNano": 66120684,
+ "shortestApexExecutionNano": 15151293,
+ "longestApexExecutionNano": 126145755
+ },
+ {
+ "batchNumber": 3070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163707528,
+ "shortestRoundTripNano": 93358250,
+ "longestRoundTripNano": 200019956,
+ "averageApexExecutionNano": 86352163,
+ "shortestApexExecutionNano": 13089742,
+ "longestApexExecutionNano": 150583893
+ },
+ {
+ "batchNumber": 3071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140183554,
+ "shortestRoundTripNano": 79366307,
+ "longestRoundTripNano": 179786359,
+ "averageApexExecutionNano": 43980631,
+ "shortestApexExecutionNano": 6218542,
+ "longestApexExecutionNano": 106412224
+ },
+ {
+ "batchNumber": 3072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148240370,
+ "shortestRoundTripNano": 43282058,
+ "longestRoundTripNano": 186351425,
+ "averageApexExecutionNano": 70648195,
+ "shortestApexExecutionNano": 7100839,
+ "longestApexExecutionNano": 142152251
+ },
+ {
+ "batchNumber": 3073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150182090,
+ "shortestRoundTripNano": 62873321,
+ "longestRoundTripNano": 178658490,
+ "averageApexExecutionNano": 68433062,
+ "shortestApexExecutionNano": 8561217,
+ "longestApexExecutionNano": 135801524
+ },
+ {
+ "batchNumber": 3074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148376245,
+ "shortestRoundTripNano": 62725811,
+ "longestRoundTripNano": 180192383,
+ "averageApexExecutionNano": 54242660,
+ "shortestApexExecutionNano": 6972194,
+ "longestApexExecutionNano": 96800767
+ },
+ {
+ "batchNumber": 3075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151010056,
+ "shortestRoundTripNano": 60569186,
+ "longestRoundTripNano": 193182453,
+ "averageApexExecutionNano": 69140032,
+ "shortestApexExecutionNano": 7455314,
+ "longestApexExecutionNano": 121433052
+ },
+ {
+ "batchNumber": 3076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148688938,
+ "shortestRoundTripNano": 63468205,
+ "longestRoundTripNano": 189024940,
+ "averageApexExecutionNano": 54978221,
+ "shortestApexExecutionNano": 8274153,
+ "longestApexExecutionNano": 132904410
+ },
+ {
+ "batchNumber": 3077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141361627,
+ "shortestRoundTripNano": 40134260,
+ "longestRoundTripNano": 173922957,
+ "averageApexExecutionNano": 65301876,
+ "shortestApexExecutionNano": 9463504,
+ "longestApexExecutionNano": 135618061
+ },
+ {
+ "batchNumber": 3078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149740030,
+ "shortestRoundTripNano": 73747949,
+ "longestRoundTripNano": 178523172,
+ "averageApexExecutionNano": 65533606,
+ "shortestApexExecutionNano": 10667823,
+ "longestApexExecutionNano": 122476795
+ },
+ {
+ "batchNumber": 3079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145187888,
+ "shortestRoundTripNano": 60908164,
+ "longestRoundTripNano": 175683603,
+ "averageApexExecutionNano": 50533773,
+ "shortestApexExecutionNano": 8590826,
+ "longestApexExecutionNano": 136056383
+ },
+ {
+ "batchNumber": 3080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139333548,
+ "shortestRoundTripNano": 69465979,
+ "longestRoundTripNano": 172044022,
+ "averageApexExecutionNano": 67938511,
+ "shortestApexExecutionNano": 7527222,
+ "longestApexExecutionNano": 131525611
+ },
+ {
+ "batchNumber": 3081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154001438,
+ "shortestRoundTripNano": 77373387,
+ "longestRoundTripNano": 194536471,
+ "averageApexExecutionNano": 62765908,
+ "shortestApexExecutionNano": 8151390,
+ "longestApexExecutionNano": 152569178
+ },
+ {
+ "batchNumber": 3082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157648898,
+ "shortestRoundTripNano": 42060622,
+ "longestRoundTripNano": 187632437,
+ "averageApexExecutionNano": 60985806,
+ "shortestApexExecutionNano": 9471200,
+ "longestApexExecutionNano": 143554052
+ },
+ {
+ "batchNumber": 3083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147071574,
+ "shortestRoundTripNano": 61849720,
+ "longestRoundTripNano": 179579467,
+ "averageApexExecutionNano": 57821697,
+ "shortestApexExecutionNano": 5837639,
+ "longestApexExecutionNano": 110288900
+ },
+ {
+ "batchNumber": 3084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145890123,
+ "shortestRoundTripNano": 75528486,
+ "longestRoundTripNano": 171430297,
+ "averageApexExecutionNano": 74841597,
+ "shortestApexExecutionNano": 8631832,
+ "longestApexExecutionNano": 128250580
+ },
+ {
+ "batchNumber": 3085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137437152,
+ "shortestRoundTripNano": 63702205,
+ "longestRoundTripNano": 160822006,
+ "averageApexExecutionNano": 48341268,
+ "shortestApexExecutionNano": 6270549,
+ "longestApexExecutionNano": 113139895
+ },
+ {
+ "batchNumber": 3086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158217183,
+ "shortestRoundTripNano": 81494328,
+ "longestRoundTripNano": 186478172,
+ "averageApexExecutionNano": 57193998,
+ "shortestApexExecutionNano": 9462912,
+ "longestApexExecutionNano": 98147908
+ },
+ {
+ "batchNumber": 3087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135837282,
+ "shortestRoundTripNano": 72106089,
+ "longestRoundTripNano": 161613990,
+ "averageApexExecutionNano": 63804673,
+ "shortestApexExecutionNano": 7435433,
+ "longestApexExecutionNano": 111997544
+ },
+ {
+ "batchNumber": 3088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155079545,
+ "shortestRoundTripNano": 68293202,
+ "longestRoundTripNano": 190076670,
+ "averageApexExecutionNano": 67923182,
+ "shortestApexExecutionNano": 5419083,
+ "longestApexExecutionNano": 141635424
+ },
+ {
+ "batchNumber": 3089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152350493,
+ "shortestRoundTripNano": 64577054,
+ "longestRoundTripNano": 180350667,
+ "averageApexExecutionNano": 72679461,
+ "shortestApexExecutionNano": 10006424,
+ "longestApexExecutionNano": 139342464
+ },
+ {
+ "batchNumber": 3090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143297655,
+ "shortestRoundTripNano": 57275233,
+ "longestRoundTripNano": 174268040,
+ "averageApexExecutionNano": 36551055,
+ "shortestApexExecutionNano": 4881123,
+ "longestApexExecutionNano": 108019440
+ },
+ {
+ "batchNumber": 3091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130966483,
+ "shortestRoundTripNano": 65282312,
+ "longestRoundTripNano": 154884338,
+ "averageApexExecutionNano": 57534461,
+ "shortestApexExecutionNano": 7770763,
+ "longestApexExecutionNano": 109473103
+ },
+ {
+ "batchNumber": 3092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167864651,
+ "shortestRoundTripNano": 85413081,
+ "longestRoundTripNano": 193448888,
+ "averageApexExecutionNano": 79271975,
+ "shortestApexExecutionNano": 13542100,
+ "longestApexExecutionNano": 135080243
+ },
+ {
+ "batchNumber": 3093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138420430,
+ "shortestRoundTripNano": 54296720,
+ "longestRoundTripNano": 168734254,
+ "averageApexExecutionNano": 55637125,
+ "shortestApexExecutionNano": 10549453,
+ "longestApexExecutionNano": 109350401
+ },
+ {
+ "batchNumber": 3094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127418295,
+ "shortestRoundTripNano": 63999642,
+ "longestRoundTripNano": 150031071,
+ "averageApexExecutionNano": 49283634,
+ "shortestApexExecutionNano": 9207144,
+ "longestApexExecutionNano": 98166569
+ },
+ {
+ "batchNumber": 3095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134277703,
+ "shortestRoundTripNano": 51044794,
+ "longestRoundTripNano": 167671529,
+ "averageApexExecutionNano": 55088638,
+ "shortestApexExecutionNano": 5642546,
+ "longestApexExecutionNano": 126571151
+ },
+ {
+ "batchNumber": 3096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153619044,
+ "shortestRoundTripNano": 94010118,
+ "longestRoundTripNano": 197077365,
+ "averageApexExecutionNano": 70785077,
+ "shortestApexExecutionNano": 10008821,
+ "longestApexExecutionNano": 119774508
+ },
+ {
+ "batchNumber": 3097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145307299,
+ "shortestRoundTripNano": 70630311,
+ "longestRoundTripNano": 183487368,
+ "averageApexExecutionNano": 59537453,
+ "shortestApexExecutionNano": 6946659,
+ "longestApexExecutionNano": 131544002
+ },
+ {
+ "batchNumber": 3098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154712994,
+ "shortestRoundTripNano": 61432970,
+ "longestRoundTripNano": 188853930,
+ "averageApexExecutionNano": 72141682,
+ "shortestApexExecutionNano": 9804869,
+ "longestApexExecutionNano": 125527394
+ },
+ {
+ "batchNumber": 3099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155324503,
+ "shortestRoundTripNano": 88760641,
+ "longestRoundTripNano": 180043913,
+ "averageApexExecutionNano": 81172422,
+ "shortestApexExecutionNano": 10667684,
+ "longestApexExecutionNano": 126952151
+ },
+ {
+ "batchNumber": 3100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128168000,
+ "shortestRoundTripNano": 64051860,
+ "longestRoundTripNano": 159344280,
+ "averageApexExecutionNano": 46899845,
+ "shortestApexExecutionNano": 5435081,
+ "longestApexExecutionNano": 106005716
+ },
+ {
+ "batchNumber": 3101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129172197,
+ "shortestRoundTripNano": 76454591,
+ "longestRoundTripNano": 158670742,
+ "averageApexExecutionNano": 61179951,
+ "shortestApexExecutionNano": 6429235,
+ "longestApexExecutionNano": 114850552
+ },
+ {
+ "batchNumber": 3102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138221859,
+ "shortestRoundTripNano": 60983399,
+ "longestRoundTripNano": 168457623,
+ "averageApexExecutionNano": 63711337,
+ "shortestApexExecutionNano": 16612395,
+ "longestApexExecutionNano": 126385051
+ },
+ {
+ "batchNumber": 3103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153967142,
+ "shortestRoundTripNano": 71998901,
+ "longestRoundTripNano": 188614534,
+ "averageApexExecutionNano": 49100172,
+ "shortestApexExecutionNano": 5600545,
+ "longestApexExecutionNano": 144115365
+ },
+ {
+ "batchNumber": 3104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153931706,
+ "shortestRoundTripNano": 81615578,
+ "longestRoundTripNano": 196224507,
+ "averageApexExecutionNano": 57512976,
+ "shortestApexExecutionNano": 11391395,
+ "longestApexExecutionNano": 114995128
+ },
+ {
+ "batchNumber": 3105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139330761,
+ "shortestRoundTripNano": 73224668,
+ "longestRoundTripNano": 172854200,
+ "averageApexExecutionNano": 63517695,
+ "shortestApexExecutionNano": 6633140,
+ "longestApexExecutionNano": 120881213
+ },
+ {
+ "batchNumber": 3106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140335213,
+ "shortestRoundTripNano": 71723524,
+ "longestRoundTripNano": 173351522,
+ "averageApexExecutionNano": 63733377,
+ "shortestApexExecutionNano": 9847168,
+ "longestApexExecutionNano": 116164924
+ },
+ {
+ "batchNumber": 3107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153444265,
+ "shortestRoundTripNano": 65511106,
+ "longestRoundTripNano": 181513496,
+ "averageApexExecutionNano": 63675111,
+ "shortestApexExecutionNano": 10324699,
+ "longestApexExecutionNano": 118300897
+ },
+ {
+ "batchNumber": 3108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 209110371,
+ "shortestRoundTripNano": 56832903,
+ "longestRoundTripNano": 243278345,
+ "averageApexExecutionNano": 91173749,
+ "shortestApexExecutionNano": 29699620,
+ "longestApexExecutionNano": 165258249
+ },
+ {
+ "batchNumber": 3109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149829235,
+ "shortestRoundTripNano": 34633105,
+ "longestRoundTripNano": 190990051,
+ "averageApexExecutionNano": 66742808,
+ "shortestApexExecutionNano": 8125531,
+ "longestApexExecutionNano": 135764022
+ },
+ {
+ "batchNumber": 3110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143814301,
+ "shortestRoundTripNano": 64097061,
+ "longestRoundTripNano": 177147955,
+ "averageApexExecutionNano": 65323477,
+ "shortestApexExecutionNano": 6372879,
+ "longestApexExecutionNano": 120941906
+ },
+ {
+ "batchNumber": 3111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148321893,
+ "shortestRoundTripNano": 57294147,
+ "longestRoundTripNano": 180613317,
+ "averageApexExecutionNano": 53730499,
+ "shortestApexExecutionNano": 8134717,
+ "longestApexExecutionNano": 118709883
+ },
+ {
+ "batchNumber": 3112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140032357,
+ "shortestRoundTripNano": 51005709,
+ "longestRoundTripNano": 170929374,
+ "averageApexExecutionNano": 63404599,
+ "shortestApexExecutionNano": 7040563,
+ "longestApexExecutionNano": 127707182
+ },
+ {
+ "batchNumber": 3113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125737433,
+ "shortestRoundTripNano": 43819476,
+ "longestRoundTripNano": 152589878,
+ "averageApexExecutionNano": 39483432,
+ "shortestApexExecutionNano": 6435438,
+ "longestApexExecutionNano": 99589321
+ },
+ {
+ "batchNumber": 3114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146472452,
+ "shortestRoundTripNano": 80200405,
+ "longestRoundTripNano": 173383063,
+ "averageApexExecutionNano": 59002178,
+ "shortestApexExecutionNano": 8503868,
+ "longestApexExecutionNano": 113859448
+ },
+ {
+ "batchNumber": 3115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140480296,
+ "shortestRoundTripNano": 57390612,
+ "longestRoundTripNano": 168010881,
+ "averageApexExecutionNano": 60971475,
+ "shortestApexExecutionNano": 17378486,
+ "longestApexExecutionNano": 103816247
+ },
+ {
+ "batchNumber": 3116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161756900,
+ "shortestRoundTripNano": 69695894,
+ "longestRoundTripNano": 187956702,
+ "averageApexExecutionNano": 67139633,
+ "shortestApexExecutionNano": 10376904,
+ "longestApexExecutionNano": 124725784
+ },
+ {
+ "batchNumber": 3117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168774645,
+ "shortestRoundTripNano": 89030444,
+ "longestRoundTripNano": 204562569,
+ "averageApexExecutionNano": 73790647,
+ "shortestApexExecutionNano": 8755397,
+ "longestApexExecutionNano": 143363508
+ },
+ {
+ "batchNumber": 3118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152064431,
+ "shortestRoundTripNano": 45603175,
+ "longestRoundTripNano": 188365821,
+ "averageApexExecutionNano": 51730984,
+ "shortestApexExecutionNano": 6167323,
+ "longestApexExecutionNano": 123833769
+ },
+ {
+ "batchNumber": 3119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154055606,
+ "shortestRoundTripNano": 51456205,
+ "longestRoundTripNano": 190698285,
+ "averageApexExecutionNano": 70685848,
+ "shortestApexExecutionNano": 10802783,
+ "longestApexExecutionNano": 149547588
+ },
+ {
+ "batchNumber": 3120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172172080,
+ "shortestRoundTripNano": 83680207,
+ "longestRoundTripNano": 197361726,
+ "averageApexExecutionNano": 81714322,
+ "shortestApexExecutionNano": 7524717,
+ "longestApexExecutionNano": 134989478
+ },
+ {
+ "batchNumber": 3121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146252086,
+ "shortestRoundTripNano": 66396542,
+ "longestRoundTripNano": 177382937,
+ "averageApexExecutionNano": 44979183,
+ "shortestApexExecutionNano": 7782809,
+ "longestApexExecutionNano": 87846557
+ },
+ {
+ "batchNumber": 3122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141777643,
+ "shortestRoundTripNano": 70954640,
+ "longestRoundTripNano": 181545736,
+ "averageApexExecutionNano": 64201330,
+ "shortestApexExecutionNano": 6699344,
+ "longestApexExecutionNano": 118839872
+ },
+ {
+ "batchNumber": 3123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124969215,
+ "shortestRoundTripNano": 53530787,
+ "longestRoundTripNano": 154566652,
+ "averageApexExecutionNano": 51427157,
+ "shortestApexExecutionNano": 5365666,
+ "longestApexExecutionNano": 101908950
+ },
+ {
+ "batchNumber": 3124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130150756,
+ "shortestRoundTripNano": 55145261,
+ "longestRoundTripNano": 166387950,
+ "averageApexExecutionNano": 44811219,
+ "shortestApexExecutionNano": 5602071,
+ "longestApexExecutionNano": 116094789
+ },
+ {
+ "batchNumber": 3125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150025071,
+ "shortestRoundTripNano": 64849312,
+ "longestRoundTripNano": 181516727,
+ "averageApexExecutionNano": 58885248,
+ "shortestApexExecutionNano": 8831740,
+ "longestApexExecutionNano": 142657645
+ },
+ {
+ "batchNumber": 3126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168527024,
+ "shortestRoundTripNano": 54960567,
+ "longestRoundTripNano": 217980261,
+ "averageApexExecutionNano": 75564692,
+ "shortestApexExecutionNano": 10807744,
+ "longestApexExecutionNano": 135718645
+ },
+ {
+ "batchNumber": 3127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150098650,
+ "shortestRoundTripNano": 83154662,
+ "longestRoundTripNano": 182035595,
+ "averageApexExecutionNano": 71594611,
+ "shortestApexExecutionNano": 6269920,
+ "longestApexExecutionNano": 125983555
+ },
+ {
+ "batchNumber": 3128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158322604,
+ "shortestRoundTripNano": 64955154,
+ "longestRoundTripNano": 185876934,
+ "averageApexExecutionNano": 70591738,
+ "shortestApexExecutionNano": 5682843,
+ "longestApexExecutionNano": 114375977
+ },
+ {
+ "batchNumber": 3129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157044998,
+ "shortestRoundTripNano": 81918843,
+ "longestRoundTripNano": 184638256,
+ "averageApexExecutionNano": 64906011,
+ "shortestApexExecutionNano": 5061042,
+ "longestApexExecutionNano": 133598584
+ },
+ {
+ "batchNumber": 3130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135514843,
+ "shortestRoundTripNano": 52568604,
+ "longestRoundTripNano": 168980128,
+ "averageApexExecutionNano": 49431002,
+ "shortestApexExecutionNano": 8917143,
+ "longestApexExecutionNano": 115710317
+ },
+ {
+ "batchNumber": 3131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144768559,
+ "shortestRoundTripNano": 76656753,
+ "longestRoundTripNano": 168947602,
+ "averageApexExecutionNano": 56423406,
+ "shortestApexExecutionNano": 8079218,
+ "longestApexExecutionNano": 119191544
+ },
+ {
+ "batchNumber": 3132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167438189,
+ "shortestRoundTripNano": 69800926,
+ "longestRoundTripNano": 197712256,
+ "averageApexExecutionNano": 93806741,
+ "shortestApexExecutionNano": 6961907,
+ "longestApexExecutionNano": 145378103
+ },
+ {
+ "batchNumber": 3133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175853518,
+ "shortestRoundTripNano": 83163770,
+ "longestRoundTripNano": 205374202,
+ "averageApexExecutionNano": 74164749,
+ "shortestApexExecutionNano": 7283639,
+ "longestApexExecutionNano": 157019905
+ },
+ {
+ "batchNumber": 3134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157648885,
+ "shortestRoundTripNano": 40642197,
+ "longestRoundTripNano": 205909205,
+ "averageApexExecutionNano": 62102126,
+ "shortestApexExecutionNano": 9648614,
+ "longestApexExecutionNano": 133838716
+ },
+ {
+ "batchNumber": 3135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138617718,
+ "shortestRoundTripNano": 69569043,
+ "longestRoundTripNano": 165409544,
+ "averageApexExecutionNano": 57558023,
+ "shortestApexExecutionNano": 5361295,
+ "longestApexExecutionNano": 120960840
+ },
+ {
+ "batchNumber": 3136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141648339,
+ "shortestRoundTripNano": 64146133,
+ "longestRoundTripNano": 175829834,
+ "averageApexExecutionNano": 60928938,
+ "shortestApexExecutionNano": 9509053,
+ "longestApexExecutionNano": 114850989
+ },
+ {
+ "batchNumber": 3137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130641061,
+ "shortestRoundTripNano": 71938146,
+ "longestRoundTripNano": 154165661,
+ "averageApexExecutionNano": 59939976,
+ "shortestApexExecutionNano": 5796591,
+ "longestApexExecutionNano": 113115483
+ },
+ {
+ "batchNumber": 3138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146594411,
+ "shortestRoundTripNano": 50749721,
+ "longestRoundTripNano": 184547877,
+ "averageApexExecutionNano": 54961835,
+ "shortestApexExecutionNano": 9559657,
+ "longestApexExecutionNano": 114095933
+ },
+ {
+ "batchNumber": 3139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180237588,
+ "shortestRoundTripNano": 45279751,
+ "longestRoundTripNano": 227130572,
+ "averageApexExecutionNano": 99326460,
+ "shortestApexExecutionNano": 7929223,
+ "longestApexExecutionNano": 177360140
+ },
+ {
+ "batchNumber": 3140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35886",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151926812,
+ "shortestRoundTripNano": 62088519,
+ "longestRoundTripNano": 183639526,
+ "averageApexExecutionNano": 62586027,
+ "shortestApexExecutionNano": 8488649,
+ "longestApexExecutionNano": 128538821
+ },
+ {
+ "batchNumber": 3141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35886",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164682737,
+ "shortestRoundTripNano": 92824334,
+ "longestRoundTripNano": 194710403,
+ "averageApexExecutionNano": 78617634,
+ "shortestApexExecutionNano": 7566443,
+ "longestApexExecutionNano": 146797117
+ },
+ {
+ "batchNumber": 3142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35886",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158935306,
+ "shortestRoundTripNano": 75185798,
+ "longestRoundTripNano": 195446155,
+ "averageApexExecutionNano": 57226872,
+ "shortestApexExecutionNano": 10367651,
+ "longestApexExecutionNano": 114023276
+ },
+ {
+ "batchNumber": 3143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35886",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176488028,
+ "shortestRoundTripNano": 44903331,
+ "longestRoundTripNano": 207846710,
+ "averageApexExecutionNano": 79961094,
+ "shortestApexExecutionNano": 18007208,
+ "longestApexExecutionNano": 154958350
+ },
+ {
+ "batchNumber": 3144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139357993,
+ "shortestRoundTripNano": 74762465,
+ "longestRoundTripNano": 176981793,
+ "averageApexExecutionNano": 47937591,
+ "shortestApexExecutionNano": 6116907,
+ "longestApexExecutionNano": 119294841
+ },
+ {
+ "batchNumber": 3145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130260167,
+ "shortestRoundTripNano": 57684638,
+ "longestRoundTripNano": 156637455,
+ "averageApexExecutionNano": 48796579,
+ "shortestApexExecutionNano": 8047423,
+ "longestApexExecutionNano": 90564218
+ },
+ {
+ "batchNumber": 3146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138370448,
+ "shortestRoundTripNano": 68150412,
+ "longestRoundTripNano": 187564272,
+ "averageApexExecutionNano": 53667331,
+ "shortestApexExecutionNano": 11044814,
+ "longestApexExecutionNano": 116126958
+ },
+ {
+ "batchNumber": 3147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165429455,
+ "shortestRoundTripNano": 67792660,
+ "longestRoundTripNano": 195989232,
+ "averageApexExecutionNano": 79956914,
+ "shortestApexExecutionNano": 10998422,
+ "longestApexExecutionNano": 148264725
+ },
+ {
+ "batchNumber": 3148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139291495,
+ "shortestRoundTripNano": 57682671,
+ "longestRoundTripNano": 184283359,
+ "averageApexExecutionNano": 60507767,
+ "shortestApexExecutionNano": 5012365,
+ "longestApexExecutionNano": 114551129
+ },
+ {
+ "batchNumber": 3149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184498085,
+ "shortestRoundTripNano": 87437315,
+ "longestRoundTripNano": 219545434,
+ "averageApexExecutionNano": 86368220,
+ "shortestApexExecutionNano": 11353373,
+ "longestApexExecutionNano": 177152224
+ },
+ {
+ "batchNumber": 3150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166706409,
+ "shortestRoundTripNano": 106336416,
+ "longestRoundTripNano": 192253155,
+ "averageApexExecutionNano": 45869417,
+ "shortestApexExecutionNano": 5689569,
+ "longestApexExecutionNano": 119307683
+ },
+ {
+ "batchNumber": 3151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142028967,
+ "shortestRoundTripNano": 45479851,
+ "longestRoundTripNano": 170876018,
+ "averageApexExecutionNano": 58082031,
+ "shortestApexExecutionNano": 5293531,
+ "longestApexExecutionNano": 129327303
+ },
+ {
+ "batchNumber": 3152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133410926,
+ "shortestRoundTripNano": 62440844,
+ "longestRoundTripNano": 164252838,
+ "averageApexExecutionNano": 62624911,
+ "shortestApexExecutionNano": 9133906,
+ "longestApexExecutionNano": 114419506
+ },
+ {
+ "batchNumber": 3153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142129008,
+ "shortestRoundTripNano": 70551207,
+ "longestRoundTripNano": 170946232,
+ "averageApexExecutionNano": 52192879,
+ "shortestApexExecutionNano": 6782374,
+ "longestApexExecutionNano": 95224831
+ },
+ {
+ "batchNumber": 3154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157971013,
+ "shortestRoundTripNano": 53452328,
+ "longestRoundTripNano": 205249709,
+ "averageApexExecutionNano": 57038514,
+ "shortestApexExecutionNano": 5457908,
+ "longestApexExecutionNano": 128148691
+ },
+ {
+ "batchNumber": 3155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149910356,
+ "shortestRoundTripNano": 66182124,
+ "longestRoundTripNano": 177019118,
+ "averageApexExecutionNano": 66013892,
+ "shortestApexExecutionNano": 7539660,
+ "longestApexExecutionNano": 121632649
+ },
+ {
+ "batchNumber": 3156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131917445,
+ "shortestRoundTripNano": 56376163,
+ "longestRoundTripNano": 173262837,
+ "averageApexExecutionNano": 58110850,
+ "shortestApexExecutionNano": 8722428,
+ "longestApexExecutionNano": 128643628
+ },
+ {
+ "batchNumber": 3157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144584466,
+ "shortestRoundTripNano": 72903685,
+ "longestRoundTripNano": 175791033,
+ "averageApexExecutionNano": 59241743,
+ "shortestApexExecutionNano": 5858080,
+ "longestApexExecutionNano": 118654804
+ },
+ {
+ "batchNumber": 3158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148406146,
+ "shortestRoundTripNano": 56110515,
+ "longestRoundTripNano": 185567362,
+ "averageApexExecutionNano": 54846081,
+ "shortestApexExecutionNano": 8259507,
+ "longestApexExecutionNano": 139217812
+ },
+ {
+ "batchNumber": 3159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156679261,
+ "shortestRoundTripNano": 81626633,
+ "longestRoundTripNano": 183723014,
+ "averageApexExecutionNano": 80673904,
+ "shortestApexExecutionNano": 13099624,
+ "longestApexExecutionNano": 146827768
+ },
+ {
+ "batchNumber": 3160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132054424,
+ "shortestRoundTripNano": 60147495,
+ "longestRoundTripNano": 164207019,
+ "averageApexExecutionNano": 48632961,
+ "shortestApexExecutionNano": 5285994,
+ "longestApexExecutionNano": 124310018
+ },
+ {
+ "batchNumber": 3161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157752479,
+ "shortestRoundTripNano": 89446583,
+ "longestRoundTripNano": 181834546,
+ "averageApexExecutionNano": 73608734,
+ "shortestApexExecutionNano": 7651207,
+ "longestApexExecutionNano": 118152331
+ },
+ {
+ "batchNumber": 3162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151139682,
+ "shortestRoundTripNano": 58697849,
+ "longestRoundTripNano": 182067041,
+ "averageApexExecutionNano": 56335474,
+ "shortestApexExecutionNano": 8369805,
+ "longestApexExecutionNano": 145043412
+ },
+ {
+ "batchNumber": 3163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152132146,
+ "shortestRoundTripNano": 72236768,
+ "longestRoundTripNano": 176883949,
+ "averageApexExecutionNano": 60106514,
+ "shortestApexExecutionNano": 7478991,
+ "longestApexExecutionNano": 124218022
+ },
+ {
+ "batchNumber": 3164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149889618,
+ "shortestRoundTripNano": 90237941,
+ "longestRoundTripNano": 176915199,
+ "averageApexExecutionNano": 55303676,
+ "shortestApexExecutionNano": 8281761,
+ "longestApexExecutionNano": 118417110
+ },
+ {
+ "batchNumber": 3165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141940023,
+ "shortestRoundTripNano": 74462520,
+ "longestRoundTripNano": 166691266,
+ "averageApexExecutionNano": 53915471,
+ "shortestApexExecutionNano": 7904233,
+ "longestApexExecutionNano": 108173360
+ },
+ {
+ "batchNumber": 3166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154570875,
+ "shortestRoundTripNano": 57367962,
+ "longestRoundTripNano": 185512375,
+ "averageApexExecutionNano": 62307509,
+ "shortestApexExecutionNano": 7492813,
+ "longestApexExecutionNano": 135720900
+ },
+ {
+ "batchNumber": 3167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145338029,
+ "shortestRoundTripNano": 65239570,
+ "longestRoundTripNano": 181684352,
+ "averageApexExecutionNano": 63650397,
+ "shortestApexExecutionNano": 9144426,
+ "longestApexExecutionNano": 133306633
+ },
+ {
+ "batchNumber": 3168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150943996,
+ "shortestRoundTripNano": 49984967,
+ "longestRoundTripNano": 175020682,
+ "averageApexExecutionNano": 72259467,
+ "shortestApexExecutionNano": 11875828,
+ "longestApexExecutionNano": 120087227
+ },
+ {
+ "batchNumber": 3169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132725181,
+ "shortestRoundTripNano": 64081827,
+ "longestRoundTripNano": 161158481,
+ "averageApexExecutionNano": 53435754,
+ "shortestApexExecutionNano": 7837508,
+ "longestApexExecutionNano": 122865381
+ },
+ {
+ "batchNumber": 3170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148736138,
+ "shortestRoundTripNano": 55268802,
+ "longestRoundTripNano": 182988843,
+ "averageApexExecutionNano": 60753887,
+ "shortestApexExecutionNano": 10037510,
+ "longestApexExecutionNano": 115766888
+ },
+ {
+ "batchNumber": 3171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134655220,
+ "shortestRoundTripNano": 37071082,
+ "longestRoundTripNano": 161776280,
+ "averageApexExecutionNano": 54735316,
+ "shortestApexExecutionNano": 8325472,
+ "longestApexExecutionNano": 112380460
+ },
+ {
+ "batchNumber": 3172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166081114,
+ "shortestRoundTripNano": 64133282,
+ "longestRoundTripNano": 195202304,
+ "averageApexExecutionNano": 66481074,
+ "shortestApexExecutionNano": 8453061,
+ "longestApexExecutionNano": 132563853
+ },
+ {
+ "batchNumber": 3173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154923830,
+ "shortestRoundTripNano": 66347271,
+ "longestRoundTripNano": 190798431,
+ "averageApexExecutionNano": 64814554,
+ "shortestApexExecutionNano": 6086394,
+ "longestApexExecutionNano": 112606855
+ },
+ {
+ "batchNumber": 3174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160810483,
+ "shortestRoundTripNano": 53635357,
+ "longestRoundTripNano": 193325256,
+ "averageApexExecutionNano": 63905349,
+ "shortestApexExecutionNano": 12536177,
+ "longestApexExecutionNano": 135591982
+ },
+ {
+ "batchNumber": 3175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144209123,
+ "shortestRoundTripNano": 93636861,
+ "longestRoundTripNano": 166024777,
+ "averageApexExecutionNano": 52035590,
+ "shortestApexExecutionNano": 7740447,
+ "longestApexExecutionNano": 117418286
+ },
+ {
+ "batchNumber": 3176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148687478,
+ "shortestRoundTripNano": 54246754,
+ "longestRoundTripNano": 181261492,
+ "averageApexExecutionNano": 63352322,
+ "shortestApexExecutionNano": 14119497,
+ "longestApexExecutionNano": 113903912
+ },
+ {
+ "batchNumber": 3177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152128008,
+ "shortestRoundTripNano": 64498138,
+ "longestRoundTripNano": 184407921,
+ "averageApexExecutionNano": 64879234,
+ "shortestApexExecutionNano": 4602011,
+ "longestApexExecutionNano": 142803821
+ },
+ {
+ "batchNumber": 3178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125403312,
+ "shortestRoundTripNano": 61046694,
+ "longestRoundTripNano": 155981839,
+ "averageApexExecutionNano": 59241047,
+ "shortestApexExecutionNano": 5248361,
+ "longestApexExecutionNano": 117307906
+ },
+ {
+ "batchNumber": 3179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 227817305,
+ "shortestRoundTripNano": 50672113,
+ "longestRoundTripNano": 254736532,
+ "averageApexExecutionNano": 107509562,
+ "shortestApexExecutionNano": 11814704,
+ "longestApexExecutionNano": 211884480
+ },
+ {
+ "batchNumber": 3180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153938313,
+ "shortestRoundTripNano": 65600705,
+ "longestRoundTripNano": 185544181,
+ "averageApexExecutionNano": 64201481,
+ "shortestApexExecutionNano": 11201215,
+ "longestApexExecutionNano": 141456215
+ },
+ {
+ "batchNumber": 3181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151158688,
+ "shortestRoundTripNano": 61612483,
+ "longestRoundTripNano": 174679746,
+ "averageApexExecutionNano": 71118722,
+ "shortestApexExecutionNano": 16016267,
+ "longestApexExecutionNano": 124362766
+ },
+ {
+ "batchNumber": 3182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152469951,
+ "shortestRoundTripNano": 59782440,
+ "longestRoundTripNano": 182558336,
+ "averageApexExecutionNano": 52944186,
+ "shortestApexExecutionNano": 10620179,
+ "longestApexExecutionNano": 109788013
+ },
+ {
+ "batchNumber": 3183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129799408,
+ "shortestRoundTripNano": 55869731,
+ "longestRoundTripNano": 163575836,
+ "averageApexExecutionNano": 48763740,
+ "shortestApexExecutionNano": 6013957,
+ "longestApexExecutionNano": 108250802
+ },
+ {
+ "batchNumber": 3184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144305009,
+ "shortestRoundTripNano": 57514296,
+ "longestRoundTripNano": 171195638,
+ "averageApexExecutionNano": 60638234,
+ "shortestApexExecutionNano": 9409666,
+ "longestApexExecutionNano": 118971630
+ },
+ {
+ "batchNumber": 3185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153186854,
+ "shortestRoundTripNano": 68801254,
+ "longestRoundTripNano": 178625720,
+ "averageApexExecutionNano": 54807067,
+ "shortestApexExecutionNano": 8793933,
+ "longestApexExecutionNano": 124713388
+ },
+ {
+ "batchNumber": 3186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133251786,
+ "shortestRoundTripNano": 55495660,
+ "longestRoundTripNano": 167468348,
+ "averageApexExecutionNano": 45934850,
+ "shortestApexExecutionNano": 5715253,
+ "longestApexExecutionNano": 123840154
+ },
+ {
+ "batchNumber": 3187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131201576,
+ "shortestRoundTripNano": 47967695,
+ "longestRoundTripNano": 162475239,
+ "averageApexExecutionNano": 50176368,
+ "shortestApexExecutionNano": 8251620,
+ "longestApexExecutionNano": 110116053
+ },
+ {
+ "batchNumber": 3188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150914628,
+ "shortestRoundTripNano": 69171280,
+ "longestRoundTripNano": 174561920,
+ "averageApexExecutionNano": 59397242,
+ "shortestApexExecutionNano": 17616248,
+ "longestApexExecutionNano": 103259673
+ },
+ {
+ "batchNumber": 3189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169656671,
+ "shortestRoundTripNano": 85970363,
+ "longestRoundTripNano": 201425133,
+ "averageApexExecutionNano": 82749473,
+ "shortestApexExecutionNano": 8782521,
+ "longestApexExecutionNano": 141850756
+ },
+ {
+ "batchNumber": 3190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169588157,
+ "shortestRoundTripNano": 60697579,
+ "longestRoundTripNano": 192980518,
+ "averageApexExecutionNano": 61217017,
+ "shortestApexExecutionNano": 4592724,
+ "longestApexExecutionNano": 130956775
+ },
+ {
+ "batchNumber": 3191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149479654,
+ "shortestRoundTripNano": 60730614,
+ "longestRoundTripNano": 203674177,
+ "averageApexExecutionNano": 61778485,
+ "shortestApexExecutionNano": 7228124,
+ "longestApexExecutionNano": 122720240
+ },
+ {
+ "batchNumber": 3192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118278210,
+ "shortestRoundTripNano": 37129428,
+ "longestRoundTripNano": 147907712,
+ "averageApexExecutionNano": 45708889,
+ "shortestApexExecutionNano": 7998757,
+ "longestApexExecutionNano": 91632396
+ },
+ {
+ "batchNumber": 3193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135187290,
+ "shortestRoundTripNano": 68066125,
+ "longestRoundTripNano": 157068292,
+ "averageApexExecutionNano": 60282258,
+ "shortestApexExecutionNano": 10494247,
+ "longestApexExecutionNano": 112973965
+ },
+ {
+ "batchNumber": 3194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138638538,
+ "shortestRoundTripNano": 66544438,
+ "longestRoundTripNano": 166170500,
+ "averageApexExecutionNano": 57792804,
+ "shortestApexExecutionNano": 6177097,
+ "longestApexExecutionNano": 119445058
+ },
+ {
+ "batchNumber": 3195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132884872,
+ "shortestRoundTripNano": 50060897,
+ "longestRoundTripNano": 165939527,
+ "averageApexExecutionNano": 54419912,
+ "shortestApexExecutionNano": 5772925,
+ "longestApexExecutionNano": 120517835
+ },
+ {
+ "batchNumber": 3196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149273548,
+ "shortestRoundTripNano": 74751201,
+ "longestRoundTripNano": 173539734,
+ "averageApexExecutionNano": 58201390,
+ "shortestApexExecutionNano": 14794311,
+ "longestApexExecutionNano": 90549514
+ },
+ {
+ "batchNumber": 3197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140059574,
+ "shortestRoundTripNano": 83197447,
+ "longestRoundTripNano": 169807640,
+ "averageApexExecutionNano": 58456651,
+ "shortestApexExecutionNano": 5673474,
+ "longestApexExecutionNano": 127251343
+ },
+ {
+ "batchNumber": 3198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163511244,
+ "shortestRoundTripNano": 77012787,
+ "longestRoundTripNano": 200337380,
+ "averageApexExecutionNano": 78560819,
+ "shortestApexExecutionNano": 8861994,
+ "longestApexExecutionNano": 154797306
+ },
+ {
+ "batchNumber": 3199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148895027,
+ "shortestRoundTripNano": 36259832,
+ "longestRoundTripNano": 183579752,
+ "averageApexExecutionNano": 58444287,
+ "shortestApexExecutionNano": 9549369,
+ "longestApexExecutionNano": 131682565
+ },
+ {
+ "batchNumber": 3200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176086690,
+ "shortestRoundTripNano": 87908403,
+ "longestRoundTripNano": 202616907,
+ "averageApexExecutionNano": 78774581,
+ "shortestApexExecutionNano": 7341447,
+ "longestApexExecutionNano": 130367635
+ },
+ {
+ "batchNumber": 3201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137715864,
+ "shortestRoundTripNano": 25310756,
+ "longestRoundTripNano": 172175016,
+ "averageApexExecutionNano": 52111936,
+ "shortestApexExecutionNano": 9198168,
+ "longestApexExecutionNano": 124467363
+ },
+ {
+ "batchNumber": 3202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142236934,
+ "shortestRoundTripNano": 67354132,
+ "longestRoundTripNano": 170857408,
+ "averageApexExecutionNano": 65700806,
+ "shortestApexExecutionNano": 6288132,
+ "longestApexExecutionNano": 130379708
+ },
+ {
+ "batchNumber": 3203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139933604,
+ "shortestRoundTripNano": 49934758,
+ "longestRoundTripNano": 167730684,
+ "averageApexExecutionNano": 48980032,
+ "shortestApexExecutionNano": 10634181,
+ "longestApexExecutionNano": 86385815
+ },
+ {
+ "batchNumber": 3204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144568136,
+ "shortestRoundTripNano": 47012370,
+ "longestRoundTripNano": 172567521,
+ "averageApexExecutionNano": 51426650,
+ "shortestApexExecutionNano": 10907707,
+ "longestApexExecutionNano": 113890301
+ },
+ {
+ "batchNumber": 3205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136973314,
+ "shortestRoundTripNano": 73060189,
+ "longestRoundTripNano": 163302372,
+ "averageApexExecutionNano": 60980474,
+ "shortestApexExecutionNano": 6547384,
+ "longestApexExecutionNano": 115580530
+ },
+ {
+ "batchNumber": 3206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179127082,
+ "shortestRoundTripNano": 70966321,
+ "longestRoundTripNano": 209798641,
+ "averageApexExecutionNano": 66134947,
+ "shortestApexExecutionNano": 8592365,
+ "longestApexExecutionNano": 133782667
+ },
+ {
+ "batchNumber": 3207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135960210,
+ "shortestRoundTripNano": 38670979,
+ "longestRoundTripNano": 174982248,
+ "averageApexExecutionNano": 51465458,
+ "shortestApexExecutionNano": 9333054,
+ "longestApexExecutionNano": 126110073
+ },
+ {
+ "batchNumber": 3208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135479207,
+ "shortestRoundTripNano": 67730371,
+ "longestRoundTripNano": 161364219,
+ "averageApexExecutionNano": 46439120,
+ "shortestApexExecutionNano": 10106607,
+ "longestApexExecutionNano": 102890645
+ },
+ {
+ "batchNumber": 3209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132403952,
+ "shortestRoundTripNano": 60860393,
+ "longestRoundTripNano": 167500294,
+ "averageApexExecutionNano": 47364368,
+ "shortestApexExecutionNano": 8245965,
+ "longestApexExecutionNano": 105318011
+ },
+ {
+ "batchNumber": 3210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146743254,
+ "shortestRoundTripNano": 46989509,
+ "longestRoundTripNano": 181217108,
+ "averageApexExecutionNano": 65022373,
+ "shortestApexExecutionNano": 9679258,
+ "longestApexExecutionNano": 109081261
+ },
+ {
+ "batchNumber": 3211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136140235,
+ "shortestRoundTripNano": 62357230,
+ "longestRoundTripNano": 162367328,
+ "averageApexExecutionNano": 61425972,
+ "shortestApexExecutionNano": 9393999,
+ "longestApexExecutionNano": 125535251
+ },
+ {
+ "batchNumber": 3212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137555758,
+ "shortestRoundTripNano": 57540776,
+ "longestRoundTripNano": 166935165,
+ "averageApexExecutionNano": 60471484,
+ "shortestApexExecutionNano": 12819316,
+ "longestApexExecutionNano": 102568465
+ },
+ {
+ "batchNumber": 3213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134653968,
+ "shortestRoundTripNano": 53884960,
+ "longestRoundTripNano": 169166143,
+ "averageApexExecutionNano": 59898591,
+ "shortestApexExecutionNano": 5174321,
+ "longestApexExecutionNano": 121936280
+ },
+ {
+ "batchNumber": 3214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128982008,
+ "shortestRoundTripNano": 50377288,
+ "longestRoundTripNano": 163172921,
+ "averageApexExecutionNano": 46952609,
+ "shortestApexExecutionNano": 6919490,
+ "longestApexExecutionNano": 111125265
+ },
+ {
+ "batchNumber": 3215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125171062,
+ "shortestRoundTripNano": 43975963,
+ "longestRoundTripNano": 157191624,
+ "averageApexExecutionNano": 53369353,
+ "shortestApexExecutionNano": 9122697,
+ "longestApexExecutionNano": 106939848
+ },
+ {
+ "batchNumber": 3216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151163408,
+ "shortestRoundTripNano": 78317674,
+ "longestRoundTripNano": 180327722,
+ "averageApexExecutionNano": 56544423,
+ "shortestApexExecutionNano": 8594392,
+ "longestApexExecutionNano": 128459071
+ },
+ {
+ "batchNumber": 3217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140060975,
+ "shortestRoundTripNano": 63336692,
+ "longestRoundTripNano": 167273360,
+ "averageApexExecutionNano": 59158856,
+ "shortestApexExecutionNano": 7635234,
+ "longestApexExecutionNano": 121901280
+ },
+ {
+ "batchNumber": 3218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 113605731,
+ "shortestRoundTripNano": 59742729,
+ "longestRoundTripNano": 146355327,
+ "averageApexExecutionNano": 45192915,
+ "shortestApexExecutionNano": 6092517,
+ "longestApexExecutionNano": 104519466
+ },
+ {
+ "batchNumber": 3219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131419387,
+ "shortestRoundTripNano": 65056214,
+ "longestRoundTripNano": 156857958,
+ "averageApexExecutionNano": 54827222,
+ "shortestApexExecutionNano": 5873414,
+ "longestApexExecutionNano": 117871088
+ },
+ {
+ "batchNumber": 3220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133911060,
+ "shortestRoundTripNano": 68274924,
+ "longestRoundTripNano": 163298392,
+ "averageApexExecutionNano": 48047125,
+ "shortestApexExecutionNano": 8796765,
+ "longestApexExecutionNano": 108780553
+ },
+ {
+ "batchNumber": 3221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141154212,
+ "shortestRoundTripNano": 67962569,
+ "longestRoundTripNano": 166424596,
+ "averageApexExecutionNano": 57919410,
+ "shortestApexExecutionNano": 8233964,
+ "longestApexExecutionNano": 115007582
+ },
+ {
+ "batchNumber": 3222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131498532,
+ "shortestRoundTripNano": 61597808,
+ "longestRoundTripNano": 157521911,
+ "averageApexExecutionNano": 48694133,
+ "shortestApexExecutionNano": 9579530,
+ "longestApexExecutionNano": 101559686
+ },
+ {
+ "batchNumber": 3223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151835277,
+ "shortestRoundTripNano": 66421241,
+ "longestRoundTripNano": 177769552,
+ "averageApexExecutionNano": 65174847,
+ "shortestApexExecutionNano": 13571592,
+ "longestApexExecutionNano": 123371455
+ },
+ {
+ "batchNumber": 3224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134516069,
+ "shortestRoundTripNano": 66783991,
+ "longestRoundTripNano": 170890601,
+ "averageApexExecutionNano": 43820795,
+ "shortestApexExecutionNano": 7079650,
+ "longestApexExecutionNano": 99299440
+ },
+ {
+ "batchNumber": 3225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156384084,
+ "shortestRoundTripNano": 58060252,
+ "longestRoundTripNano": 192502311,
+ "averageApexExecutionNano": 64385465,
+ "shortestApexExecutionNano": 8900314,
+ "longestApexExecutionNano": 144944894
+ },
+ {
+ "batchNumber": 3226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123883956,
+ "shortestRoundTripNano": 50776459,
+ "longestRoundTripNano": 154810399,
+ "averageApexExecutionNano": 52729975,
+ "shortestApexExecutionNano": 8746999,
+ "longestApexExecutionNano": 114661019
+ },
+ {
+ "batchNumber": 3227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128527306,
+ "shortestRoundTripNano": 43015995,
+ "longestRoundTripNano": 151617683,
+ "averageApexExecutionNano": 56666829,
+ "shortestApexExecutionNano": 6625476,
+ "longestApexExecutionNano": 105717605
+ },
+ {
+ "batchNumber": 3228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141850278,
+ "shortestRoundTripNano": 76549391,
+ "longestRoundTripNano": 166795738,
+ "averageApexExecutionNano": 60679163,
+ "shortestApexExecutionNano": 14333724,
+ "longestApexExecutionNano": 103082665
+ },
+ {
+ "batchNumber": 3229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152487896,
+ "shortestRoundTripNano": 65495019,
+ "longestRoundTripNano": 181244547,
+ "averageApexExecutionNano": 60268645,
+ "shortestApexExecutionNano": 7708079,
+ "longestApexExecutionNano": 126615529
+ },
+ {
+ "batchNumber": 3230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35920",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156139422,
+ "shortestRoundTripNano": 58669314,
+ "longestRoundTripNano": 186884264,
+ "averageApexExecutionNano": 75724991,
+ "shortestApexExecutionNano": 10621024,
+ "longestApexExecutionNano": 138363538
+ },
+ {
+ "batchNumber": 3231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135251748,
+ "shortestRoundTripNano": 63525757,
+ "longestRoundTripNano": 164970859,
+ "averageApexExecutionNano": 53669798,
+ "shortestApexExecutionNano": 6923442,
+ "longestApexExecutionNano": 118046967
+ },
+ {
+ "batchNumber": 3232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158722904,
+ "shortestRoundTripNano": 49390329,
+ "longestRoundTripNano": 189127672,
+ "averageApexExecutionNano": 68469388,
+ "shortestApexExecutionNano": 11470356,
+ "longestApexExecutionNano": 121625846
+ },
+ {
+ "batchNumber": 3233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138743667,
+ "shortestRoundTripNano": 77175463,
+ "longestRoundTripNano": 171234868,
+ "averageApexExecutionNano": 70885012,
+ "shortestApexExecutionNano": 7915125,
+ "longestApexExecutionNano": 132900480
+ },
+ {
+ "batchNumber": 3234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150892634,
+ "shortestRoundTripNano": 65119361,
+ "longestRoundTripNano": 184408314,
+ "averageApexExecutionNano": 63906030,
+ "shortestApexExecutionNano": 8024956,
+ "longestApexExecutionNano": 109959209
+ },
+ {
+ "batchNumber": 3235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152559266,
+ "shortestRoundTripNano": 64953590,
+ "longestRoundTripNano": 191323596,
+ "averageApexExecutionNano": 66976745,
+ "shortestApexExecutionNano": 7946418,
+ "longestApexExecutionNano": 136608145
+ },
+ {
+ "batchNumber": 3236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 227804678,
+ "shortestRoundTripNano": 119963193,
+ "longestRoundTripNano": 279423285,
+ "averageApexExecutionNano": 102783477,
+ "shortestApexExecutionNano": 14576520,
+ "longestApexExecutionNano": 197860731
+ },
+ {
+ "batchNumber": 3237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148737051,
+ "shortestRoundTripNano": 64748145,
+ "longestRoundTripNano": 173715642,
+ "averageApexExecutionNano": 48969654,
+ "shortestApexExecutionNano": 8597310,
+ "longestApexExecutionNano": 106733573
+ },
+ {
+ "batchNumber": 3238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138539954,
+ "shortestRoundTripNano": 70685350,
+ "longestRoundTripNano": 168200682,
+ "averageApexExecutionNano": 65963503,
+ "shortestApexExecutionNano": 11123648,
+ "longestApexExecutionNano": 120537636
+ },
+ {
+ "batchNumber": 3239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152753755,
+ "shortestRoundTripNano": 58738745,
+ "longestRoundTripNano": 184117398,
+ "averageApexExecutionNano": 59013422,
+ "shortestApexExecutionNano": 10554338,
+ "longestApexExecutionNano": 126403204
+ },
+ {
+ "batchNumber": 3240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167073239,
+ "shortestRoundTripNano": 107556085,
+ "longestRoundTripNano": 194636213,
+ "averageApexExecutionNano": 74960651,
+ "shortestApexExecutionNano": 16461858,
+ "longestApexExecutionNano": 127053463
+ },
+ {
+ "batchNumber": 3241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141410751,
+ "shortestRoundTripNano": 58332002,
+ "longestRoundTripNano": 172213569,
+ "averageApexExecutionNano": 64078620,
+ "shortestApexExecutionNano": 9383565,
+ "longestApexExecutionNano": 106947441
+ },
+ {
+ "batchNumber": 3242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178515798,
+ "shortestRoundTripNano": 64959829,
+ "longestRoundTripNano": 216351415,
+ "averageApexExecutionNano": 71964635,
+ "shortestApexExecutionNano": 8571601,
+ "longestApexExecutionNano": 134414763
+ },
+ {
+ "batchNumber": 3243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137113662,
+ "shortestRoundTripNano": 61195832,
+ "longestRoundTripNano": 167411430,
+ "averageApexExecutionNano": 59378718,
+ "shortestApexExecutionNano": 8721269,
+ "longestApexExecutionNano": 117235467
+ },
+ {
+ "batchNumber": 3244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165453202,
+ "shortestRoundTripNano": 54458038,
+ "longestRoundTripNano": 206164277,
+ "averageApexExecutionNano": 67074393,
+ "shortestApexExecutionNano": 11218296,
+ "longestApexExecutionNano": 147824495
+ },
+ {
+ "batchNumber": 3245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162876333,
+ "shortestRoundTripNano": 54440608,
+ "longestRoundTripNano": 186587421,
+ "averageApexExecutionNano": 61453272,
+ "shortestApexExecutionNano": 8957455,
+ "longestApexExecutionNano": 139538830
+ },
+ {
+ "batchNumber": 3246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147096860,
+ "shortestRoundTripNano": 53911371,
+ "longestRoundTripNano": 189111374,
+ "averageApexExecutionNano": 65532239,
+ "shortestApexExecutionNano": 12005460,
+ "longestApexExecutionNano": 115718767
+ },
+ {
+ "batchNumber": 3247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140133271,
+ "shortestRoundTripNano": 46793663,
+ "longestRoundTripNano": 168052686,
+ "averageApexExecutionNano": 66034283,
+ "shortestApexExecutionNano": 8080383,
+ "longestApexExecutionNano": 122119257
+ },
+ {
+ "batchNumber": 3248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137389753,
+ "shortestRoundTripNano": 62623871,
+ "longestRoundTripNano": 169846426,
+ "averageApexExecutionNano": 56755109,
+ "shortestApexExecutionNano": 8589470,
+ "longestApexExecutionNano": 117078305
+ },
+ {
+ "batchNumber": 3249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160889980,
+ "shortestRoundTripNano": 81190254,
+ "longestRoundTripNano": 199048895,
+ "averageApexExecutionNano": 50579974,
+ "shortestApexExecutionNano": 10495275,
+ "longestApexExecutionNano": 131478136
+ },
+ {
+ "batchNumber": 3250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143307287,
+ "shortestRoundTripNano": 46575736,
+ "longestRoundTripNano": 180980832,
+ "averageApexExecutionNano": 78087123,
+ "shortestApexExecutionNano": 7156097,
+ "longestApexExecutionNano": 131801781
+ },
+ {
+ "batchNumber": 3251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159581343,
+ "shortestRoundTripNano": 53293531,
+ "longestRoundTripNano": 191893647,
+ "averageApexExecutionNano": 75127608,
+ "shortestApexExecutionNano": 9600888,
+ "longestApexExecutionNano": 148154992
+ },
+ {
+ "batchNumber": 3252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150739574,
+ "shortestRoundTripNano": 63807354,
+ "longestRoundTripNano": 178706124,
+ "averageApexExecutionNano": 64666356,
+ "shortestApexExecutionNano": 9121540,
+ "longestApexExecutionNano": 133457444
+ },
+ {
+ "batchNumber": 3253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149756445,
+ "shortestRoundTripNano": 73003348,
+ "longestRoundTripNano": 178598633,
+ "averageApexExecutionNano": 70211048,
+ "shortestApexExecutionNano": 7860874,
+ "longestApexExecutionNano": 121954081
+ },
+ {
+ "batchNumber": 3254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166797585,
+ "shortestRoundTripNano": 64570401,
+ "longestRoundTripNano": 205622101,
+ "averageApexExecutionNano": 69777907,
+ "shortestApexExecutionNano": 8985436,
+ "longestApexExecutionNano": 161133014
+ },
+ {
+ "batchNumber": 3255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169839140,
+ "shortestRoundTripNano": 63949413,
+ "longestRoundTripNano": 193510695,
+ "averageApexExecutionNano": 73120463,
+ "shortestApexExecutionNano": 14250172,
+ "longestApexExecutionNano": 146467458
+ },
+ {
+ "batchNumber": 3256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144867043,
+ "shortestRoundTripNano": 64758792,
+ "longestRoundTripNano": 188550024,
+ "averageApexExecutionNano": 43617804,
+ "shortestApexExecutionNano": 8286871,
+ "longestApexExecutionNano": 119737281
+ },
+ {
+ "batchNumber": 3257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160029498,
+ "shortestRoundTripNano": 47114133,
+ "longestRoundTripNano": 191575005,
+ "averageApexExecutionNano": 63150175,
+ "shortestApexExecutionNano": 5242291,
+ "longestApexExecutionNano": 142950288
+ },
+ {
+ "batchNumber": 3258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139382360,
+ "shortestRoundTripNano": 56310593,
+ "longestRoundTripNano": 171995163,
+ "averageApexExecutionNano": 49179890,
+ "shortestApexExecutionNano": 5774282,
+ "longestApexExecutionNano": 103218954
+ },
+ {
+ "batchNumber": 3259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156191067,
+ "shortestRoundTripNano": 44312315,
+ "longestRoundTripNano": 194911479,
+ "averageApexExecutionNano": 64052129,
+ "shortestApexExecutionNano": 9953494,
+ "longestApexExecutionNano": 142993012
+ },
+ {
+ "batchNumber": 3260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172990570,
+ "shortestRoundTripNano": 50580281,
+ "longestRoundTripNano": 208665486,
+ "averageApexExecutionNano": 56076060,
+ "shortestApexExecutionNano": 5329548,
+ "longestApexExecutionNano": 130896431
+ },
+ {
+ "batchNumber": 3261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156222204,
+ "shortestRoundTripNano": 42366126,
+ "longestRoundTripNano": 188802028,
+ "averageApexExecutionNano": 72376353,
+ "shortestApexExecutionNano": 8703890,
+ "longestApexExecutionNano": 147661258
+ },
+ {
+ "batchNumber": 3262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159318142,
+ "shortestRoundTripNano": 67224430,
+ "longestRoundTripNano": 190277578,
+ "averageApexExecutionNano": 70497748,
+ "shortestApexExecutionNano": 18030510,
+ "longestApexExecutionNano": 147426562
+ },
+ {
+ "batchNumber": 3263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132700093,
+ "shortestRoundTripNano": 71043376,
+ "longestRoundTripNano": 161322217,
+ "averageApexExecutionNano": 68416945,
+ "shortestApexExecutionNano": 8773142,
+ "longestApexExecutionNano": 124161556
+ },
+ {
+ "batchNumber": 3264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163617699,
+ "shortestRoundTripNano": 67665494,
+ "longestRoundTripNano": 206528623,
+ "averageApexExecutionNano": 77784570,
+ "shortestApexExecutionNano": 10710082,
+ "longestApexExecutionNano": 144830830
+ },
+ {
+ "batchNumber": 3265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155275552,
+ "shortestRoundTripNano": 73225912,
+ "longestRoundTripNano": 179011459,
+ "averageApexExecutionNano": 68420466,
+ "shortestApexExecutionNano": 12487245,
+ "longestApexExecutionNano": 129453807
+ },
+ {
+ "batchNumber": 3266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153138826,
+ "shortestRoundTripNano": 63479964,
+ "longestRoundTripNano": 185915668,
+ "averageApexExecutionNano": 57758452,
+ "shortestApexExecutionNano": 8299010,
+ "longestApexExecutionNano": 115487141
+ },
+ {
+ "batchNumber": 3267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141882295,
+ "shortestRoundTripNano": 72645657,
+ "longestRoundTripNano": 165128135,
+ "averageApexExecutionNano": 55879726,
+ "shortestApexExecutionNano": 8805470,
+ "longestApexExecutionNano": 119173980
+ },
+ {
+ "batchNumber": 3268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151630634,
+ "shortestRoundTripNano": 61925294,
+ "longestRoundTripNano": 183477215,
+ "averageApexExecutionNano": 67368142,
+ "shortestApexExecutionNano": 7041286,
+ "longestApexExecutionNano": 142269994
+ },
+ {
+ "batchNumber": 3269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167234248,
+ "shortestRoundTripNano": 79348716,
+ "longestRoundTripNano": 200161180,
+ "averageApexExecutionNano": 80527105,
+ "shortestApexExecutionNano": 11269105,
+ "longestApexExecutionNano": 150242337
+ },
+ {
+ "batchNumber": 3270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169406022,
+ "shortestRoundTripNano": 102319924,
+ "longestRoundTripNano": 197036035,
+ "averageApexExecutionNano": 59323824,
+ "shortestApexExecutionNano": 10578814,
+ "longestApexExecutionNano": 127853880
+ },
+ {
+ "batchNumber": 3271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162390073,
+ "shortestRoundTripNano": 43506757,
+ "longestRoundTripNano": 192357145,
+ "averageApexExecutionNano": 68502365,
+ "shortestApexExecutionNano": 10868856,
+ "longestApexExecutionNano": 135755594
+ },
+ {
+ "batchNumber": 3272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127418901,
+ "shortestRoundTripNano": 55118581,
+ "longestRoundTripNano": 159482695,
+ "averageApexExecutionNano": 34273234,
+ "shortestApexExecutionNano": 7427794,
+ "longestApexExecutionNano": 104046287
+ },
+ {
+ "batchNumber": 3273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157499572,
+ "shortestRoundTripNano": 73233360,
+ "longestRoundTripNano": 188009338,
+ "averageApexExecutionNano": 55786596,
+ "shortestApexExecutionNano": 7218261,
+ "longestApexExecutionNano": 134867797
+ },
+ {
+ "batchNumber": 3274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151257904,
+ "shortestRoundTripNano": 86089113,
+ "longestRoundTripNano": 181998894,
+ "averageApexExecutionNano": 76770528,
+ "shortestApexExecutionNano": 13132009,
+ "longestApexExecutionNano": 133836925
+ },
+ {
+ "batchNumber": 3275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142195599,
+ "shortestRoundTripNano": 57782589,
+ "longestRoundTripNano": 168840811,
+ "averageApexExecutionNano": 50688367,
+ "shortestApexExecutionNano": 7724787,
+ "longestApexExecutionNano": 124909876
+ },
+ {
+ "batchNumber": 3276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147199089,
+ "shortestRoundTripNano": 64736171,
+ "longestRoundTripNano": 181783695,
+ "averageApexExecutionNano": 56164125,
+ "shortestApexExecutionNano": 5922047,
+ "longestApexExecutionNano": 106141769
+ },
+ {
+ "batchNumber": 3277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151696877,
+ "shortestRoundTripNano": 43993315,
+ "longestRoundTripNano": 187132116,
+ "averageApexExecutionNano": 68559753,
+ "shortestApexExecutionNano": 6763496,
+ "longestApexExecutionNano": 148610636
+ },
+ {
+ "batchNumber": 3278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134011456,
+ "shortestRoundTripNano": 69691359,
+ "longestRoundTripNano": 162075796,
+ "averageApexExecutionNano": 60143201,
+ "shortestApexExecutionNano": 10865958,
+ "longestApexExecutionNano": 113862645
+ },
+ {
+ "batchNumber": 3279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154166175,
+ "shortestRoundTripNano": 64681065,
+ "longestRoundTripNano": 182470864,
+ "averageApexExecutionNano": 56716599,
+ "shortestApexExecutionNano": 8319937,
+ "longestApexExecutionNano": 119127983
+ },
+ {
+ "batchNumber": 3280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159426826,
+ "shortestRoundTripNano": 90284678,
+ "longestRoundTripNano": 190114917,
+ "averageApexExecutionNano": 70315642,
+ "shortestApexExecutionNano": 7550962,
+ "longestApexExecutionNano": 131203413
+ },
+ {
+ "batchNumber": 3281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141027270,
+ "shortestRoundTripNano": 59311188,
+ "longestRoundTripNano": 173284075,
+ "averageApexExecutionNano": 58576504,
+ "shortestApexExecutionNano": 10320315,
+ "longestApexExecutionNano": 110617595
+ },
+ {
+ "batchNumber": 3282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133927764,
+ "shortestRoundTripNano": 79261975,
+ "longestRoundTripNano": 166062877,
+ "averageApexExecutionNano": 75641150,
+ "shortestApexExecutionNano": 9337570,
+ "longestApexExecutionNano": 123976517
+ },
+ {
+ "batchNumber": 3283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128401335,
+ "shortestRoundTripNano": 50042225,
+ "longestRoundTripNano": 153916952,
+ "averageApexExecutionNano": 54076457,
+ "shortestApexExecutionNano": 7818099,
+ "longestApexExecutionNano": 112799700
+ },
+ {
+ "batchNumber": 3284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145063424,
+ "shortestRoundTripNano": 62894048,
+ "longestRoundTripNano": 190411550,
+ "averageApexExecutionNano": 65190986,
+ "shortestApexExecutionNano": 9238570,
+ "longestApexExecutionNano": 113092525
+ },
+ {
+ "batchNumber": 3285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149658412,
+ "shortestRoundTripNano": 59554161,
+ "longestRoundTripNano": 178876435,
+ "averageApexExecutionNano": 58675868,
+ "shortestApexExecutionNano": 7054214,
+ "longestApexExecutionNano": 132777376
+ },
+ {
+ "batchNumber": 3286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150681414,
+ "shortestRoundTripNano": 61798123,
+ "longestRoundTripNano": 182440026,
+ "averageApexExecutionNano": 50642857,
+ "shortestApexExecutionNano": 10237950,
+ "longestApexExecutionNano": 121623807
+ },
+ {
+ "batchNumber": 3287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160520918,
+ "shortestRoundTripNano": 75445196,
+ "longestRoundTripNano": 188624910,
+ "averageApexExecutionNano": 72435488,
+ "shortestApexExecutionNano": 10008362,
+ "longestApexExecutionNano": 140390745
+ },
+ {
+ "batchNumber": 3288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148918098,
+ "shortestRoundTripNano": 70914194,
+ "longestRoundTripNano": 181835007,
+ "averageApexExecutionNano": 59189949,
+ "shortestApexExecutionNano": 5040045,
+ "longestApexExecutionNano": 124227703
+ },
+ {
+ "batchNumber": 3289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145140460,
+ "shortestRoundTripNano": 63386705,
+ "longestRoundTripNano": 178905976,
+ "averageApexExecutionNano": 62971704,
+ "shortestApexExecutionNano": 12020659,
+ "longestApexExecutionNano": 134078227
+ },
+ {
+ "batchNumber": 3290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140048445,
+ "shortestRoundTripNano": 57503908,
+ "longestRoundTripNano": 168377171,
+ "averageApexExecutionNano": 64742124,
+ "shortestApexExecutionNano": 14701541,
+ "longestApexExecutionNano": 106127751
+ },
+ {
+ "batchNumber": 3291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135334655,
+ "shortestRoundTripNano": 63761713,
+ "longestRoundTripNano": 160554269,
+ "averageApexExecutionNano": 56973348,
+ "shortestApexExecutionNano": 12246484,
+ "longestApexExecutionNano": 95941151
+ },
+ {
+ "batchNumber": 3292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124323641,
+ "shortestRoundTripNano": 54471866,
+ "longestRoundTripNano": 154206654,
+ "averageApexExecutionNano": 53473057,
+ "shortestApexExecutionNano": 4704857,
+ "longestApexExecutionNano": 110007446
+ },
+ {
+ "batchNumber": 3293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135225474,
+ "shortestRoundTripNano": 44165181,
+ "longestRoundTripNano": 167260001,
+ "averageApexExecutionNano": 56940281,
+ "shortestApexExecutionNano": 6307420,
+ "longestApexExecutionNano": 113838090
+ },
+ {
+ "batchNumber": 3294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135605135,
+ "shortestRoundTripNano": 63487471,
+ "longestRoundTripNano": 169517024,
+ "averageApexExecutionNano": 60928670,
+ "shortestApexExecutionNano": 8870845,
+ "longestApexExecutionNano": 116097030
+ },
+ {
+ "batchNumber": 3295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 203851428,
+ "shortestRoundTripNano": 60165742,
+ "longestRoundTripNano": 240767815,
+ "averageApexExecutionNano": 123679618,
+ "shortestApexExecutionNano": 9276719,
+ "longestApexExecutionNano": 191664335
+ },
+ {
+ "batchNumber": 3296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35948",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148121549,
+ "shortestRoundTripNano": 73873767,
+ "longestRoundTripNano": 177009812,
+ "averageApexExecutionNano": 61062464,
+ "shortestApexExecutionNano": 7502960,
+ "longestApexExecutionNano": 127924923
+ },
+ {
+ "batchNumber": 3297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128089440,
+ "shortestRoundTripNano": 68771748,
+ "longestRoundTripNano": 155548617,
+ "averageApexExecutionNano": 60375355,
+ "shortestApexExecutionNano": 9793500,
+ "longestApexExecutionNano": 111430300
+ },
+ {
+ "batchNumber": 3298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155392996,
+ "shortestRoundTripNano": 59924225,
+ "longestRoundTripNano": 186463764,
+ "averageApexExecutionNano": 59657484,
+ "shortestApexExecutionNano": 6711300,
+ "longestApexExecutionNano": 133502358
+ },
+ {
+ "batchNumber": 3299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127939018,
+ "shortestRoundTripNano": 61338436,
+ "longestRoundTripNano": 153943905,
+ "averageApexExecutionNano": 44999397,
+ "shortestApexExecutionNano": 5286661,
+ "longestApexExecutionNano": 112261372
+ },
+ {
+ "batchNumber": 3300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172982917,
+ "shortestRoundTripNano": 99331749,
+ "longestRoundTripNano": 201109367,
+ "averageApexExecutionNano": 67094699,
+ "shortestApexExecutionNano": 7847244,
+ "longestApexExecutionNano": 125805870
+ },
+ {
+ "batchNumber": 3301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35950",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187079635,
+ "shortestRoundTripNano": 69733268,
+ "longestRoundTripNano": 212908130,
+ "averageApexExecutionNano": 91358131,
+ "shortestApexExecutionNano": 8433568,
+ "longestApexExecutionNano": 171930854
+ },
+ {
+ "batchNumber": 3302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136580130,
+ "shortestRoundTripNano": 63174021,
+ "longestRoundTripNano": 161873919,
+ "averageApexExecutionNano": 69706718,
+ "shortestApexExecutionNano": 20281869,
+ "longestApexExecutionNano": 107916286
+ },
+ {
+ "batchNumber": 3303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147048479,
+ "shortestRoundTripNano": 58919256,
+ "longestRoundTripNano": 178879391,
+ "averageApexExecutionNano": 56851434,
+ "shortestApexExecutionNano": 7706173,
+ "longestApexExecutionNano": 101502171
+ },
+ {
+ "batchNumber": 3304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134476289,
+ "shortestRoundTripNano": 63748751,
+ "longestRoundTripNano": 165461997,
+ "averageApexExecutionNano": 61014838,
+ "shortestApexExecutionNano": 10959981,
+ "longestApexExecutionNano": 114935343
+ },
+ {
+ "batchNumber": 3305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162760307,
+ "shortestRoundTripNano": 96927458,
+ "longestRoundTripNano": 185274274,
+ "averageApexExecutionNano": 66475431,
+ "shortestApexExecutionNano": 6812088,
+ "longestApexExecutionNano": 134681655
+ },
+ {
+ "batchNumber": 3306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127693904,
+ "shortestRoundTripNano": 31206896,
+ "longestRoundTripNano": 156362507,
+ "averageApexExecutionNano": 44044292,
+ "shortestApexExecutionNano": 6276480,
+ "longestApexExecutionNano": 108644589
+ },
+ {
+ "batchNumber": 3307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144001438,
+ "shortestRoundTripNano": 60705733,
+ "longestRoundTripNano": 181670471,
+ "averageApexExecutionNano": 49596419,
+ "shortestApexExecutionNano": 11270183,
+ "longestApexExecutionNano": 106570657
+ },
+ {
+ "batchNumber": 3308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139461123,
+ "shortestRoundTripNano": 39301827,
+ "longestRoundTripNano": 166885871,
+ "averageApexExecutionNano": 49308840,
+ "shortestApexExecutionNano": 7484738,
+ "longestApexExecutionNano": 111785039
+ },
+ {
+ "batchNumber": 3309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158365533,
+ "shortestRoundTripNano": 42512894,
+ "longestRoundTripNano": 198460645,
+ "averageApexExecutionNano": 69774559,
+ "shortestApexExecutionNano": 9179059,
+ "longestApexExecutionNano": 133258890
+ },
+ {
+ "batchNumber": 3310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144600891,
+ "shortestRoundTripNano": 57354426,
+ "longestRoundTripNano": 177835548,
+ "averageApexExecutionNano": 53239992,
+ "shortestApexExecutionNano": 7871966,
+ "longestApexExecutionNano": 123471762
+ },
+ {
+ "batchNumber": 3311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137948988,
+ "shortestRoundTripNano": 66498694,
+ "longestRoundTripNano": 165424671,
+ "averageApexExecutionNano": 53181969,
+ "shortestApexExecutionNano": 8744881,
+ "longestApexExecutionNano": 96563326
+ },
+ {
+ "batchNumber": 3312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141226957,
+ "shortestRoundTripNano": 69450872,
+ "longestRoundTripNano": 171338039,
+ "averageApexExecutionNano": 58035588,
+ "shortestApexExecutionNano": 5691475,
+ "longestApexExecutionNano": 121890605
+ },
+ {
+ "batchNumber": 3313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159421667,
+ "shortestRoundTripNano": 52131192,
+ "longestRoundTripNano": 193689202,
+ "averageApexExecutionNano": 70523875,
+ "shortestApexExecutionNano": 7629779,
+ "longestApexExecutionNano": 157154985
+ },
+ {
+ "batchNumber": 3314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35956",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129250794,
+ "shortestRoundTripNano": 50577951,
+ "longestRoundTripNano": 157556354,
+ "averageApexExecutionNano": 50559442,
+ "shortestApexExecutionNano": 6843060,
+ "longestApexExecutionNano": 110245621
+ },
+ {
+ "batchNumber": 3315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161933371,
+ "shortestRoundTripNano": 70298282,
+ "longestRoundTripNano": 204931904,
+ "averageApexExecutionNano": 64752662,
+ "shortestApexExecutionNano": 14871259,
+ "longestApexExecutionNano": 130226302
+ },
+ {
+ "batchNumber": 3316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137502289,
+ "shortestRoundTripNano": 77901388,
+ "longestRoundTripNano": 173059276,
+ "averageApexExecutionNano": 72722113,
+ "shortestApexExecutionNano": 6313816,
+ "longestApexExecutionNano": 141520626
+ },
+ {
+ "batchNumber": 3317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152439070,
+ "shortestRoundTripNano": 62106413,
+ "longestRoundTripNano": 188033270,
+ "averageApexExecutionNano": 62242213,
+ "shortestApexExecutionNano": 6735907,
+ "longestApexExecutionNano": 125960303
+ },
+ {
+ "batchNumber": 3318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143099189,
+ "shortestRoundTripNano": 48475661,
+ "longestRoundTripNano": 172248047,
+ "averageApexExecutionNano": 74903922,
+ "shortestApexExecutionNano": 17091925,
+ "longestApexExecutionNano": 127034562
+ },
+ {
+ "batchNumber": 3319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130277742,
+ "shortestRoundTripNano": 56299754,
+ "longestRoundTripNano": 161873124,
+ "averageApexExecutionNano": 50965418,
+ "shortestApexExecutionNano": 5941461,
+ "longestApexExecutionNano": 109128320
+ },
+ {
+ "batchNumber": 3320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180250080,
+ "shortestRoundTripNano": 53931309,
+ "longestRoundTripNano": 215033241,
+ "averageApexExecutionNano": 75257481,
+ "shortestApexExecutionNano": 10993963,
+ "longestApexExecutionNano": 151621924
+ },
+ {
+ "batchNumber": 3321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143191186,
+ "shortestRoundTripNano": 70558290,
+ "longestRoundTripNano": 172582228,
+ "averageApexExecutionNano": 58882411,
+ "shortestApexExecutionNano": 9833799,
+ "longestApexExecutionNano": 120815527
+ },
+ {
+ "batchNumber": 3322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138197654,
+ "shortestRoundTripNano": 34547070,
+ "longestRoundTripNano": 177659978,
+ "averageApexExecutionNano": 51331921,
+ "shortestApexExecutionNano": 5639339,
+ "longestApexExecutionNano": 136005355
+ },
+ {
+ "batchNumber": 3323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150485319,
+ "shortestRoundTripNano": 50803979,
+ "longestRoundTripNano": 185140430,
+ "averageApexExecutionNano": 58542857,
+ "shortestApexExecutionNano": 5597456,
+ "longestApexExecutionNano": 129642388
+ },
+ {
+ "batchNumber": 3324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138861938,
+ "shortestRoundTripNano": 66689691,
+ "longestRoundTripNano": 171250388,
+ "averageApexExecutionNano": 60680760,
+ "shortestApexExecutionNano": 5082447,
+ "longestApexExecutionNano": 134552895
+ },
+ {
+ "batchNumber": 3325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147499515,
+ "shortestRoundTripNano": 52982011,
+ "longestRoundTripNano": 181509945,
+ "averageApexExecutionNano": 64256093,
+ "shortestApexExecutionNano": 6395940,
+ "longestApexExecutionNano": 133844792
+ },
+ {
+ "batchNumber": 3326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119171649,
+ "shortestRoundTripNano": 52506169,
+ "longestRoundTripNano": 155732823,
+ "averageApexExecutionNano": 51610752,
+ "shortestApexExecutionNano": 6715573,
+ "longestApexExecutionNano": 112964958
+ },
+ {
+ "batchNumber": 3327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136494626,
+ "shortestRoundTripNano": 57451408,
+ "longestRoundTripNano": 173795509,
+ "averageApexExecutionNano": 49837545,
+ "shortestApexExecutionNano": 5925544,
+ "longestApexExecutionNano": 131749762
+ },
+ {
+ "batchNumber": 3328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145336766,
+ "shortestRoundTripNano": 62973503,
+ "longestRoundTripNano": 179658512,
+ "averageApexExecutionNano": 72068816,
+ "shortestApexExecutionNano": 16100694,
+ "longestApexExecutionNano": 125693647
+ },
+ {
+ "batchNumber": 3329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146890037,
+ "shortestRoundTripNano": 81735499,
+ "longestRoundTripNano": 173333734,
+ "averageApexExecutionNano": 65474202,
+ "shortestApexExecutionNano": 9427193,
+ "longestApexExecutionNano": 123823126
+ },
+ {
+ "batchNumber": 3330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128326449,
+ "shortestRoundTripNano": 55637777,
+ "longestRoundTripNano": 156041638,
+ "averageApexExecutionNano": 55935942,
+ "shortestApexExecutionNano": 7861461,
+ "longestApexExecutionNano": 108497376
+ },
+ {
+ "batchNumber": 3331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140481997,
+ "shortestRoundTripNano": 91591725,
+ "longestRoundTripNano": 164450654,
+ "averageApexExecutionNano": 68449793,
+ "shortestApexExecutionNano": 6736062,
+ "longestApexExecutionNano": 111480767
+ },
+ {
+ "batchNumber": 3332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144384476,
+ "shortestRoundTripNano": 75093353,
+ "longestRoundTripNano": 168495788,
+ "averageApexExecutionNano": 59885599,
+ "shortestApexExecutionNano": 15304153,
+ "longestApexExecutionNano": 124619990
+ },
+ {
+ "batchNumber": 3333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118320381,
+ "shortestRoundTripNano": 44440047,
+ "longestRoundTripNano": 152691799,
+ "averageApexExecutionNano": 51779806,
+ "shortestApexExecutionNano": 7043466,
+ "longestApexExecutionNano": 113858717
+ },
+ {
+ "batchNumber": 3334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161701353,
+ "shortestRoundTripNano": 77807118,
+ "longestRoundTripNano": 186838266,
+ "averageApexExecutionNano": 60987175,
+ "shortestApexExecutionNano": 14340359,
+ "longestApexExecutionNano": 124927662
+ },
+ {
+ "batchNumber": 3335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157548967,
+ "shortestRoundTripNano": 63743482,
+ "longestRoundTripNano": 185970145,
+ "averageApexExecutionNano": 55838039,
+ "shortestApexExecutionNano": 5769709,
+ "longestApexExecutionNano": 134604329
+ },
+ {
+ "batchNumber": 3336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155107457,
+ "shortestRoundTripNano": 71508694,
+ "longestRoundTripNano": 198171948,
+ "averageApexExecutionNano": 60882952,
+ "shortestApexExecutionNano": 5956990,
+ "longestApexExecutionNano": 139595280
+ },
+ {
+ "batchNumber": 3337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147524026,
+ "shortestRoundTripNano": 77908973,
+ "longestRoundTripNano": 178817140,
+ "averageApexExecutionNano": 67246476,
+ "shortestApexExecutionNano": 8194286,
+ "longestApexExecutionNano": 132832088
+ },
+ {
+ "batchNumber": 3338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 234467045,
+ "shortestRoundTripNano": 60080002,
+ "longestRoundTripNano": 263952975,
+ "averageApexExecutionNano": 124345714,
+ "shortestApexExecutionNano": 10846911,
+ "longestApexExecutionNano": 219598215
+ },
+ {
+ "batchNumber": 3339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152526795,
+ "shortestRoundTripNano": 70089563,
+ "longestRoundTripNano": 183759298,
+ "averageApexExecutionNano": 46244677,
+ "shortestApexExecutionNano": 6065684,
+ "longestApexExecutionNano": 101167769
+ },
+ {
+ "batchNumber": 3340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124476232,
+ "shortestRoundTripNano": 55773691,
+ "longestRoundTripNano": 147215154,
+ "averageApexExecutionNano": 51263013,
+ "shortestApexExecutionNano": 8280159,
+ "longestApexExecutionNano": 94161474
+ },
+ {
+ "batchNumber": 3341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148778811,
+ "shortestRoundTripNano": 112859753,
+ "longestRoundTripNano": 172047159,
+ "averageApexExecutionNano": 62987605,
+ "shortestApexExecutionNano": 9174944,
+ "longestApexExecutionNano": 108318583
+ },
+ {
+ "batchNumber": 3342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156950677,
+ "shortestRoundTripNano": 73014344,
+ "longestRoundTripNano": 182540420,
+ "averageApexExecutionNano": 67419199,
+ "shortestApexExecutionNano": 8884939,
+ "longestApexExecutionNano": 122873980
+ },
+ {
+ "batchNumber": 3343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148201432,
+ "shortestRoundTripNano": 49331473,
+ "longestRoundTripNano": 177437962,
+ "averageApexExecutionNano": 54644586,
+ "shortestApexExecutionNano": 10607497,
+ "longestApexExecutionNano": 132954293
+ },
+ {
+ "batchNumber": 3344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35968",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134869042,
+ "shortestRoundTripNano": 54676095,
+ "longestRoundTripNano": 167447595,
+ "averageApexExecutionNano": 56080984,
+ "shortestApexExecutionNano": 5776214,
+ "longestApexExecutionNano": 113733526
+ },
+ {
+ "batchNumber": 3345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35968",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122935740,
+ "shortestRoundTripNano": 70792459,
+ "longestRoundTripNano": 150677608,
+ "averageApexExecutionNano": 60136090,
+ "shortestApexExecutionNano": 11130908,
+ "longestApexExecutionNano": 113855231
+ },
+ {
+ "batchNumber": 3346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35968",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138645852,
+ "shortestRoundTripNano": 77072571,
+ "longestRoundTripNano": 164778957,
+ "averageApexExecutionNano": 53442184,
+ "shortestApexExecutionNano": 6431159,
+ "longestApexExecutionNano": 105252933
+ },
+ {
+ "batchNumber": 3347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35968",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138334294,
+ "shortestRoundTripNano": 67380544,
+ "longestRoundTripNano": 161194784,
+ "averageApexExecutionNano": 54966891,
+ "shortestApexExecutionNano": 9192562,
+ "longestApexExecutionNano": 108045414
+ },
+ {
+ "batchNumber": 3348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35968",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149009059,
+ "shortestRoundTripNano": 56729574,
+ "longestRoundTripNano": 185872228,
+ "averageApexExecutionNano": 65904320,
+ "shortestApexExecutionNano": 8889803,
+ "longestApexExecutionNano": 118841143
+ },
+ {
+ "batchNumber": 3349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120682912,
+ "shortestRoundTripNano": 54728391,
+ "longestRoundTripNano": 155084904,
+ "averageApexExecutionNano": 49214213,
+ "shortestApexExecutionNano": 7101985,
+ "longestApexExecutionNano": 110014464
+ },
+ {
+ "batchNumber": 3350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147952716,
+ "shortestRoundTripNano": 64359202,
+ "longestRoundTripNano": 179417480,
+ "averageApexExecutionNano": 61398220,
+ "shortestApexExecutionNano": 11412695,
+ "longestApexExecutionNano": 130685639
+ },
+ {
+ "batchNumber": 3351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149613227,
+ "shortestRoundTripNano": 67983865,
+ "longestRoundTripNano": 183848905,
+ "averageApexExecutionNano": 67469932,
+ "shortestApexExecutionNano": 19431819,
+ "longestApexExecutionNano": 125003083
+ },
+ {
+ "batchNumber": 3352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137336979,
+ "shortestRoundTripNano": 52379056,
+ "longestRoundTripNano": 160362337,
+ "averageApexExecutionNano": 56950865,
+ "shortestApexExecutionNano": 6884456,
+ "longestApexExecutionNano": 103531061
+ },
+ {
+ "batchNumber": 3353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127080550,
+ "shortestRoundTripNano": 73478347,
+ "longestRoundTripNano": 148467621,
+ "averageApexExecutionNano": 54102441,
+ "shortestApexExecutionNano": 13248514,
+ "longestApexExecutionNano": 96378599
+ },
+ {
+ "batchNumber": 3354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134774130,
+ "shortestRoundTripNano": 61350295,
+ "longestRoundTripNano": 167249502,
+ "averageApexExecutionNano": 58068014,
+ "shortestApexExecutionNano": 7315026,
+ "longestApexExecutionNano": 107590760
+ },
+ {
+ "batchNumber": 3355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141135194,
+ "shortestRoundTripNano": 58869196,
+ "longestRoundTripNano": 171945062,
+ "averageApexExecutionNano": 71496153,
+ "shortestApexExecutionNano": 9235185,
+ "longestApexExecutionNano": 128422286
+ },
+ {
+ "batchNumber": 3356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144096441,
+ "shortestRoundTripNano": 76072907,
+ "longestRoundTripNano": 168812767,
+ "averageApexExecutionNano": 58952857,
+ "shortestApexExecutionNano": 14049318,
+ "longestApexExecutionNano": 113640067
+ },
+ {
+ "batchNumber": 3357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161767040,
+ "shortestRoundTripNano": 67653289,
+ "longestRoundTripNano": 192881363,
+ "averageApexExecutionNano": 74621055,
+ "shortestApexExecutionNano": 17511837,
+ "longestApexExecutionNano": 130440360
+ },
+ {
+ "batchNumber": 3358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146512230,
+ "shortestRoundTripNano": 59813912,
+ "longestRoundTripNano": 173599436,
+ "averageApexExecutionNano": 62049052,
+ "shortestApexExecutionNano": 13632021,
+ "longestApexExecutionNano": 112293098
+ },
+ {
+ "batchNumber": 3359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130788536,
+ "shortestRoundTripNano": 74798340,
+ "longestRoundTripNano": 158529636,
+ "averageApexExecutionNano": 55180011,
+ "shortestApexExecutionNano": 6678095,
+ "longestApexExecutionNano": 104757874
+ },
+ {
+ "batchNumber": 3360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118259505,
+ "shortestRoundTripNano": 58086257,
+ "longestRoundTripNano": 147612215,
+ "averageApexExecutionNano": 53466989,
+ "shortestApexExecutionNano": 6288232,
+ "longestApexExecutionNano": 103719464
+ },
+ {
+ "batchNumber": 3361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143523355,
+ "shortestRoundTripNano": 59779798,
+ "longestRoundTripNano": 168746912,
+ "averageApexExecutionNano": 57049477,
+ "shortestApexExecutionNano": 8795675,
+ "longestApexExecutionNano": 106782477
+ },
+ {
+ "batchNumber": 3362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134770432,
+ "shortestRoundTripNano": 38590936,
+ "longestRoundTripNano": 167298991,
+ "averageApexExecutionNano": 61903977,
+ "shortestApexExecutionNano": 8247980,
+ "longestApexExecutionNano": 109338858
+ },
+ {
+ "batchNumber": 3363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132270881,
+ "shortestRoundTripNano": 63540143,
+ "longestRoundTripNano": 164671271,
+ "averageApexExecutionNano": 51430837,
+ "shortestApexExecutionNano": 6652531,
+ "longestApexExecutionNano": 118710107
+ },
+ {
+ "batchNumber": 3364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114063847,
+ "shortestRoundTripNano": 34444716,
+ "longestRoundTripNano": 145133362,
+ "averageApexExecutionNano": 42542385,
+ "shortestApexExecutionNano": 6953701,
+ "longestApexExecutionNano": 94442469
+ },
+ {
+ "batchNumber": 3365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137035215,
+ "shortestRoundTripNano": 54135440,
+ "longestRoundTripNano": 163315497,
+ "averageApexExecutionNano": 66749198,
+ "shortestApexExecutionNano": 19113212,
+ "longestApexExecutionNano": 118677588
+ },
+ {
+ "batchNumber": 3366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148244590,
+ "shortestRoundTripNano": 56817168,
+ "longestRoundTripNano": 182920410,
+ "averageApexExecutionNano": 62432735,
+ "shortestApexExecutionNano": 12521335,
+ "longestApexExecutionNano": 133873801
+ },
+ {
+ "batchNumber": 3367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135265860,
+ "shortestRoundTripNano": 53904373,
+ "longestRoundTripNano": 166869151,
+ "averageApexExecutionNano": 48251146,
+ "shortestApexExecutionNano": 9069531,
+ "longestApexExecutionNano": 100000624
+ },
+ {
+ "batchNumber": 3368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138610453,
+ "shortestRoundTripNano": 59496548,
+ "longestRoundTripNano": 168094957,
+ "averageApexExecutionNano": 66903603,
+ "shortestApexExecutionNano": 15842451,
+ "longestApexExecutionNano": 117209562
+ },
+ {
+ "batchNumber": 3369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126127641,
+ "shortestRoundTripNano": 56108624,
+ "longestRoundTripNano": 150721809,
+ "averageApexExecutionNano": 56535817,
+ "shortestApexExecutionNano": 8553808,
+ "longestApexExecutionNano": 109469849
+ },
+ {
+ "batchNumber": 3370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149546351,
+ "shortestRoundTripNano": 60105392,
+ "longestRoundTripNano": 178849581,
+ "averageApexExecutionNano": 47935184,
+ "shortestApexExecutionNano": 6516370,
+ "longestApexExecutionNano": 126715310
+ },
+ {
+ "batchNumber": 3371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141464451,
+ "shortestRoundTripNano": 55755496,
+ "longestRoundTripNano": 170535637,
+ "averageApexExecutionNano": 62948257,
+ "shortestApexExecutionNano": 10396113,
+ "longestApexExecutionNano": 120259340
+ },
+ {
+ "batchNumber": 3372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137628595,
+ "shortestRoundTripNano": 71652378,
+ "longestRoundTripNano": 168135195,
+ "averageApexExecutionNano": 54758306,
+ "shortestApexExecutionNano": 8216744,
+ "longestApexExecutionNano": 111117050
+ },
+ {
+ "batchNumber": 3373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126184952,
+ "shortestRoundTripNano": 68267912,
+ "longestRoundTripNano": 155332387,
+ "averageApexExecutionNano": 50969222,
+ "shortestApexExecutionNano": 7537566,
+ "longestApexExecutionNano": 108298527
+ },
+ {
+ "batchNumber": 3374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144366086,
+ "shortestRoundTripNano": 58739991,
+ "longestRoundTripNano": 170783421,
+ "averageApexExecutionNano": 62280997,
+ "shortestApexExecutionNano": 8257044,
+ "longestApexExecutionNano": 121254145
+ },
+ {
+ "batchNumber": 3375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157946080,
+ "shortestRoundTripNano": 69834263,
+ "longestRoundTripNano": 191736564,
+ "averageApexExecutionNano": 76408889,
+ "shortestApexExecutionNano": 14308461,
+ "longestApexExecutionNano": 128595290
+ },
+ {
+ "batchNumber": 3376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149414119,
+ "shortestRoundTripNano": 77432570,
+ "longestRoundTripNano": 176953730,
+ "averageApexExecutionNano": 58247799,
+ "shortestApexExecutionNano": 6059710,
+ "longestApexExecutionNano": 119629059
+ },
+ {
+ "batchNumber": 3377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135012745,
+ "shortestRoundTripNano": 48152759,
+ "longestRoundTripNano": 160656194,
+ "averageApexExecutionNano": 54954067,
+ "shortestApexExecutionNano": 7658146,
+ "longestApexExecutionNano": 108593735
+ },
+ {
+ "batchNumber": 3378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137252167,
+ "shortestRoundTripNano": 62472030,
+ "longestRoundTripNano": 168833297,
+ "averageApexExecutionNano": 54125616,
+ "shortestApexExecutionNano": 10776441,
+ "longestApexExecutionNano": 114583111
+ },
+ {
+ "batchNumber": 3379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124532557,
+ "shortestRoundTripNano": 55248717,
+ "longestRoundTripNano": 149392059,
+ "averageApexExecutionNano": 56360693,
+ "shortestApexExecutionNano": 6478346,
+ "longestApexExecutionNano": 111611196
+ },
+ {
+ "batchNumber": 3380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136083869,
+ "shortestRoundTripNano": 57740043,
+ "longestRoundTripNano": 164263773,
+ "averageApexExecutionNano": 46527071,
+ "shortestApexExecutionNano": 7292137,
+ "longestApexExecutionNano": 121284609
+ },
+ {
+ "batchNumber": 3381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127928763,
+ "shortestRoundTripNano": 68729088,
+ "longestRoundTripNano": 152251131,
+ "averageApexExecutionNano": 63472160,
+ "shortestApexExecutionNano": 16213509,
+ "longestApexExecutionNano": 106421188
+ },
+ {
+ "batchNumber": 3382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142716168,
+ "shortestRoundTripNano": 58848250,
+ "longestRoundTripNano": 181851548,
+ "averageApexExecutionNano": 61302034,
+ "shortestApexExecutionNano": 6859094,
+ "longestApexExecutionNano": 132308865
+ },
+ {
+ "batchNumber": 3383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144798466,
+ "shortestRoundTripNano": 43637434,
+ "longestRoundTripNano": 183437265,
+ "averageApexExecutionNano": 49854889,
+ "shortestApexExecutionNano": 10784250,
+ "longestApexExecutionNano": 132960140
+ },
+ {
+ "batchNumber": 3384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149929905,
+ "shortestRoundTripNano": 58302899,
+ "longestRoundTripNano": 178494146,
+ "averageApexExecutionNano": 77110056,
+ "shortestApexExecutionNano": 10452815,
+ "longestApexExecutionNano": 129218565
+ },
+ {
+ "batchNumber": 3385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137998065,
+ "shortestRoundTripNano": 67385230,
+ "longestRoundTripNano": 167367494,
+ "averageApexExecutionNano": 51957341,
+ "shortestApexExecutionNano": 6856686,
+ "longestApexExecutionNano": 114756545
+ },
+ {
+ "batchNumber": 3386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133973771,
+ "shortestRoundTripNano": 48745000,
+ "longestRoundTripNano": 161374958,
+ "averageApexExecutionNano": 46277029,
+ "shortestApexExecutionNano": 6314398,
+ "longestApexExecutionNano": 91736035
+ },
+ {
+ "batchNumber": 3387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144744903,
+ "shortestRoundTripNano": 60280509,
+ "longestRoundTripNano": 170379688,
+ "averageApexExecutionNano": 65029621,
+ "shortestApexExecutionNano": 13512936,
+ "longestApexExecutionNano": 95642674
+ },
+ {
+ "batchNumber": 3388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145595800,
+ "shortestRoundTripNano": 79858012,
+ "longestRoundTripNano": 172039633,
+ "averageApexExecutionNano": 58590937,
+ "shortestApexExecutionNano": 9008681,
+ "longestApexExecutionNano": 116830211
+ },
+ {
+ "batchNumber": 3389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144682304,
+ "shortestRoundTripNano": 63753649,
+ "longestRoundTripNano": 177074860,
+ "averageApexExecutionNano": 69352095,
+ "shortestApexExecutionNano": 11742715,
+ "longestApexExecutionNano": 120191735
+ },
+ {
+ "batchNumber": 3390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142112584,
+ "shortestRoundTripNano": 54459319,
+ "longestRoundTripNano": 169515681,
+ "averageApexExecutionNano": 69555816,
+ "shortestApexExecutionNano": 9272013,
+ "longestApexExecutionNano": 126805571
+ },
+ {
+ "batchNumber": 3391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143868573,
+ "shortestRoundTripNano": 57069999,
+ "longestRoundTripNano": 182270751,
+ "averageApexExecutionNano": 61379744,
+ "shortestApexExecutionNano": 7871697,
+ "longestApexExecutionNano": 116517231
+ },
+ {
+ "batchNumber": 3392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152636864,
+ "shortestRoundTripNano": 43284453,
+ "longestRoundTripNano": 188186879,
+ "averageApexExecutionNano": 66218821,
+ "shortestApexExecutionNano": 11738858,
+ "longestApexExecutionNano": 126061618
+ },
+ {
+ "batchNumber": 3393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141536081,
+ "shortestRoundTripNano": 72066802,
+ "longestRoundTripNano": 180397571,
+ "averageApexExecutionNano": 54733374,
+ "shortestApexExecutionNano": 6931203,
+ "longestApexExecutionNano": 105708556
+ },
+ {
+ "batchNumber": 3394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131441382,
+ "shortestRoundTripNano": 63283440,
+ "longestRoundTripNano": 168501757,
+ "averageApexExecutionNano": 34789059,
+ "shortestApexExecutionNano": 6000591,
+ "longestApexExecutionNano": 88471803
+ },
+ {
+ "batchNumber": 3395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160498464,
+ "shortestRoundTripNano": 66098203,
+ "longestRoundTripNano": 210177099,
+ "averageApexExecutionNano": 64880180,
+ "shortestApexExecutionNano": 8717575,
+ "longestApexExecutionNano": 108143330
+ },
+ {
+ "batchNumber": 3396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158980319,
+ "shortestRoundTripNano": 71560164,
+ "longestRoundTripNano": 182741149,
+ "averageApexExecutionNano": 81120383,
+ "shortestApexExecutionNano": 8555855,
+ "longestApexExecutionNano": 136402087
+ },
+ {
+ "batchNumber": 3397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149645259,
+ "shortestRoundTripNano": 53342998,
+ "longestRoundTripNano": 183198386,
+ "averageApexExecutionNano": 64018847,
+ "shortestApexExecutionNano": 7762624,
+ "longestApexExecutionNano": 130549480
+ },
+ {
+ "batchNumber": 3398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127992095,
+ "shortestRoundTripNano": 54175962,
+ "longestRoundTripNano": 157322350,
+ "averageApexExecutionNano": 62483340,
+ "shortestApexExecutionNano": 7547191,
+ "longestApexExecutionNano": 111257086
+ },
+ {
+ "batchNumber": 3399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143684117,
+ "shortestRoundTripNano": 75099854,
+ "longestRoundTripNano": 172848985,
+ "averageApexExecutionNano": 59532348,
+ "shortestApexExecutionNano": 13361722,
+ "longestApexExecutionNano": 96621972
+ },
+ {
+ "batchNumber": 3400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144164749,
+ "shortestRoundTripNano": 66724885,
+ "longestRoundTripNano": 182953838,
+ "averageApexExecutionNano": 61088999,
+ "shortestApexExecutionNano": 8864000,
+ "longestApexExecutionNano": 138230300
+ },
+ {
+ "batchNumber": 3401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152958656,
+ "shortestRoundTripNano": 98331486,
+ "longestRoundTripNano": 186733561,
+ "averageApexExecutionNano": 70370694,
+ "shortestApexExecutionNano": 14409641,
+ "longestApexExecutionNano": 132687669
+ },
+ {
+ "batchNumber": 3402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136522351,
+ "shortestRoundTripNano": 72280863,
+ "longestRoundTripNano": 166425391,
+ "averageApexExecutionNano": 60253838,
+ "shortestApexExecutionNano": 9392473,
+ "longestApexExecutionNano": 122702896
+ },
+ {
+ "batchNumber": 3403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145722993,
+ "shortestRoundTripNano": 62092610,
+ "longestRoundTripNano": 180554166,
+ "averageApexExecutionNano": 62164138,
+ "shortestApexExecutionNano": 7845554,
+ "longestApexExecutionNano": 125896309
+ },
+ {
+ "batchNumber": 3404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138207252,
+ "shortestRoundTripNano": 57845910,
+ "longestRoundTripNano": 164645062,
+ "averageApexExecutionNano": 63449596,
+ "shortestApexExecutionNano": 9866504,
+ "longestApexExecutionNano": 127976435
+ },
+ {
+ "batchNumber": 3405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151396664,
+ "shortestRoundTripNano": 80563396,
+ "longestRoundTripNano": 182669509,
+ "averageApexExecutionNano": 79237536,
+ "shortestApexExecutionNano": 24766342,
+ "longestApexExecutionNano": 124733095
+ },
+ {
+ "batchNumber": 3406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144378662,
+ "shortestRoundTripNano": 70273209,
+ "longestRoundTripNano": 167284125,
+ "averageApexExecutionNano": 47428381,
+ "shortestApexExecutionNano": 8643120,
+ "longestApexExecutionNano": 121951912
+ },
+ {
+ "batchNumber": 3407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129544863,
+ "shortestRoundTripNano": 51933662,
+ "longestRoundTripNano": 164445781,
+ "averageApexExecutionNano": 53852197,
+ "shortestApexExecutionNano": 7066619,
+ "longestApexExecutionNano": 110797206
+ },
+ {
+ "batchNumber": 3408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153571752,
+ "shortestRoundTripNano": 48939592,
+ "longestRoundTripNano": 191186818,
+ "averageApexExecutionNano": 65894621,
+ "shortestApexExecutionNano": 6447410,
+ "longestApexExecutionNano": 133880933
+ },
+ {
+ "batchNumber": 3409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35988",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147484142,
+ "shortestRoundTripNano": 46599702,
+ "longestRoundTripNano": 179086417,
+ "averageApexExecutionNano": 77652843,
+ "shortestApexExecutionNano": 7702270,
+ "longestApexExecutionNano": 130826908
+ },
+ {
+ "batchNumber": 3410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35992",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125504633,
+ "shortestRoundTripNano": 57538653,
+ "longestRoundTripNano": 163055721,
+ "averageApexExecutionNano": 36853290,
+ "shortestApexExecutionNano": 6335271,
+ "longestApexExecutionNano": 123671438
+ },
+ {
+ "batchNumber": 3411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35992",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145092841,
+ "shortestRoundTripNano": 39356435,
+ "longestRoundTripNano": 181981296,
+ "averageApexExecutionNano": 81864148,
+ "shortestApexExecutionNano": 8133186,
+ "longestApexExecutionNano": 148517900
+ },
+ {
+ "batchNumber": 3412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35992",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146572752,
+ "shortestRoundTripNano": 82035211,
+ "longestRoundTripNano": 173761134,
+ "averageApexExecutionNano": 78872581,
+ "shortestApexExecutionNano": 4387427,
+ "longestApexExecutionNano": 135702515
+ },
+ {
+ "batchNumber": 3413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35992",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141783636,
+ "shortestRoundTripNano": 55309072,
+ "longestRoundTripNano": 186603786,
+ "averageApexExecutionNano": 59288717,
+ "shortestApexExecutionNano": 10763410,
+ "longestApexExecutionNano": 130826861
+ },
+ {
+ "batchNumber": 3414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35994",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152273663,
+ "shortestRoundTripNano": 72612719,
+ "longestRoundTripNano": 184171404,
+ "averageApexExecutionNano": 77134003,
+ "shortestApexExecutionNano": 11715016,
+ "longestApexExecutionNano": 131483453
+ },
+ {
+ "batchNumber": 3415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143079115,
+ "shortestRoundTripNano": 61135746,
+ "longestRoundTripNano": 182440162,
+ "averageApexExecutionNano": 52559892,
+ "shortestApexExecutionNano": 10383152,
+ "longestApexExecutionNano": 110261911
+ },
+ {
+ "batchNumber": 3416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162757124,
+ "shortestRoundTripNano": 43428426,
+ "longestRoundTripNano": 201283410,
+ "averageApexExecutionNano": 73497745,
+ "shortestApexExecutionNano": 6130861,
+ "longestApexExecutionNano": 155093603
+ },
+ {
+ "batchNumber": 3417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155144157,
+ "shortestRoundTripNano": 65629003,
+ "longestRoundTripNano": 198951616,
+ "averageApexExecutionNano": 62207864,
+ "shortestApexExecutionNano": 6225532,
+ "longestApexExecutionNano": 108399092
+ },
+ {
+ "batchNumber": 3418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157941985,
+ "shortestRoundTripNano": 48840826,
+ "longestRoundTripNano": 192195390,
+ "averageApexExecutionNano": 61731510,
+ "shortestApexExecutionNano": 5902794,
+ "longestApexExecutionNano": 138009991
+ },
+ {
+ "batchNumber": 3419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134257952,
+ "shortestRoundTripNano": 61840020,
+ "longestRoundTripNano": 164711415,
+ "averageApexExecutionNano": 61788552,
+ "shortestApexExecutionNano": 9382120,
+ "longestApexExecutionNano": 119016313
+ },
+ {
+ "batchNumber": 3420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159603677,
+ "shortestRoundTripNano": 66404347,
+ "longestRoundTripNano": 189989726,
+ "averageApexExecutionNano": 58328250,
+ "shortestApexExecutionNano": 9545390,
+ "longestApexExecutionNano": 112726684
+ },
+ {
+ "batchNumber": 3421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142828148,
+ "shortestRoundTripNano": 60982163,
+ "longestRoundTripNano": 190960382,
+ "averageApexExecutionNano": 61826660,
+ "shortestApexExecutionNano": 11644444,
+ "longestApexExecutionNano": 112247218
+ },
+ {
+ "batchNumber": 3422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134334244,
+ "shortestRoundTripNano": 62147722,
+ "longestRoundTripNano": 163570048,
+ "averageApexExecutionNano": 54765462,
+ "shortestApexExecutionNano": 6896498,
+ "longestApexExecutionNano": 115251777
+ },
+ {
+ "batchNumber": 3423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130866457,
+ "shortestRoundTripNano": 52928759,
+ "longestRoundTripNano": 155580782,
+ "averageApexExecutionNano": 46291672,
+ "shortestApexExecutionNano": 7395883,
+ "longestApexExecutionNano": 99967678
+ },
+ {
+ "batchNumber": 3424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175107224,
+ "shortestRoundTripNano": 59539536,
+ "longestRoundTripNano": 217908421,
+ "averageApexExecutionNano": 58011801,
+ "shortestApexExecutionNano": 5883017,
+ "longestApexExecutionNano": 127063926
+ },
+ {
+ "batchNumber": 3425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128169861,
+ "shortestRoundTripNano": 74566255,
+ "longestRoundTripNano": 154864516,
+ "averageApexExecutionNano": 63250733,
+ "shortestApexExecutionNano": 6252150,
+ "longestApexExecutionNano": 114918924
+ },
+ {
+ "batchNumber": 3426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169441095,
+ "shortestRoundTripNano": 77486982,
+ "longestRoundTripNano": 199021724,
+ "averageApexExecutionNano": 70599420,
+ "shortestApexExecutionNano": 6725802,
+ "longestApexExecutionNano": 146063289
+ },
+ {
+ "batchNumber": 3427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134535744,
+ "shortestRoundTripNano": 56918994,
+ "longestRoundTripNano": 166631444,
+ "averageApexExecutionNano": 55965956,
+ "shortestApexExecutionNano": 5697515,
+ "longestApexExecutionNano": 111006378
+ },
+ {
+ "batchNumber": 3428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135738927,
+ "shortestRoundTripNano": 62668988,
+ "longestRoundTripNano": 158411526,
+ "averageApexExecutionNano": 62545881,
+ "shortestApexExecutionNano": 7072248,
+ "longestApexExecutionNano": 111830071
+ },
+ {
+ "batchNumber": 3429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146776633,
+ "shortestRoundTripNano": 69764917,
+ "longestRoundTripNano": 170624107,
+ "averageApexExecutionNano": 46581467,
+ "shortestApexExecutionNano": 7730847,
+ "longestApexExecutionNano": 126954856
+ },
+ {
+ "batchNumber": 3430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):35996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145370103,
+ "shortestRoundTripNano": 78086639,
+ "longestRoundTripNano": 168866807,
+ "averageApexExecutionNano": 69309340,
+ "shortestApexExecutionNano": 8430108,
+ "longestApexExecutionNano": 116132113
+ },
+ {
+ "batchNumber": 3431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141049042,
+ "shortestRoundTripNano": 64699375,
+ "longestRoundTripNano": 170499117,
+ "averageApexExecutionNano": 42177629,
+ "shortestApexExecutionNano": 10831002,
+ "longestApexExecutionNano": 117651428
+ },
+ {
+ "batchNumber": 3432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144229762,
+ "shortestRoundTripNano": 85816034,
+ "longestRoundTripNano": 169013806,
+ "averageApexExecutionNano": 59177569,
+ "shortestApexExecutionNano": 6613994,
+ "longestApexExecutionNano": 121484965
+ },
+ {
+ "batchNumber": 3433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195028090,
+ "shortestRoundTripNano": 53218350,
+ "longestRoundTripNano": 232696500,
+ "averageApexExecutionNano": 92594978,
+ "shortestApexExecutionNano": 7130746,
+ "longestApexExecutionNano": 191820117
+ },
+ {
+ "batchNumber": 3434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134178906,
+ "shortestRoundTripNano": 66903231,
+ "longestRoundTripNano": 158632527,
+ "averageApexExecutionNano": 64854325,
+ "shortestApexExecutionNano": 25074109,
+ "longestApexExecutionNano": 96967154
+ },
+ {
+ "batchNumber": 3435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140036694,
+ "shortestRoundTripNano": 59513878,
+ "longestRoundTripNano": 167504071,
+ "averageApexExecutionNano": 50903552,
+ "shortestApexExecutionNano": 6374078,
+ "longestApexExecutionNano": 104462637
+ },
+ {
+ "batchNumber": 3436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152770371,
+ "shortestRoundTripNano": 52341991,
+ "longestRoundTripNano": 191260557,
+ "averageApexExecutionNano": 60042759,
+ "shortestApexExecutionNano": 8671717,
+ "longestApexExecutionNano": 138912424
+ },
+ {
+ "batchNumber": 3437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151619058,
+ "shortestRoundTripNano": 57231437,
+ "longestRoundTripNano": 182891267,
+ "averageApexExecutionNano": 49338557,
+ "shortestApexExecutionNano": 9411367,
+ "longestApexExecutionNano": 124038925
+ },
+ {
+ "batchNumber": 3438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147402444,
+ "shortestRoundTripNano": 47256360,
+ "longestRoundTripNano": 193336576,
+ "averageApexExecutionNano": 58533250,
+ "shortestApexExecutionNano": 10318481,
+ "longestApexExecutionNano": 152533208
+ },
+ {
+ "batchNumber": 3439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36004",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145429790,
+ "shortestRoundTripNano": 65610927,
+ "longestRoundTripNano": 180996337,
+ "averageApexExecutionNano": 45227670,
+ "shortestApexExecutionNano": 5766984,
+ "longestApexExecutionNano": 110928088
+ },
+ {
+ "batchNumber": 3440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151248727,
+ "shortestRoundTripNano": 77071946,
+ "longestRoundTripNano": 179943906,
+ "averageApexExecutionNano": 78656457,
+ "shortestApexExecutionNano": 12136404,
+ "longestApexExecutionNano": 142310153
+ },
+ {
+ "batchNumber": 3441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147160425,
+ "shortestRoundTripNano": 76278632,
+ "longestRoundTripNano": 171216824,
+ "averageApexExecutionNano": 67188668,
+ "shortestApexExecutionNano": 16385435,
+ "longestApexExecutionNano": 130237193
+ },
+ {
+ "batchNumber": 3442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153820104,
+ "shortestRoundTripNano": 58215454,
+ "longestRoundTripNano": 187171140,
+ "averageApexExecutionNano": 65797218,
+ "shortestApexExecutionNano": 12551736,
+ "longestApexExecutionNano": 130409097
+ },
+ {
+ "batchNumber": 3443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36006",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124223080,
+ "shortestRoundTripNano": 46943748,
+ "longestRoundTripNano": 156002432,
+ "averageApexExecutionNano": 48102957,
+ "shortestApexExecutionNano": 7314550,
+ "longestApexExecutionNano": 107903711
+ },
+ {
+ "batchNumber": 3444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36006",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139916967,
+ "shortestRoundTripNano": 52607056,
+ "longestRoundTripNano": 181313250,
+ "averageApexExecutionNano": 51431984,
+ "shortestApexExecutionNano": 4432936,
+ "longestApexExecutionNano": 115639538
+ },
+ {
+ "batchNumber": 3445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139209231,
+ "shortestRoundTripNano": 32570317,
+ "longestRoundTripNano": 169540607,
+ "averageApexExecutionNano": 47301301,
+ "shortestApexExecutionNano": 9042723,
+ "longestApexExecutionNano": 96189131
+ },
+ {
+ "batchNumber": 3446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142212468,
+ "shortestRoundTripNano": 64900825,
+ "longestRoundTripNano": 172855625,
+ "averageApexExecutionNano": 58834016,
+ "shortestApexExecutionNano": 10006675,
+ "longestApexExecutionNano": 101534300
+ },
+ {
+ "batchNumber": 3447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140674560,
+ "shortestRoundTripNano": 64220406,
+ "longestRoundTripNano": 170550508,
+ "averageApexExecutionNano": 65717811,
+ "shortestApexExecutionNano": 11329106,
+ "longestApexExecutionNano": 108992641
+ },
+ {
+ "batchNumber": 3448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148098609,
+ "shortestRoundTripNano": 69501673,
+ "longestRoundTripNano": 184905688,
+ "averageApexExecutionNano": 63283445,
+ "shortestApexExecutionNano": 8113733,
+ "longestApexExecutionNano": 143539577
+ },
+ {
+ "batchNumber": 3449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150157208,
+ "shortestRoundTripNano": 28611001,
+ "longestRoundTripNano": 191573123,
+ "averageApexExecutionNano": 59876819,
+ "shortestApexExecutionNano": 9294328,
+ "longestApexExecutionNano": 134931491
+ },
+ {
+ "batchNumber": 3450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165031692,
+ "shortestRoundTripNano": 49309867,
+ "longestRoundTripNano": 195171706,
+ "averageApexExecutionNano": 82727090,
+ "shortestApexExecutionNano": 6749661,
+ "longestApexExecutionNano": 142665553
+ },
+ {
+ "batchNumber": 3451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135847715,
+ "shortestRoundTripNano": 67886064,
+ "longestRoundTripNano": 158458413,
+ "averageApexExecutionNano": 46442045,
+ "shortestApexExecutionNano": 6843522,
+ "longestApexExecutionNano": 96425783
+ },
+ {
+ "batchNumber": 3452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134677774,
+ "shortestRoundTripNano": 69024986,
+ "longestRoundTripNano": 168121689,
+ "averageApexExecutionNano": 42841786,
+ "shortestApexExecutionNano": 6397052,
+ "longestApexExecutionNano": 102575091
+ },
+ {
+ "batchNumber": 3453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147273163,
+ "shortestRoundTripNano": 46330058,
+ "longestRoundTripNano": 173451521,
+ "averageApexExecutionNano": 70455217,
+ "shortestApexExecutionNano": 6762679,
+ "longestApexExecutionNano": 130619272
+ },
+ {
+ "batchNumber": 3454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128741220,
+ "shortestRoundTripNano": 54363234,
+ "longestRoundTripNano": 154147095,
+ "averageApexExecutionNano": 42878451,
+ "shortestApexExecutionNano": 10222382,
+ "longestApexExecutionNano": 104308944
+ },
+ {
+ "batchNumber": 3455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152054267,
+ "shortestRoundTripNano": 81500128,
+ "longestRoundTripNano": 186136603,
+ "averageApexExecutionNano": 64698130,
+ "shortestApexExecutionNano": 10461212,
+ "longestApexExecutionNano": 125669892
+ },
+ {
+ "batchNumber": 3456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152232118,
+ "shortestRoundTripNano": 79015691,
+ "longestRoundTripNano": 178625680,
+ "averageApexExecutionNano": 50511228,
+ "shortestApexExecutionNano": 7375205,
+ "longestApexExecutionNano": 99858237
+ },
+ {
+ "batchNumber": 3457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172991080,
+ "shortestRoundTripNano": 92511890,
+ "longestRoundTripNano": 203507393,
+ "averageApexExecutionNano": 79318097,
+ "shortestApexExecutionNano": 14945781,
+ "longestApexExecutionNano": 137678928
+ },
+ {
+ "batchNumber": 3458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152290532,
+ "shortestRoundTripNano": 76882840,
+ "longestRoundTripNano": 181568115,
+ "averageApexExecutionNano": 57436181,
+ "shortestApexExecutionNano": 8982634,
+ "longestApexExecutionNano": 133989939
+ },
+ {
+ "batchNumber": 3459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174395422,
+ "shortestRoundTripNano": 60306999,
+ "longestRoundTripNano": 220457384,
+ "averageApexExecutionNano": 76946868,
+ "shortestApexExecutionNano": 9378643,
+ "longestApexExecutionNano": 136531476
+ },
+ {
+ "batchNumber": 3460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138192007,
+ "shortestRoundTripNano": 53978728,
+ "longestRoundTripNano": 169360056,
+ "averageApexExecutionNano": 60164379,
+ "shortestApexExecutionNano": 6147674,
+ "longestApexExecutionNano": 119457815
+ },
+ {
+ "batchNumber": 3461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120305366,
+ "shortestRoundTripNano": 43860223,
+ "longestRoundTripNano": 151275962,
+ "averageApexExecutionNano": 41796820,
+ "shortestApexExecutionNano": 5851989,
+ "longestApexExecutionNano": 106457717
+ },
+ {
+ "batchNumber": 3462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155466087,
+ "shortestRoundTripNano": 63421730,
+ "longestRoundTripNano": 186294077,
+ "averageApexExecutionNano": 57677903,
+ "shortestApexExecutionNano": 7716444,
+ "longestApexExecutionNano": 114979068
+ },
+ {
+ "batchNumber": 3463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133653539,
+ "shortestRoundTripNano": 38623001,
+ "longestRoundTripNano": 180467634,
+ "averageApexExecutionNano": 58200889,
+ "shortestApexExecutionNano": 5905979,
+ "longestApexExecutionNano": 122467992
+ },
+ {
+ "batchNumber": 3464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133998513,
+ "shortestRoundTripNano": 45778574,
+ "longestRoundTripNano": 168538860,
+ "averageApexExecutionNano": 54899389,
+ "shortestApexExecutionNano": 5778270,
+ "longestApexExecutionNano": 116803104
+ },
+ {
+ "batchNumber": 3465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179364808,
+ "shortestRoundTripNano": 58879797,
+ "longestRoundTripNano": 216250614,
+ "averageApexExecutionNano": 81871945,
+ "shortestApexExecutionNano": 11118032,
+ "longestApexExecutionNano": 152513999
+ },
+ {
+ "batchNumber": 3466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151062810,
+ "shortestRoundTripNano": 82423890,
+ "longestRoundTripNano": 182564338,
+ "averageApexExecutionNano": 67327613,
+ "shortestApexExecutionNano": 6964260,
+ "longestApexExecutionNano": 117952112
+ },
+ {
+ "batchNumber": 3467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133980517,
+ "shortestRoundTripNano": 56631233,
+ "longestRoundTripNano": 168217165,
+ "averageApexExecutionNano": 45525488,
+ "shortestApexExecutionNano": 6818514,
+ "longestApexExecutionNano": 108472708
+ },
+ {
+ "batchNumber": 3468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136115688,
+ "shortestRoundTripNano": 62077865,
+ "longestRoundTripNano": 165419586,
+ "averageApexExecutionNano": 59404582,
+ "shortestApexExecutionNano": 10331855,
+ "longestApexExecutionNano": 115795805
+ },
+ {
+ "batchNumber": 3469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151476131,
+ "shortestRoundTripNano": 79158508,
+ "longestRoundTripNano": 181237272,
+ "averageApexExecutionNano": 71445116,
+ "shortestApexExecutionNano": 7771160,
+ "longestApexExecutionNano": 139045945
+ },
+ {
+ "batchNumber": 3470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122435003,
+ "shortestRoundTripNano": 45033251,
+ "longestRoundTripNano": 152918320,
+ "averageApexExecutionNano": 46780153,
+ "shortestApexExecutionNano": 8473120,
+ "longestApexExecutionNano": 107015231
+ },
+ {
+ "batchNumber": 3471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138608771,
+ "shortestRoundTripNano": 79445342,
+ "longestRoundTripNano": 169565563,
+ "averageApexExecutionNano": 49411340,
+ "shortestApexExecutionNano": 7312662,
+ "longestApexExecutionNano": 110999259
+ },
+ {
+ "batchNumber": 3472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121652097,
+ "shortestRoundTripNano": 43094788,
+ "longestRoundTripNano": 161669074,
+ "averageApexExecutionNano": 50369194,
+ "shortestApexExecutionNano": 6603835,
+ "longestApexExecutionNano": 103948903
+ },
+ {
+ "batchNumber": 3473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134344971,
+ "shortestRoundTripNano": 66003644,
+ "longestRoundTripNano": 170608003,
+ "averageApexExecutionNano": 48172544,
+ "shortestApexExecutionNano": 6286096,
+ "longestApexExecutionNano": 126817173
+ },
+ {
+ "batchNumber": 3474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157206399,
+ "shortestRoundTripNano": 60009950,
+ "longestRoundTripNano": 185496986,
+ "averageApexExecutionNano": 61646570,
+ "shortestApexExecutionNano": 7241786,
+ "longestApexExecutionNano": 117603774
+ },
+ {
+ "batchNumber": 3475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161794255,
+ "shortestRoundTripNano": 83882645,
+ "longestRoundTripNano": 191283783,
+ "averageApexExecutionNano": 71053725,
+ "shortestApexExecutionNano": 18701416,
+ "longestApexExecutionNano": 132526251
+ },
+ {
+ "batchNumber": 3476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137221685,
+ "shortestRoundTripNano": 69969717,
+ "longestRoundTripNano": 166427383,
+ "averageApexExecutionNano": 41024498,
+ "shortestApexExecutionNano": 5790935,
+ "longestApexExecutionNano": 105013903
+ },
+ {
+ "batchNumber": 3477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135319789,
+ "shortestRoundTripNano": 46767631,
+ "longestRoundTripNano": 162734253,
+ "averageApexExecutionNano": 61758648,
+ "shortestApexExecutionNano": 23326323,
+ "longestApexExecutionNano": 107069782
+ },
+ {
+ "batchNumber": 3478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151697784,
+ "shortestRoundTripNano": 64971543,
+ "longestRoundTripNano": 184518950,
+ "averageApexExecutionNano": 58813720,
+ "shortestApexExecutionNano": 6662519,
+ "longestApexExecutionNano": 137257850
+ },
+ {
+ "batchNumber": 3479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124838199,
+ "shortestRoundTripNano": 32576329,
+ "longestRoundTripNano": 155984648,
+ "averageApexExecutionNano": 56943962,
+ "shortestApexExecutionNano": 7893625,
+ "longestApexExecutionNano": 103343334
+ },
+ {
+ "batchNumber": 3480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156985592,
+ "shortestRoundTripNano": 52626732,
+ "longestRoundTripNano": 187107301,
+ "averageApexExecutionNano": 63479291,
+ "shortestApexExecutionNano": 5663764,
+ "longestApexExecutionNano": 129608543
+ },
+ {
+ "batchNumber": 3481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146099832,
+ "shortestRoundTripNano": 66734159,
+ "longestRoundTripNano": 170631651,
+ "averageApexExecutionNano": 59064564,
+ "shortestApexExecutionNano": 14247021,
+ "longestApexExecutionNano": 108743504
+ },
+ {
+ "batchNumber": 3482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129785024,
+ "shortestRoundTripNano": 57766637,
+ "longestRoundTripNano": 158159531,
+ "averageApexExecutionNano": 47843379,
+ "shortestApexExecutionNano": 9587990,
+ "longestApexExecutionNano": 109088023
+ },
+ {
+ "batchNumber": 3483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149266543,
+ "shortestRoundTripNano": 63184154,
+ "longestRoundTripNano": 182353031,
+ "averageApexExecutionNano": 65989103,
+ "shortestApexExecutionNano": 16053833,
+ "longestApexExecutionNano": 124283427
+ },
+ {
+ "batchNumber": 3484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 203289024,
+ "shortestRoundTripNano": 49034190,
+ "longestRoundTripNano": 246999549,
+ "averageApexExecutionNano": 95500135,
+ "shortestApexExecutionNano": 7366838,
+ "longestApexExecutionNano": 213349588
+ },
+ {
+ "batchNumber": 3485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127065585,
+ "shortestRoundTripNano": 61046092,
+ "longestRoundTripNano": 151131565,
+ "averageApexExecutionNano": 61170370,
+ "shortestApexExecutionNano": 13914663,
+ "longestApexExecutionNano": 115094037
+ },
+ {
+ "batchNumber": 3486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177172761,
+ "shortestRoundTripNano": 70834455,
+ "longestRoundTripNano": 221233998,
+ "averageApexExecutionNano": 70134136,
+ "shortestApexExecutionNano": 15574882,
+ "longestApexExecutionNano": 175929240
+ },
+ {
+ "batchNumber": 3487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128997776,
+ "shortestRoundTripNano": 68891581,
+ "longestRoundTripNano": 157397855,
+ "averageApexExecutionNano": 42520996,
+ "shortestApexExecutionNano": 6830483,
+ "longestApexExecutionNano": 110285698
+ },
+ {
+ "batchNumber": 3488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135189594,
+ "shortestRoundTripNano": 55087206,
+ "longestRoundTripNano": 171543053,
+ "averageApexExecutionNano": 58246065,
+ "shortestApexExecutionNano": 8949697,
+ "longestApexExecutionNano": 111344873
+ },
+ {
+ "batchNumber": 3489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143461654,
+ "shortestRoundTripNano": 73474731,
+ "longestRoundTripNano": 171269980,
+ "averageApexExecutionNano": 60226258,
+ "shortestApexExecutionNano": 7784817,
+ "longestApexExecutionNano": 107876910
+ },
+ {
+ "batchNumber": 3490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140251653,
+ "shortestRoundTripNano": 68563481,
+ "longestRoundTripNano": 167614578,
+ "averageApexExecutionNano": 55587319,
+ "shortestApexExecutionNano": 7073891,
+ "longestApexExecutionNano": 107349899
+ },
+ {
+ "batchNumber": 3491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171330080,
+ "shortestRoundTripNano": 86838336,
+ "longestRoundTripNano": 198439160,
+ "averageApexExecutionNano": 63216437,
+ "shortestApexExecutionNano": 6257406,
+ "longestApexExecutionNano": 140355154
+ },
+ {
+ "batchNumber": 3492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142704715,
+ "shortestRoundTripNano": 60262428,
+ "longestRoundTripNano": 173566839,
+ "averageApexExecutionNano": 61727482,
+ "shortestApexExecutionNano": 9770270,
+ "longestApexExecutionNano": 115109515
+ },
+ {
+ "batchNumber": 3493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175375764,
+ "shortestRoundTripNano": 78428416,
+ "longestRoundTripNano": 205390795,
+ "averageApexExecutionNano": 77218476,
+ "shortestApexExecutionNano": 10480589,
+ "longestApexExecutionNano": 136011093
+ },
+ {
+ "batchNumber": 3494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165815333,
+ "shortestRoundTripNano": 84863526,
+ "longestRoundTripNano": 191354529,
+ "averageApexExecutionNano": 69574256,
+ "shortestApexExecutionNano": 13394066,
+ "longestApexExecutionNano": 129651353
+ },
+ {
+ "batchNumber": 3495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136503574,
+ "shortestRoundTripNano": 68445596,
+ "longestRoundTripNano": 169930911,
+ "averageApexExecutionNano": 41529072,
+ "shortestApexExecutionNano": 10170895,
+ "longestApexExecutionNano": 109655590
+ },
+ {
+ "batchNumber": 3496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141509133,
+ "shortestRoundTripNano": 88397583,
+ "longestRoundTripNano": 169295632,
+ "averageApexExecutionNano": 73198531,
+ "shortestApexExecutionNano": 8456461,
+ "longestApexExecutionNano": 128172454
+ },
+ {
+ "batchNumber": 3497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145540365,
+ "shortestRoundTripNano": 69932659,
+ "longestRoundTripNano": 177929041,
+ "averageApexExecutionNano": 63310678,
+ "shortestApexExecutionNano": 10814266,
+ "longestApexExecutionNano": 119171770
+ },
+ {
+ "batchNumber": 3498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161172973,
+ "shortestRoundTripNano": 70376061,
+ "longestRoundTripNano": 199186948,
+ "averageApexExecutionNano": 69442665,
+ "shortestApexExecutionNano": 6757439,
+ "longestApexExecutionNano": 127610917
+ },
+ {
+ "batchNumber": 3499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147973891,
+ "shortestRoundTripNano": 58549261,
+ "longestRoundTripNano": 175916498,
+ "averageApexExecutionNano": 72457577,
+ "shortestApexExecutionNano": 5427583,
+ "longestApexExecutionNano": 125316465
+ },
+ {
+ "batchNumber": 3500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139329108,
+ "shortestRoundTripNano": 67168900,
+ "longestRoundTripNano": 165973060,
+ "averageApexExecutionNano": 54554281,
+ "shortestApexExecutionNano": 8534558,
+ "longestApexExecutionNano": 126780675
+ },
+ {
+ "batchNumber": 3501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155143147,
+ "shortestRoundTripNano": 37997989,
+ "longestRoundTripNano": 191752285,
+ "averageApexExecutionNano": 68062629,
+ "shortestApexExecutionNano": 8890939,
+ "longestApexExecutionNano": 130429847
+ },
+ {
+ "batchNumber": 3502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36030",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146205841,
+ "shortestRoundTripNano": 41342352,
+ "longestRoundTripNano": 176134467,
+ "averageApexExecutionNano": 60932374,
+ "shortestApexExecutionNano": 7354139,
+ "longestApexExecutionNano": 132852846
+ },
+ {
+ "batchNumber": 3503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138676252,
+ "shortestRoundTripNano": 46051341,
+ "longestRoundTripNano": 177417058,
+ "averageApexExecutionNano": 59819292,
+ "shortestApexExecutionNano": 8126085,
+ "longestApexExecutionNano": 122443896
+ },
+ {
+ "batchNumber": 3504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146148604,
+ "shortestRoundTripNano": 48957443,
+ "longestRoundTripNano": 174616360,
+ "averageApexExecutionNano": 58783857,
+ "shortestApexExecutionNano": 4454283,
+ "longestApexExecutionNano": 118785336
+ },
+ {
+ "batchNumber": 3505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149211072,
+ "shortestRoundTripNano": 60696938,
+ "longestRoundTripNano": 181311597,
+ "averageApexExecutionNano": 50255010,
+ "shortestApexExecutionNano": 4648157,
+ "longestApexExecutionNano": 114644669
+ },
+ {
+ "batchNumber": 3506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154224025,
+ "shortestRoundTripNano": 43202575,
+ "longestRoundTripNano": 193561912,
+ "averageApexExecutionNano": 70468330,
+ "shortestApexExecutionNano": 7405414,
+ "longestApexExecutionNano": 128412027
+ },
+ {
+ "batchNumber": 3507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180961972,
+ "shortestRoundTripNano": 63096277,
+ "longestRoundTripNano": 223289205,
+ "averageApexExecutionNano": 64728307,
+ "shortestApexExecutionNano": 8018221,
+ "longestApexExecutionNano": 156885546
+ },
+ {
+ "batchNumber": 3508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165026408,
+ "shortestRoundTripNano": 64996704,
+ "longestRoundTripNano": 202385456,
+ "averageApexExecutionNano": 86245805,
+ "shortestApexExecutionNano": 6049858,
+ "longestApexExecutionNano": 165650923
+ },
+ {
+ "batchNumber": 3509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169761315,
+ "shortestRoundTripNano": 62720255,
+ "longestRoundTripNano": 197588700,
+ "averageApexExecutionNano": 64628244,
+ "shortestApexExecutionNano": 10431640,
+ "longestApexExecutionNano": 124281475
+ },
+ {
+ "batchNumber": 3510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145595836,
+ "shortestRoundTripNano": 54697093,
+ "longestRoundTripNano": 177569983,
+ "averageApexExecutionNano": 66687170,
+ "shortestApexExecutionNano": 9810687,
+ "longestApexExecutionNano": 126946856
+ },
+ {
+ "batchNumber": 3511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144430404,
+ "shortestRoundTripNano": 38785423,
+ "longestRoundTripNano": 170485551,
+ "averageApexExecutionNano": 53727706,
+ "shortestApexExecutionNano": 7582174,
+ "longestApexExecutionNano": 125660352
+ },
+ {
+ "batchNumber": 3512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170285918,
+ "shortestRoundTripNano": 50092309,
+ "longestRoundTripNano": 204159853,
+ "averageApexExecutionNano": 72711965,
+ "shortestApexExecutionNano": 8018860,
+ "longestApexExecutionNano": 138901964
+ },
+ {
+ "batchNumber": 3513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153028646,
+ "shortestRoundTripNano": 56016625,
+ "longestRoundTripNano": 183322212,
+ "averageApexExecutionNano": 71445879,
+ "shortestApexExecutionNano": 8574544,
+ "longestApexExecutionNano": 129243913
+ },
+ {
+ "batchNumber": 3514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144122124,
+ "shortestRoundTripNano": 66017563,
+ "longestRoundTripNano": 169947534,
+ "averageApexExecutionNano": 52511713,
+ "shortestApexExecutionNano": 5761529,
+ "longestApexExecutionNano": 105624729
+ },
+ {
+ "batchNumber": 3515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137494919,
+ "shortestRoundTripNano": 47888601,
+ "longestRoundTripNano": 179879194,
+ "averageApexExecutionNano": 61703751,
+ "shortestApexExecutionNano": 12950246,
+ "longestApexExecutionNano": 114094235
+ },
+ {
+ "batchNumber": 3516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126316420,
+ "shortestRoundTripNano": 72290792,
+ "longestRoundTripNano": 162254612,
+ "averageApexExecutionNano": 53058996,
+ "shortestApexExecutionNano": 7273883,
+ "longestApexExecutionNano": 115753150
+ },
+ {
+ "batchNumber": 3517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180608101,
+ "shortestRoundTripNano": 82464106,
+ "longestRoundTripNano": 204206688,
+ "averageApexExecutionNano": 73235060,
+ "shortestApexExecutionNano": 9612628,
+ "longestApexExecutionNano": 154017823
+ },
+ {
+ "batchNumber": 3518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133655867,
+ "shortestRoundTripNano": 58677230,
+ "longestRoundTripNano": 167029143,
+ "averageApexExecutionNano": 52807153,
+ "shortestApexExecutionNano": 6918320,
+ "longestApexExecutionNano": 123295935
+ },
+ {
+ "batchNumber": 3519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155650439,
+ "shortestRoundTripNano": 55826054,
+ "longestRoundTripNano": 193203684,
+ "averageApexExecutionNano": 65587322,
+ "shortestApexExecutionNano": 5696258,
+ "longestApexExecutionNano": 114160480
+ },
+ {
+ "batchNumber": 3520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134519311,
+ "shortestRoundTripNano": 73291923,
+ "longestRoundTripNano": 161415083,
+ "averageApexExecutionNano": 66900812,
+ "shortestApexExecutionNano": 14050451,
+ "longestApexExecutionNano": 122165627
+ },
+ {
+ "batchNumber": 3521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160850022,
+ "shortestRoundTripNano": 70428540,
+ "longestRoundTripNano": 187486973,
+ "averageApexExecutionNano": 76361348,
+ "shortestApexExecutionNano": 9481684,
+ "longestApexExecutionNano": 137796027
+ },
+ {
+ "batchNumber": 3522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159079796,
+ "shortestRoundTripNano": 71038006,
+ "longestRoundTripNano": 190771422,
+ "averageApexExecutionNano": 56729919,
+ "shortestApexExecutionNano": 7396999,
+ "longestApexExecutionNano": 101089520
+ },
+ {
+ "batchNumber": 3523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36038",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158273831,
+ "shortestRoundTripNano": 58525936,
+ "longestRoundTripNano": 211299158,
+ "averageApexExecutionNano": 60564215,
+ "shortestApexExecutionNano": 5827416,
+ "longestApexExecutionNano": 124254719
+ },
+ {
+ "batchNumber": 3524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151961443,
+ "shortestRoundTripNano": 63444936,
+ "longestRoundTripNano": 186747363,
+ "averageApexExecutionNano": 42486683,
+ "shortestApexExecutionNano": 7177224,
+ "longestApexExecutionNano": 131849947
+ },
+ {
+ "batchNumber": 3525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131495946,
+ "shortestRoundTripNano": 65592258,
+ "longestRoundTripNano": 168154566,
+ "averageApexExecutionNano": 63150934,
+ "shortestApexExecutionNano": 7529298,
+ "longestApexExecutionNano": 122870255
+ },
+ {
+ "batchNumber": 3526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154430198,
+ "shortestRoundTripNano": 74292683,
+ "longestRoundTripNano": 188338583,
+ "averageApexExecutionNano": 72239775,
+ "shortestApexExecutionNano": 14753430,
+ "longestApexExecutionNano": 143393241
+ },
+ {
+ "batchNumber": 3527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154731900,
+ "shortestRoundTripNano": 61136836,
+ "longestRoundTripNano": 211572782,
+ "averageApexExecutionNano": 65553874,
+ "shortestApexExecutionNano": 8705267,
+ "longestApexExecutionNano": 137610875
+ },
+ {
+ "batchNumber": 3528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147094649,
+ "shortestRoundTripNano": 87125860,
+ "longestRoundTripNano": 172390839,
+ "averageApexExecutionNano": 66554848,
+ "shortestApexExecutionNano": 9842521,
+ "longestApexExecutionNano": 133468947
+ },
+ {
+ "batchNumber": 3529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143164593,
+ "shortestRoundTripNano": 64052109,
+ "longestRoundTripNano": 175591228,
+ "averageApexExecutionNano": 57027396,
+ "shortestApexExecutionNano": 6490908,
+ "longestApexExecutionNano": 108120685
+ },
+ {
+ "batchNumber": 3530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139066982,
+ "shortestRoundTripNano": 77559293,
+ "longestRoundTripNano": 172253869,
+ "averageApexExecutionNano": 59583171,
+ "shortestApexExecutionNano": 8821585,
+ "longestApexExecutionNano": 117483895
+ },
+ {
+ "batchNumber": 3531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140288807,
+ "shortestRoundTripNano": 55521966,
+ "longestRoundTripNano": 178691595,
+ "averageApexExecutionNano": 54157669,
+ "shortestApexExecutionNano": 6743513,
+ "longestApexExecutionNano": 124934734
+ },
+ {
+ "batchNumber": 3532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134927536,
+ "shortestRoundTripNano": 46924155,
+ "longestRoundTripNano": 167374415,
+ "averageApexExecutionNano": 65335830,
+ "shortestApexExecutionNano": 14243833,
+ "longestApexExecutionNano": 120976903
+ },
+ {
+ "batchNumber": 3533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147706657,
+ "shortestRoundTripNano": 35228674,
+ "longestRoundTripNano": 174898870,
+ "averageApexExecutionNano": 63023710,
+ "shortestApexExecutionNano": 9452795,
+ "longestApexExecutionNano": 126890624
+ },
+ {
+ "batchNumber": 3534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150300883,
+ "shortestRoundTripNano": 60651343,
+ "longestRoundTripNano": 189794536,
+ "averageApexExecutionNano": 68107626,
+ "shortestApexExecutionNano": 7999490,
+ "longestApexExecutionNano": 145827074
+ },
+ {
+ "batchNumber": 3535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152318516,
+ "shortestRoundTripNano": 47165094,
+ "longestRoundTripNano": 184030598,
+ "averageApexExecutionNano": 63039788,
+ "shortestApexExecutionNano": 8194263,
+ "longestApexExecutionNano": 121015745
+ },
+ {
+ "batchNumber": 3536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156351865,
+ "shortestRoundTripNano": 73961865,
+ "longestRoundTripNano": 194774949,
+ "averageApexExecutionNano": 67809197,
+ "shortestApexExecutionNano": 11209149,
+ "longestApexExecutionNano": 157766175
+ },
+ {
+ "batchNumber": 3537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160000443,
+ "shortestRoundTripNano": 89529495,
+ "longestRoundTripNano": 188910312,
+ "averageApexExecutionNano": 76442473,
+ "shortestApexExecutionNano": 7248254,
+ "longestApexExecutionNano": 144043391
+ },
+ {
+ "batchNumber": 3538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146998623,
+ "shortestRoundTripNano": 78775191,
+ "longestRoundTripNano": 170110020,
+ "averageApexExecutionNano": 65483386,
+ "shortestApexExecutionNano": 9585042,
+ "longestApexExecutionNano": 114049863
+ },
+ {
+ "batchNumber": 3539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150562932,
+ "shortestRoundTripNano": 77802613,
+ "longestRoundTripNano": 178557554,
+ "averageApexExecutionNano": 53756308,
+ "shortestApexExecutionNano": 6681146,
+ "longestApexExecutionNano": 127325632
+ },
+ {
+ "batchNumber": 3540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143060122,
+ "shortestRoundTripNano": 55027045,
+ "longestRoundTripNano": 176662445,
+ "averageApexExecutionNano": 55384134,
+ "shortestApexExecutionNano": 8442565,
+ "longestApexExecutionNano": 116227829
+ },
+ {
+ "batchNumber": 3541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148213630,
+ "shortestRoundTripNano": 47475270,
+ "longestRoundTripNano": 172141159,
+ "averageApexExecutionNano": 67130295,
+ "shortestApexExecutionNano": 7788344,
+ "longestApexExecutionNano": 119022945
+ },
+ {
+ "batchNumber": 3542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167513597,
+ "shortestRoundTripNano": 76823517,
+ "longestRoundTripNano": 196438594,
+ "averageApexExecutionNano": 65123750,
+ "shortestApexExecutionNano": 13142144,
+ "longestApexExecutionNano": 128109132
+ },
+ {
+ "batchNumber": 3543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136669008,
+ "shortestRoundTripNano": 51012468,
+ "longestRoundTripNano": 169038659,
+ "averageApexExecutionNano": 47740350,
+ "shortestApexExecutionNano": 4883566,
+ "longestApexExecutionNano": 105842938
+ },
+ {
+ "batchNumber": 3544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168969410,
+ "shortestRoundTripNano": 60852971,
+ "longestRoundTripNano": 219942389,
+ "averageApexExecutionNano": 65293619,
+ "shortestApexExecutionNano": 10731605,
+ "longestApexExecutionNano": 115285703
+ },
+ {
+ "batchNumber": 3545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152256030,
+ "shortestRoundTripNano": 54330116,
+ "longestRoundTripNano": 188489078,
+ "averageApexExecutionNano": 79832186,
+ "shortestApexExecutionNano": 13481810,
+ "longestApexExecutionNano": 138564384
+ },
+ {
+ "batchNumber": 3546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133872835,
+ "shortestRoundTripNano": 59326804,
+ "longestRoundTripNano": 163889111,
+ "averageApexExecutionNano": 54971024,
+ "shortestApexExecutionNano": 7683544,
+ "longestApexExecutionNano": 112046147
+ },
+ {
+ "batchNumber": 3547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167998701,
+ "shortestRoundTripNano": 59077342,
+ "longestRoundTripNano": 212845843,
+ "averageApexExecutionNano": 62217917,
+ "shortestApexExecutionNano": 8430624,
+ "longestApexExecutionNano": 147193155
+ },
+ {
+ "batchNumber": 3548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148064275,
+ "shortestRoundTripNano": 77615574,
+ "longestRoundTripNano": 179999145,
+ "averageApexExecutionNano": 67126721,
+ "shortestApexExecutionNano": 5989467,
+ "longestApexExecutionNano": 137742838
+ },
+ {
+ "batchNumber": 3549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141040667,
+ "shortestRoundTripNano": 63162689,
+ "longestRoundTripNano": 171093086,
+ "averageApexExecutionNano": 49802850,
+ "shortestApexExecutionNano": 7006574,
+ "longestApexExecutionNano": 126485972
+ },
+ {
+ "batchNumber": 3550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138424447,
+ "shortestRoundTripNano": 43716435,
+ "longestRoundTripNano": 171321399,
+ "averageApexExecutionNano": 68010589,
+ "shortestApexExecutionNano": 6438184,
+ "longestApexExecutionNano": 120536424
+ },
+ {
+ "batchNumber": 3551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157695604,
+ "shortestRoundTripNano": 78340644,
+ "longestRoundTripNano": 184961289,
+ "averageApexExecutionNano": 72370882,
+ "shortestApexExecutionNano": 7049168,
+ "longestApexExecutionNano": 137673941
+ },
+ {
+ "batchNumber": 3552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149096999,
+ "shortestRoundTripNano": 73546659,
+ "longestRoundTripNano": 185397935,
+ "averageApexExecutionNano": 45695326,
+ "shortestApexExecutionNano": 10093172,
+ "longestApexExecutionNano": 104862590
+ },
+ {
+ "batchNumber": 3553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139700352,
+ "shortestRoundTripNano": 45193038,
+ "longestRoundTripNano": 167936085,
+ "averageApexExecutionNano": 54731220,
+ "shortestApexExecutionNano": 12964257,
+ "longestApexExecutionNano": 101141503
+ },
+ {
+ "batchNumber": 3554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142371790,
+ "shortestRoundTripNano": 84814897,
+ "longestRoundTripNano": 170805309,
+ "averageApexExecutionNano": 64722858,
+ "shortestApexExecutionNano": 9196789,
+ "longestApexExecutionNano": 129036754
+ },
+ {
+ "batchNumber": 3555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122785533,
+ "shortestRoundTripNano": 66139872,
+ "longestRoundTripNano": 160785752,
+ "averageApexExecutionNano": 47256338,
+ "shortestApexExecutionNano": 7039605,
+ "longestApexExecutionNano": 105487835
+ },
+ {
+ "batchNumber": 3556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148618125,
+ "shortestRoundTripNano": 80242409,
+ "longestRoundTripNano": 176268674,
+ "averageApexExecutionNano": 67271206,
+ "shortestApexExecutionNano": 7168693,
+ "longestApexExecutionNano": 122273329
+ },
+ {
+ "batchNumber": 3557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137745127,
+ "shortestRoundTripNano": 57181329,
+ "longestRoundTripNano": 167731304,
+ "averageApexExecutionNano": 60516351,
+ "shortestApexExecutionNano": 9774426,
+ "longestApexExecutionNano": 119270948
+ },
+ {
+ "batchNumber": 3558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174025795,
+ "shortestRoundTripNano": 58222915,
+ "longestRoundTripNano": 220371249,
+ "averageApexExecutionNano": 79960202,
+ "shortestApexExecutionNano": 14329801,
+ "longestApexExecutionNano": 141685400
+ },
+ {
+ "batchNumber": 3559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148075190,
+ "shortestRoundTripNano": 67965737,
+ "longestRoundTripNano": 175140391,
+ "averageApexExecutionNano": 62732494,
+ "shortestApexExecutionNano": 5460369,
+ "longestApexExecutionNano": 119939536
+ },
+ {
+ "batchNumber": 3560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163958167,
+ "shortestRoundTripNano": 66328841,
+ "longestRoundTripNano": 192386337,
+ "averageApexExecutionNano": 63671955,
+ "shortestApexExecutionNano": 10043426,
+ "longestApexExecutionNano": 123894549
+ },
+ {
+ "batchNumber": 3561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155845346,
+ "shortestRoundTripNano": 72531842,
+ "longestRoundTripNano": 187686709,
+ "averageApexExecutionNano": 60924711,
+ "shortestApexExecutionNano": 8122680,
+ "longestApexExecutionNano": 124418175
+ },
+ {
+ "batchNumber": 3562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160074822,
+ "shortestRoundTripNano": 65509787,
+ "longestRoundTripNano": 203242990,
+ "averageApexExecutionNano": 70480389,
+ "shortestApexExecutionNano": 6929229,
+ "longestApexExecutionNano": 162063181
+ },
+ {
+ "batchNumber": 3563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161426769,
+ "shortestRoundTripNano": 42450422,
+ "longestRoundTripNano": 187092710,
+ "averageApexExecutionNano": 81087637,
+ "shortestApexExecutionNano": 5716433,
+ "longestApexExecutionNano": 142562466
+ },
+ {
+ "batchNumber": 3564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144244922,
+ "shortestRoundTripNano": 44241323,
+ "longestRoundTripNano": 177389078,
+ "averageApexExecutionNano": 63766944,
+ "shortestApexExecutionNano": 11288441,
+ "longestApexExecutionNano": 132631890
+ },
+ {
+ "batchNumber": 3565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146759444,
+ "shortestRoundTripNano": 80315860,
+ "longestRoundTripNano": 176932914,
+ "averageApexExecutionNano": 73936357,
+ "shortestApexExecutionNano": 8062516,
+ "longestApexExecutionNano": 120641185
+ },
+ {
+ "batchNumber": 3566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137381091,
+ "shortestRoundTripNano": 62693600,
+ "longestRoundTripNano": 162626776,
+ "averageApexExecutionNano": 48159033,
+ "shortestApexExecutionNano": 13595711,
+ "longestApexExecutionNano": 96904528
+ },
+ {
+ "batchNumber": 3567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143135940,
+ "shortestRoundTripNano": 66457343,
+ "longestRoundTripNano": 184737825,
+ "averageApexExecutionNano": 55837856,
+ "shortestApexExecutionNano": 9410309,
+ "longestApexExecutionNano": 132769092
+ },
+ {
+ "batchNumber": 3568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143911471,
+ "shortestRoundTripNano": 77254976,
+ "longestRoundTripNano": 170855109,
+ "averageApexExecutionNano": 65155181,
+ "shortestApexExecutionNano": 7798819,
+ "longestApexExecutionNano": 115585592
+ },
+ {
+ "batchNumber": 3569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144295959,
+ "shortestRoundTripNano": 68144725,
+ "longestRoundTripNano": 189429413,
+ "averageApexExecutionNano": 57783620,
+ "shortestApexExecutionNano": 8147532,
+ "longestApexExecutionNano": 119173345
+ },
+ {
+ "batchNumber": 3570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146115148,
+ "shortestRoundTripNano": 45987818,
+ "longestRoundTripNano": 179949025,
+ "averageApexExecutionNano": 63295530,
+ "shortestApexExecutionNano": 7166820,
+ "longestApexExecutionNano": 141009341
+ },
+ {
+ "batchNumber": 3571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179246269,
+ "shortestRoundTripNano": 72003661,
+ "longestRoundTripNano": 231348791,
+ "averageApexExecutionNano": 94533292,
+ "shortestApexExecutionNano": 14299703,
+ "longestApexExecutionNano": 144693547
+ },
+ {
+ "batchNumber": 3572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159758811,
+ "shortestRoundTripNano": 74945920,
+ "longestRoundTripNano": 192841577,
+ "averageApexExecutionNano": 61283211,
+ "shortestApexExecutionNano": 7893234,
+ "longestApexExecutionNano": 91559499
+ },
+ {
+ "batchNumber": 3573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144941968,
+ "shortestRoundTripNano": 42006559,
+ "longestRoundTripNano": 176906078,
+ "averageApexExecutionNano": 57539281,
+ "shortestApexExecutionNano": 6503004,
+ "longestApexExecutionNano": 124130479
+ },
+ {
+ "batchNumber": 3574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149616429,
+ "shortestRoundTripNano": 87906710,
+ "longestRoundTripNano": 180020051,
+ "averageApexExecutionNano": 63534229,
+ "shortestApexExecutionNano": 6231806,
+ "longestApexExecutionNano": 114819970
+ },
+ {
+ "batchNumber": 3575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137550484,
+ "shortestRoundTripNano": 49486122,
+ "longestRoundTripNano": 165367498,
+ "averageApexExecutionNano": 63236797,
+ "shortestApexExecutionNano": 6759627,
+ "longestApexExecutionNano": 129305433
+ },
+ {
+ "batchNumber": 3576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148882151,
+ "shortestRoundTripNano": 65343078,
+ "longestRoundTripNano": 180408384,
+ "averageApexExecutionNano": 62367441,
+ "shortestApexExecutionNano": 9268603,
+ "longestApexExecutionNano": 137998916
+ },
+ {
+ "batchNumber": 3577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132489646,
+ "shortestRoundTripNano": 52855594,
+ "longestRoundTripNano": 168168887,
+ "averageApexExecutionNano": 44580784,
+ "shortestApexExecutionNano": 5778603,
+ "longestApexExecutionNano": 98418331
+ },
+ {
+ "batchNumber": 3578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151395777,
+ "shortestRoundTripNano": 71349847,
+ "longestRoundTripNano": 187978790,
+ "averageApexExecutionNano": 66566310,
+ "shortestApexExecutionNano": 9987207,
+ "longestApexExecutionNano": 137658638
+ },
+ {
+ "batchNumber": 3579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145539234,
+ "shortestRoundTripNano": 80141728,
+ "longestRoundTripNano": 176399037,
+ "averageApexExecutionNano": 57175300,
+ "shortestApexExecutionNano": 13701315,
+ "longestApexExecutionNano": 117512458
+ },
+ {
+ "batchNumber": 3580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146393107,
+ "shortestRoundTripNano": 71068172,
+ "longestRoundTripNano": 177130779,
+ "averageApexExecutionNano": 35295864,
+ "shortestApexExecutionNano": 6446523,
+ "longestApexExecutionNano": 135413025
+ },
+ {
+ "batchNumber": 3581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167021859,
+ "shortestRoundTripNano": 88617690,
+ "longestRoundTripNano": 204373584,
+ "averageApexExecutionNano": 72928898,
+ "shortestApexExecutionNano": 8178530,
+ "longestApexExecutionNano": 137721471
+ },
+ {
+ "batchNumber": 3582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137692352,
+ "shortestRoundTripNano": 73001813,
+ "longestRoundTripNano": 172036309,
+ "averageApexExecutionNano": 54594416,
+ "shortestApexExecutionNano": 7160835,
+ "longestApexExecutionNano": 124785633
+ },
+ {
+ "batchNumber": 3583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132538140,
+ "shortestRoundTripNano": 59670483,
+ "longestRoundTripNano": 163217997,
+ "averageApexExecutionNano": 57168077,
+ "shortestApexExecutionNano": 8644916,
+ "longestApexExecutionNano": 117243381
+ },
+ {
+ "batchNumber": 3584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141440928,
+ "shortestRoundTripNano": 57500531,
+ "longestRoundTripNano": 177985109,
+ "averageApexExecutionNano": 37642741,
+ "shortestApexExecutionNano": 5632289,
+ "longestApexExecutionNano": 97093051
+ },
+ {
+ "batchNumber": 3585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159987959,
+ "shortestRoundTripNano": 65495484,
+ "longestRoundTripNano": 189610677,
+ "averageApexExecutionNano": 79147809,
+ "shortestApexExecutionNano": 13887759,
+ "longestApexExecutionNano": 140168696
+ },
+ {
+ "batchNumber": 3586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184801905,
+ "shortestRoundTripNano": 66692072,
+ "longestRoundTripNano": 219006997,
+ "averageApexExecutionNano": 76588029,
+ "shortestApexExecutionNano": 10545878,
+ "longestApexExecutionNano": 147323980
+ },
+ {
+ "batchNumber": 3587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165708811,
+ "shortestRoundTripNano": 71106424,
+ "longestRoundTripNano": 193665613,
+ "averageApexExecutionNano": 64042840,
+ "shortestApexExecutionNano": 7487529,
+ "longestApexExecutionNano": 120832199
+ },
+ {
+ "batchNumber": 3588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155392868,
+ "shortestRoundTripNano": 71406452,
+ "longestRoundTripNano": 181674760,
+ "averageApexExecutionNano": 64066071,
+ "shortestApexExecutionNano": 6663900,
+ "longestApexExecutionNano": 134156336
+ },
+ {
+ "batchNumber": 3589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142695083,
+ "shortestRoundTripNano": 66760775,
+ "longestRoundTripNano": 181003027,
+ "averageApexExecutionNano": 64651960,
+ "shortestApexExecutionNano": 6132713,
+ "longestApexExecutionNano": 144596001
+ },
+ {
+ "batchNumber": 3590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156955952,
+ "shortestRoundTripNano": 79041952,
+ "longestRoundTripNano": 181457788,
+ "averageApexExecutionNano": 74266756,
+ "shortestApexExecutionNano": 9234611,
+ "longestApexExecutionNano": 138921518
+ },
+ {
+ "batchNumber": 3591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148952605,
+ "shortestRoundTripNano": 61436220,
+ "longestRoundTripNano": 195308521,
+ "averageApexExecutionNano": 55603989,
+ "shortestApexExecutionNano": 5201251,
+ "longestApexExecutionNano": 142606836
+ },
+ {
+ "batchNumber": 3592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154160928,
+ "shortestRoundTripNano": 84466834,
+ "longestRoundTripNano": 184820936,
+ "averageApexExecutionNano": 71269802,
+ "shortestApexExecutionNano": 9309909,
+ "longestApexExecutionNano": 135037999
+ },
+ {
+ "batchNumber": 3593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141315392,
+ "shortestRoundTripNano": 60101775,
+ "longestRoundTripNano": 178253266,
+ "averageApexExecutionNano": 52514602,
+ "shortestApexExecutionNano": 10246712,
+ "longestApexExecutionNano": 119270574
+ },
+ {
+ "batchNumber": 3594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159269106,
+ "shortestRoundTripNano": 76471401,
+ "longestRoundTripNano": 192524005,
+ "averageApexExecutionNano": 64519342,
+ "shortestApexExecutionNano": 9755017,
+ "longestApexExecutionNano": 130711641
+ },
+ {
+ "batchNumber": 3595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150010474,
+ "shortestRoundTripNano": 46912202,
+ "longestRoundTripNano": 179778549,
+ "averageApexExecutionNano": 64848825,
+ "shortestApexExecutionNano": 6993329,
+ "longestApexExecutionNano": 140195454
+ },
+ {
+ "batchNumber": 3596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137522308,
+ "shortestRoundTripNano": 61798029,
+ "longestRoundTripNano": 163919061,
+ "averageApexExecutionNano": 60480768,
+ "shortestApexExecutionNano": 9423478,
+ "longestApexExecutionNano": 112698735
+ },
+ {
+ "batchNumber": 3597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149045442,
+ "shortestRoundTripNano": 60413158,
+ "longestRoundTripNano": 172877517,
+ "averageApexExecutionNano": 72741681,
+ "shortestApexExecutionNano": 5742162,
+ "longestApexExecutionNano": 120503334
+ },
+ {
+ "batchNumber": 3598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147063833,
+ "shortestRoundTripNano": 70052146,
+ "longestRoundTripNano": 176250382,
+ "averageApexExecutionNano": 70418525,
+ "shortestApexExecutionNano": 12304911,
+ "longestApexExecutionNano": 123248869
+ },
+ {
+ "batchNumber": 3599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161761779,
+ "shortestRoundTripNano": 65512837,
+ "longestRoundTripNano": 205087506,
+ "averageApexExecutionNano": 66847767,
+ "shortestApexExecutionNano": 7813326,
+ "longestApexExecutionNano": 130915373
+ },
+ {
+ "batchNumber": 3600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137385384,
+ "shortestRoundTripNano": 55036334,
+ "longestRoundTripNano": 166652649,
+ "averageApexExecutionNano": 45542416,
+ "shortestApexExecutionNano": 8392143,
+ "longestApexExecutionNano": 104186777
+ },
+ {
+ "batchNumber": 3601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148845425,
+ "shortestRoundTripNano": 85695471,
+ "longestRoundTripNano": 174399144,
+ "averageApexExecutionNano": 73072163,
+ "shortestApexExecutionNano": 8646369,
+ "longestApexExecutionNano": 119584479
+ },
+ {
+ "batchNumber": 3602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 212284595,
+ "shortestRoundTripNano": 89485474,
+ "longestRoundTripNano": 239499781,
+ "averageApexExecutionNano": 90661571,
+ "shortestApexExecutionNano": 7977787,
+ "longestApexExecutionNano": 192860076
+ },
+ {
+ "batchNumber": 3603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153237211,
+ "shortestRoundTripNano": 55062681,
+ "longestRoundTripNano": 189190395,
+ "averageApexExecutionNano": 56205442,
+ "shortestApexExecutionNano": 9869402,
+ "longestApexExecutionNano": 137772838
+ },
+ {
+ "batchNumber": 3604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141518627,
+ "shortestRoundTripNano": 75314470,
+ "longestRoundTripNano": 169657577,
+ "averageApexExecutionNano": 71089261,
+ "shortestApexExecutionNano": 6258072,
+ "longestApexExecutionNano": 127045590
+ },
+ {
+ "batchNumber": 3605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141225060,
+ "shortestRoundTripNano": 62228847,
+ "longestRoundTripNano": 170023074,
+ "averageApexExecutionNano": 49089934,
+ "shortestApexExecutionNano": 7743993,
+ "longestApexExecutionNano": 102501682
+ },
+ {
+ "batchNumber": 3606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125019079,
+ "shortestRoundTripNano": 65132359,
+ "longestRoundTripNano": 158646261,
+ "averageApexExecutionNano": 46968219,
+ "shortestApexExecutionNano": 6195214,
+ "longestApexExecutionNano": 113774509
+ },
+ {
+ "batchNumber": 3607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160966860,
+ "shortestRoundTripNano": 73582407,
+ "longestRoundTripNano": 194103216,
+ "averageApexExecutionNano": 64652362,
+ "shortestApexExecutionNano": 7581208,
+ "longestApexExecutionNano": 139857565
+ },
+ {
+ "batchNumber": 3608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147307278,
+ "shortestRoundTripNano": 41558637,
+ "longestRoundTripNano": 179205469,
+ "averageApexExecutionNano": 61040425,
+ "shortestApexExecutionNano": 16003169,
+ "longestApexExecutionNano": 118703800
+ },
+ {
+ "batchNumber": 3609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 212892848,
+ "shortestRoundTripNano": 79137749,
+ "longestRoundTripNano": 251859482,
+ "averageApexExecutionNano": 86548715,
+ "shortestApexExecutionNano": 9838022,
+ "longestApexExecutionNano": 208645778
+ },
+ {
+ "batchNumber": 3610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36072",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169039116,
+ "shortestRoundTripNano": 88699741,
+ "longestRoundTripNano": 201122820,
+ "averageApexExecutionNano": 71978142,
+ "shortestApexExecutionNano": 10190040,
+ "longestApexExecutionNano": 152775294
+ },
+ {
+ "batchNumber": 3611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36072",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154555203,
+ "shortestRoundTripNano": 60656235,
+ "longestRoundTripNano": 192723664,
+ "averageApexExecutionNano": 68679093,
+ "shortestApexExecutionNano": 13136399,
+ "longestApexExecutionNano": 139947353
+ },
+ {
+ "batchNumber": 3612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155381703,
+ "shortestRoundTripNano": 75357657,
+ "longestRoundTripNano": 186008238,
+ "averageApexExecutionNano": 65196647,
+ "shortestApexExecutionNano": 11096270,
+ "longestApexExecutionNano": 144318007
+ },
+ {
+ "batchNumber": 3613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147119373,
+ "shortestRoundTripNano": 60951229,
+ "longestRoundTripNano": 182715016,
+ "averageApexExecutionNano": 54850570,
+ "shortestApexExecutionNano": 10273134,
+ "longestApexExecutionNano": 114027138
+ },
+ {
+ "batchNumber": 3614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160258074,
+ "shortestRoundTripNano": 74221261,
+ "longestRoundTripNano": 196134218,
+ "averageApexExecutionNano": 67768690,
+ "shortestApexExecutionNano": 7225119,
+ "longestApexExecutionNano": 142177910
+ },
+ {
+ "batchNumber": 3615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125833020,
+ "shortestRoundTripNano": 52184692,
+ "longestRoundTripNano": 160467664,
+ "averageApexExecutionNano": 47209680,
+ "shortestApexExecutionNano": 5208939,
+ "longestApexExecutionNano": 95613053
+ },
+ {
+ "batchNumber": 3616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146680742,
+ "shortestRoundTripNano": 63759233,
+ "longestRoundTripNano": 174535593,
+ "averageApexExecutionNano": 69891587,
+ "shortestApexExecutionNano": 9029883,
+ "longestApexExecutionNano": 120893991
+ },
+ {
+ "batchNumber": 3617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152542724,
+ "shortestRoundTripNano": 76037106,
+ "longestRoundTripNano": 187549890,
+ "averageApexExecutionNano": 63597898,
+ "shortestApexExecutionNano": 11177661,
+ "longestApexExecutionNano": 137075139
+ },
+ {
+ "batchNumber": 3618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168294202,
+ "shortestRoundTripNano": 64867161,
+ "longestRoundTripNano": 196002263,
+ "averageApexExecutionNano": 74635034,
+ "shortestApexExecutionNano": 13740794,
+ "longestApexExecutionNano": 143467039
+ },
+ {
+ "batchNumber": 3619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161883530,
+ "shortestRoundTripNano": 37627719,
+ "longestRoundTripNano": 195127209,
+ "averageApexExecutionNano": 76140373,
+ "shortestApexExecutionNano": 11696328,
+ "longestApexExecutionNano": 144075770
+ },
+ {
+ "batchNumber": 3620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141794681,
+ "shortestRoundTripNano": 66179518,
+ "longestRoundTripNano": 184000872,
+ "averageApexExecutionNano": 61416496,
+ "shortestApexExecutionNano": 6080349,
+ "longestApexExecutionNano": 119750197
+ },
+ {
+ "batchNumber": 3621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136988670,
+ "shortestRoundTripNano": 61837822,
+ "longestRoundTripNano": 158257460,
+ "averageApexExecutionNano": 46529177,
+ "shortestApexExecutionNano": 8208941,
+ "longestApexExecutionNano": 109612986
+ },
+ {
+ "batchNumber": 3622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142432990,
+ "shortestRoundTripNano": 63112994,
+ "longestRoundTripNano": 164912414,
+ "averageApexExecutionNano": 65020094,
+ "shortestApexExecutionNano": 6262624,
+ "longestApexExecutionNano": 115832261
+ },
+ {
+ "batchNumber": 3623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150381544,
+ "shortestRoundTripNano": 59661742,
+ "longestRoundTripNano": 186230421,
+ "averageApexExecutionNano": 66350583,
+ "shortestApexExecutionNano": 7238553,
+ "longestApexExecutionNano": 143989703
+ },
+ {
+ "batchNumber": 3624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139535547,
+ "shortestRoundTripNano": 57511560,
+ "longestRoundTripNano": 177307728,
+ "averageApexExecutionNano": 41863945,
+ "shortestApexExecutionNano": 6335684,
+ "longestApexExecutionNano": 102519913
+ },
+ {
+ "batchNumber": 3625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141231159,
+ "shortestRoundTripNano": 84102877,
+ "longestRoundTripNano": 163779844,
+ "averageApexExecutionNano": 72907580,
+ "shortestApexExecutionNano": 12288414,
+ "longestApexExecutionNano": 117792606
+ },
+ {
+ "batchNumber": 3626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139850718,
+ "shortestRoundTripNano": 68525603,
+ "longestRoundTripNano": 169859882,
+ "averageApexExecutionNano": 62366283,
+ "shortestApexExecutionNano": 6793026,
+ "longestApexExecutionNano": 114173000
+ },
+ {
+ "batchNumber": 3627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136032896,
+ "shortestRoundTripNano": 61218018,
+ "longestRoundTripNano": 163755210,
+ "averageApexExecutionNano": 53755756,
+ "shortestApexExecutionNano": 14658375,
+ "longestApexExecutionNano": 86206439
+ },
+ {
+ "batchNumber": 3628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165403673,
+ "shortestRoundTripNano": 48476119,
+ "longestRoundTripNano": 197928733,
+ "averageApexExecutionNano": 64659388,
+ "shortestApexExecutionNano": 11147269,
+ "longestApexExecutionNano": 126116506
+ },
+ {
+ "batchNumber": 3629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121706354,
+ "shortestRoundTripNano": 47933148,
+ "longestRoundTripNano": 148945137,
+ "averageApexExecutionNano": 54311046,
+ "shortestApexExecutionNano": 6847209,
+ "longestApexExecutionNano": 121346544
+ },
+ {
+ "batchNumber": 3630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123653137,
+ "shortestRoundTripNano": 61714965,
+ "longestRoundTripNano": 155071615,
+ "averageApexExecutionNano": 54605513,
+ "shortestApexExecutionNano": 5870207,
+ "longestApexExecutionNano": 115217756
+ },
+ {
+ "batchNumber": 3631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157342558,
+ "shortestRoundTripNano": 66693478,
+ "longestRoundTripNano": 185651277,
+ "averageApexExecutionNano": 59630828,
+ "shortestApexExecutionNano": 8916192,
+ "longestApexExecutionNano": 111589871
+ },
+ {
+ "batchNumber": 3632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153609880,
+ "shortestRoundTripNano": 65729827,
+ "longestRoundTripNano": 210496860,
+ "averageApexExecutionNano": 76109783,
+ "shortestApexExecutionNano": 9462886,
+ "longestApexExecutionNano": 144544542
+ },
+ {
+ "batchNumber": 3633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149686630,
+ "shortestRoundTripNano": 68395995,
+ "longestRoundTripNano": 183429403,
+ "averageApexExecutionNano": 71476981,
+ "shortestApexExecutionNano": 11275694,
+ "longestApexExecutionNano": 139889412
+ },
+ {
+ "batchNumber": 3634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140605227,
+ "shortestRoundTripNano": 61705912,
+ "longestRoundTripNano": 189681619,
+ "averageApexExecutionNano": 42575504,
+ "shortestApexExecutionNano": 7994288,
+ "longestApexExecutionNano": 113000138
+ },
+ {
+ "batchNumber": 3635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160406267,
+ "shortestRoundTripNano": 36257305,
+ "longestRoundTripNano": 197007615,
+ "averageApexExecutionNano": 70636028,
+ "shortestApexExecutionNano": 8982127,
+ "longestApexExecutionNano": 136333525
+ },
+ {
+ "batchNumber": 3636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146175413,
+ "shortestRoundTripNano": 66046153,
+ "longestRoundTripNano": 187274400,
+ "averageApexExecutionNano": 56300631,
+ "shortestApexExecutionNano": 8732144,
+ "longestApexExecutionNano": 117969260
+ },
+ {
+ "batchNumber": 3637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121262673,
+ "shortestRoundTripNano": 44051695,
+ "longestRoundTripNano": 148141039,
+ "averageApexExecutionNano": 51716836,
+ "shortestApexExecutionNano": 7444056,
+ "longestApexExecutionNano": 100104690
+ },
+ {
+ "batchNumber": 3638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153090195,
+ "shortestRoundTripNano": 104147310,
+ "longestRoundTripNano": 175639037,
+ "averageApexExecutionNano": 54789188,
+ "shortestApexExecutionNano": 4966087,
+ "longestApexExecutionNano": 126663676
+ },
+ {
+ "batchNumber": 3639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129029203,
+ "shortestRoundTripNano": 50134559,
+ "longestRoundTripNano": 161981419,
+ "averageApexExecutionNano": 48503236,
+ "shortestApexExecutionNano": 5447209,
+ "longestApexExecutionNano": 104192862
+ },
+ {
+ "batchNumber": 3640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132513559,
+ "shortestRoundTripNano": 54356801,
+ "longestRoundTripNano": 172717782,
+ "averageApexExecutionNano": 52613569,
+ "shortestApexExecutionNano": 8893715,
+ "longestApexExecutionNano": 119688606
+ },
+ {
+ "batchNumber": 3641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121019081,
+ "shortestRoundTripNano": 54319464,
+ "longestRoundTripNano": 145209895,
+ "averageApexExecutionNano": 55213401,
+ "shortestApexExecutionNano": 5964844,
+ "longestApexExecutionNano": 110599889
+ },
+ {
+ "batchNumber": 3642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131912173,
+ "shortestRoundTripNano": 54987087,
+ "longestRoundTripNano": 164740571,
+ "averageApexExecutionNano": 46943642,
+ "shortestApexExecutionNano": 10199541,
+ "longestApexExecutionNano": 103261291
+ },
+ {
+ "batchNumber": 3643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144984073,
+ "shortestRoundTripNano": 60006099,
+ "longestRoundTripNano": 174438880,
+ "averageApexExecutionNano": 62554149,
+ "shortestApexExecutionNano": 15763188,
+ "longestApexExecutionNano": 116893328
+ },
+ {
+ "batchNumber": 3644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175139844,
+ "shortestRoundTripNano": 81706200,
+ "longestRoundTripNano": 227747367,
+ "averageApexExecutionNano": 88510418,
+ "shortestApexExecutionNano": 16138307,
+ "longestApexExecutionNano": 139927741
+ },
+ {
+ "batchNumber": 3645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141634252,
+ "shortestRoundTripNano": 72842936,
+ "longestRoundTripNano": 172090659,
+ "averageApexExecutionNano": 42609784,
+ "shortestApexExecutionNano": 9350537,
+ "longestApexExecutionNano": 131995988
+ },
+ {
+ "batchNumber": 3646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 255146572,
+ "shortestRoundTripNano": 58084318,
+ "longestRoundTripNano": 306268080,
+ "averageApexExecutionNano": 119200521,
+ "shortestApexExecutionNano": 10354475,
+ "longestApexExecutionNano": 215700928
+ },
+ {
+ "batchNumber": 3647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160084915,
+ "shortestRoundTripNano": 47088102,
+ "longestRoundTripNano": 194243119,
+ "averageApexExecutionNano": 77643230,
+ "shortestApexExecutionNano": 9000911,
+ "longestApexExecutionNano": 138772418
+ },
+ {
+ "batchNumber": 3648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130187242,
+ "shortestRoundTripNano": 61416913,
+ "longestRoundTripNano": 159892597,
+ "averageApexExecutionNano": 61693650,
+ "shortestApexExecutionNano": 8799167,
+ "longestApexExecutionNano": 113194187
+ },
+ {
+ "batchNumber": 3649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132714229,
+ "shortestRoundTripNano": 52829246,
+ "longestRoundTripNano": 168662474,
+ "averageApexExecutionNano": 52282458,
+ "shortestApexExecutionNano": 11632996,
+ "longestApexExecutionNano": 106771449
+ },
+ {
+ "batchNumber": 3650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162640887,
+ "shortestRoundTripNano": 61242584,
+ "longestRoundTripNano": 194648216,
+ "averageApexExecutionNano": 69060119,
+ "shortestApexExecutionNano": 7071462,
+ "longestApexExecutionNano": 140175885
+ },
+ {
+ "batchNumber": 3651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139906336,
+ "shortestRoundTripNano": 66833802,
+ "longestRoundTripNano": 167965681,
+ "averageApexExecutionNano": 60498404,
+ "shortestApexExecutionNano": 8993908,
+ "longestApexExecutionNano": 109791435
+ },
+ {
+ "batchNumber": 3652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158629970,
+ "shortestRoundTripNano": 65634639,
+ "longestRoundTripNano": 222074030,
+ "averageApexExecutionNano": 85274349,
+ "shortestApexExecutionNano": 9751328,
+ "longestApexExecutionNano": 127104829
+ },
+ {
+ "batchNumber": 3653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138293571,
+ "shortestRoundTripNano": 73434012,
+ "longestRoundTripNano": 170920232,
+ "averageApexExecutionNano": 57798594,
+ "shortestApexExecutionNano": 6443898,
+ "longestApexExecutionNano": 131896017
+ },
+ {
+ "batchNumber": 3654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148211744,
+ "shortestRoundTripNano": 68082021,
+ "longestRoundTripNano": 174199640,
+ "averageApexExecutionNano": 59757838,
+ "shortestApexExecutionNano": 8788572,
+ "longestApexExecutionNano": 129502161
+ },
+ {
+ "batchNumber": 3655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170682626,
+ "shortestRoundTripNano": 88435815,
+ "longestRoundTripNano": 204135256,
+ "averageApexExecutionNano": 64250715,
+ "shortestApexExecutionNano": 6505241,
+ "longestApexExecutionNano": 115146594
+ },
+ {
+ "batchNumber": 3656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36090",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137595607,
+ "shortestRoundTripNano": 52939778,
+ "longestRoundTripNano": 167947470,
+ "averageApexExecutionNano": 65779069,
+ "shortestApexExecutionNano": 16104899,
+ "longestApexExecutionNano": 122878382
+ },
+ {
+ "batchNumber": 3657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140460480,
+ "shortestRoundTripNano": 62640926,
+ "longestRoundTripNano": 173123022,
+ "averageApexExecutionNano": 53764788,
+ "shortestApexExecutionNano": 7092652,
+ "longestApexExecutionNano": 105299081
+ },
+ {
+ "batchNumber": 3658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134007000,
+ "shortestRoundTripNano": 59776929,
+ "longestRoundTripNano": 161230815,
+ "averageApexExecutionNano": 46186843,
+ "shortestApexExecutionNano": 7260027,
+ "longestApexExecutionNano": 109240000
+ },
+ {
+ "batchNumber": 3659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119889159,
+ "shortestRoundTripNano": 48835775,
+ "longestRoundTripNano": 149885594,
+ "averageApexExecutionNano": 47200202,
+ "shortestApexExecutionNano": 9560985,
+ "longestApexExecutionNano": 108013004
+ },
+ {
+ "batchNumber": 3660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36088",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153659272,
+ "shortestRoundTripNano": 64443948,
+ "longestRoundTripNano": 184728773,
+ "averageApexExecutionNano": 69199289,
+ "shortestApexExecutionNano": 15987260,
+ "longestApexExecutionNano": 133261347
+ },
+ {
+ "batchNumber": 3661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135639318,
+ "shortestRoundTripNano": 84953050,
+ "longestRoundTripNano": 160849387,
+ "averageApexExecutionNano": 52593625,
+ "shortestApexExecutionNano": 8020630,
+ "longestApexExecutionNano": 106656425
+ },
+ {
+ "batchNumber": 3662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145541216,
+ "shortestRoundTripNano": 57912172,
+ "longestRoundTripNano": 170274705,
+ "averageApexExecutionNano": 57453764,
+ "shortestApexExecutionNano": 7265902,
+ "longestApexExecutionNano": 116977388
+ },
+ {
+ "batchNumber": 3663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151583784,
+ "shortestRoundTripNano": 77204514,
+ "longestRoundTripNano": 185045040,
+ "averageApexExecutionNano": 75069053,
+ "shortestApexExecutionNano": 10155498,
+ "longestApexExecutionNano": 143058349
+ },
+ {
+ "batchNumber": 3664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131603779,
+ "shortestRoundTripNano": 57118267,
+ "longestRoundTripNano": 162608564,
+ "averageApexExecutionNano": 49655791,
+ "shortestApexExecutionNano": 7669066,
+ "longestApexExecutionNano": 101944590
+ },
+ {
+ "batchNumber": 3665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139528387,
+ "shortestRoundTripNano": 62333112,
+ "longestRoundTripNano": 166284563,
+ "averageApexExecutionNano": 63685608,
+ "shortestApexExecutionNano": 13395093,
+ "longestApexExecutionNano": 115473234
+ },
+ {
+ "batchNumber": 3666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151312887,
+ "shortestRoundTripNano": 53022302,
+ "longestRoundTripNano": 179872431,
+ "averageApexExecutionNano": 59294604,
+ "shortestApexExecutionNano": 8402348,
+ "longestApexExecutionNano": 113008763
+ },
+ {
+ "batchNumber": 3667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146568412,
+ "shortestRoundTripNano": 62912501,
+ "longestRoundTripNano": 178949480,
+ "averageApexExecutionNano": 66585800,
+ "shortestApexExecutionNano": 7326858,
+ "longestApexExecutionNano": 120559306
+ },
+ {
+ "batchNumber": 3668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138428648,
+ "shortestRoundTripNano": 47319109,
+ "longestRoundTripNano": 162488193,
+ "averageApexExecutionNano": 57256349,
+ "shortestApexExecutionNano": 11322274,
+ "longestApexExecutionNano": 101631782
+ },
+ {
+ "batchNumber": 3669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148206650,
+ "shortestRoundTripNano": 34655915,
+ "longestRoundTripNano": 177439918,
+ "averageApexExecutionNano": 52192916,
+ "shortestApexExecutionNano": 7394633,
+ "longestApexExecutionNano": 121245559
+ },
+ {
+ "batchNumber": 3670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159861348,
+ "shortestRoundTripNano": 66129540,
+ "longestRoundTripNano": 186136527,
+ "averageApexExecutionNano": 69505622,
+ "shortestApexExecutionNano": 9274389,
+ "longestApexExecutionNano": 128719418
+ },
+ {
+ "batchNumber": 3671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148557807,
+ "shortestRoundTripNano": 67089800,
+ "longestRoundTripNano": 179095546,
+ "averageApexExecutionNano": 51395080,
+ "shortestApexExecutionNano": 7709300,
+ "longestApexExecutionNano": 131264187
+ },
+ {
+ "batchNumber": 3672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149612028,
+ "shortestRoundTripNano": 41237383,
+ "longestRoundTripNano": 181881658,
+ "averageApexExecutionNano": 60335151,
+ "shortestApexExecutionNano": 7847548,
+ "longestApexExecutionNano": 140599600
+ },
+ {
+ "batchNumber": 3673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150488354,
+ "shortestRoundTripNano": 54061695,
+ "longestRoundTripNano": 188689402,
+ "averageApexExecutionNano": 63934523,
+ "shortestApexExecutionNano": 7646015,
+ "longestApexExecutionNano": 126667000
+ },
+ {
+ "batchNumber": 3674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154328430,
+ "shortestRoundTripNano": 72846705,
+ "longestRoundTripNano": 185053648,
+ "averageApexExecutionNano": 65608283,
+ "shortestApexExecutionNano": 24519151,
+ "longestApexExecutionNano": 119486090
+ },
+ {
+ "batchNumber": 3675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140557267,
+ "shortestRoundTripNano": 77261612,
+ "longestRoundTripNano": 174023746,
+ "averageApexExecutionNano": 71346834,
+ "shortestApexExecutionNano": 7471687,
+ "longestApexExecutionNano": 126519251
+ },
+ {
+ "batchNumber": 3676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161698394,
+ "shortestRoundTripNano": 91041749,
+ "longestRoundTripNano": 189211541,
+ "averageApexExecutionNano": 67093647,
+ "shortestApexExecutionNano": 9135753,
+ "longestApexExecutionNano": 137356057
+ },
+ {
+ "batchNumber": 3677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136175362,
+ "shortestRoundTripNano": 66852617,
+ "longestRoundTripNano": 168561542,
+ "averageApexExecutionNano": 58075383,
+ "shortestApexExecutionNano": 6425079,
+ "longestApexExecutionNano": 118697905
+ },
+ {
+ "batchNumber": 3678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142743555,
+ "shortestRoundTripNano": 72358513,
+ "longestRoundTripNano": 165445777,
+ "averageApexExecutionNano": 65240679,
+ "shortestApexExecutionNano": 9335396,
+ "longestApexExecutionNano": 115650446
+ },
+ {
+ "batchNumber": 3679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150645924,
+ "shortestRoundTripNano": 56784559,
+ "longestRoundTripNano": 175155809,
+ "averageApexExecutionNano": 74921132,
+ "shortestApexExecutionNano": 7635501,
+ "longestApexExecutionNano": 134551509
+ },
+ {
+ "batchNumber": 3680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136531313,
+ "shortestRoundTripNano": 56688313,
+ "longestRoundTripNano": 172534644,
+ "averageApexExecutionNano": 51010095,
+ "shortestApexExecutionNano": 7372197,
+ "longestApexExecutionNano": 115781210
+ },
+ {
+ "batchNumber": 3681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148360061,
+ "shortestRoundTripNano": 55506593,
+ "longestRoundTripNano": 181903645,
+ "averageApexExecutionNano": 70008338,
+ "shortestApexExecutionNano": 7165384,
+ "longestApexExecutionNano": 130953463
+ },
+ {
+ "batchNumber": 3682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152444322,
+ "shortestRoundTripNano": 73069004,
+ "longestRoundTripNano": 186054300,
+ "averageApexExecutionNano": 65163131,
+ "shortestApexExecutionNano": 11399582,
+ "longestApexExecutionNano": 119596969
+ },
+ {
+ "batchNumber": 3683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135676656,
+ "shortestRoundTripNano": 61697553,
+ "longestRoundTripNano": 166913176,
+ "averageApexExecutionNano": 67892656,
+ "shortestApexExecutionNano": 11172059,
+ "longestApexExecutionNano": 115538045
+ },
+ {
+ "batchNumber": 3684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152648085,
+ "shortestRoundTripNano": 63583976,
+ "longestRoundTripNano": 186832509,
+ "averageApexExecutionNano": 65963940,
+ "shortestApexExecutionNano": 8678265,
+ "longestApexExecutionNano": 144442890
+ },
+ {
+ "batchNumber": 3685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138621838,
+ "shortestRoundTripNano": 56583856,
+ "longestRoundTripNano": 161893220,
+ "averageApexExecutionNano": 57840607,
+ "shortestApexExecutionNano": 10201929,
+ "longestApexExecutionNano": 121362792
+ },
+ {
+ "batchNumber": 3686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152616171,
+ "shortestRoundTripNano": 60327745,
+ "longestRoundTripNano": 185224030,
+ "averageApexExecutionNano": 62947123,
+ "shortestApexExecutionNano": 7442338,
+ "longestApexExecutionNano": 134916577
+ },
+ {
+ "batchNumber": 3687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154791578,
+ "shortestRoundTripNano": 68011619,
+ "longestRoundTripNano": 183683475,
+ "averageApexExecutionNano": 61623264,
+ "shortestApexExecutionNano": 8630742,
+ "longestApexExecutionNano": 127221698
+ },
+ {
+ "batchNumber": 3688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153457418,
+ "shortestRoundTripNano": 67630893,
+ "longestRoundTripNano": 184067827,
+ "averageApexExecutionNano": 57023631,
+ "shortestApexExecutionNano": 7833959,
+ "longestApexExecutionNano": 136139068
+ },
+ {
+ "batchNumber": 3689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145699596,
+ "shortestRoundTripNano": 65275863,
+ "longestRoundTripNano": 169284500,
+ "averageApexExecutionNano": 57580881,
+ "shortestApexExecutionNano": 6746934,
+ "longestApexExecutionNano": 116695995
+ },
+ {
+ "batchNumber": 3690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161221985,
+ "shortestRoundTripNano": 62104203,
+ "longestRoundTripNano": 194073478,
+ "averageApexExecutionNano": 69023057,
+ "shortestApexExecutionNano": 12957200,
+ "longestApexExecutionNano": 109677812
+ },
+ {
+ "batchNumber": 3691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143497702,
+ "shortestRoundTripNano": 88100639,
+ "longestRoundTripNano": 167529173,
+ "averageApexExecutionNano": 65862520,
+ "shortestApexExecutionNano": 6615279,
+ "longestApexExecutionNano": 120649312
+ },
+ {
+ "batchNumber": 3692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118946613,
+ "shortestRoundTripNano": 53476685,
+ "longestRoundTripNano": 154037644,
+ "averageApexExecutionNano": 45660254,
+ "shortestApexExecutionNano": 7474569,
+ "longestApexExecutionNano": 119987556
+ },
+ {
+ "batchNumber": 3693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161935120,
+ "shortestRoundTripNano": 66812984,
+ "longestRoundTripNano": 202481408,
+ "averageApexExecutionNano": 68475565,
+ "shortestApexExecutionNano": 14548388,
+ "longestApexExecutionNano": 138847190
+ },
+ {
+ "batchNumber": 3694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168058458,
+ "shortestRoundTripNano": 91351661,
+ "longestRoundTripNano": 194474790,
+ "averageApexExecutionNano": 83734565,
+ "shortestApexExecutionNano": 10474780,
+ "longestApexExecutionNano": 137416483
+ },
+ {
+ "batchNumber": 3695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142819340,
+ "shortestRoundTripNano": 74150779,
+ "longestRoundTripNano": 172285512,
+ "averageApexExecutionNano": 63454474,
+ "shortestApexExecutionNano": 12100464,
+ "longestApexExecutionNano": 124335870
+ },
+ {
+ "batchNumber": 3696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180526819,
+ "shortestRoundTripNano": 73230021,
+ "longestRoundTripNano": 225564260,
+ "averageApexExecutionNano": 71984318,
+ "shortestApexExecutionNano": 20188687,
+ "longestApexExecutionNano": 135640282
+ },
+ {
+ "batchNumber": 3697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139171741,
+ "shortestRoundTripNano": 69452660,
+ "longestRoundTripNano": 167909936,
+ "averageApexExecutionNano": 68251712,
+ "shortestApexExecutionNano": 9266435,
+ "longestApexExecutionNano": 124635026
+ },
+ {
+ "batchNumber": 3698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148967888,
+ "shortestRoundTripNano": 62172023,
+ "longestRoundTripNano": 188866868,
+ "averageApexExecutionNano": 62638568,
+ "shortestApexExecutionNano": 6947616,
+ "longestApexExecutionNano": 123809307
+ },
+ {
+ "batchNumber": 3699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36106",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162187894,
+ "shortestRoundTripNano": 70467427,
+ "longestRoundTripNano": 191154319,
+ "averageApexExecutionNano": 62036486,
+ "shortestApexExecutionNano": 9346750,
+ "longestApexExecutionNano": 126273893
+ },
+ {
+ "batchNumber": 3700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152464321,
+ "shortestRoundTripNano": 77336920,
+ "longestRoundTripNano": 184876021,
+ "averageApexExecutionNano": 57410695,
+ "shortestApexExecutionNano": 10290958,
+ "longestApexExecutionNano": 138935589
+ },
+ {
+ "batchNumber": 3701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163409785,
+ "shortestRoundTripNano": 45598018,
+ "longestRoundTripNano": 197175509,
+ "averageApexExecutionNano": 62945216,
+ "shortestApexExecutionNano": 7902624,
+ "longestApexExecutionNano": 157026493
+ },
+ {
+ "batchNumber": 3702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130083040,
+ "shortestRoundTripNano": 62548992,
+ "longestRoundTripNano": 157158150,
+ "averageApexExecutionNano": 65442510,
+ "shortestApexExecutionNano": 13366541,
+ "longestApexExecutionNano": 104739936
+ },
+ {
+ "batchNumber": 3703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130536187,
+ "shortestRoundTripNano": 63907648,
+ "longestRoundTripNano": 166467584,
+ "averageApexExecutionNano": 45270616,
+ "shortestApexExecutionNano": 4461214,
+ "longestApexExecutionNano": 117544360
+ },
+ {
+ "batchNumber": 3704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138626277,
+ "shortestRoundTripNano": 46929914,
+ "longestRoundTripNano": 174379329,
+ "averageApexExecutionNano": 61686713,
+ "shortestApexExecutionNano": 10443578,
+ "longestApexExecutionNano": 120919058
+ },
+ {
+ "batchNumber": 3705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166114297,
+ "shortestRoundTripNano": 80807307,
+ "longestRoundTripNano": 189585794,
+ "averageApexExecutionNano": 73965680,
+ "shortestApexExecutionNano": 13001447,
+ "longestApexExecutionNano": 138954555
+ },
+ {
+ "batchNumber": 3706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165007116,
+ "shortestRoundTripNano": 65567858,
+ "longestRoundTripNano": 199978069,
+ "averageApexExecutionNano": 74910420,
+ "shortestApexExecutionNano": 11045297,
+ "longestApexExecutionNano": 146640798
+ },
+ {
+ "batchNumber": 3707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136093948,
+ "shortestRoundTripNano": 44434265,
+ "longestRoundTripNano": 165502563,
+ "averageApexExecutionNano": 58401305,
+ "shortestApexExecutionNano": 14786667,
+ "longestApexExecutionNano": 117530002
+ },
+ {
+ "batchNumber": 3708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150710305,
+ "shortestRoundTripNano": 66162068,
+ "longestRoundTripNano": 183390860,
+ "averageApexExecutionNano": 63221374,
+ "shortestApexExecutionNano": 7636983,
+ "longestApexExecutionNano": 112793075
+ },
+ {
+ "batchNumber": 3709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145709073,
+ "shortestRoundTripNano": 82948636,
+ "longestRoundTripNano": 171189618,
+ "averageApexExecutionNano": 65935229,
+ "shortestApexExecutionNano": 8547102,
+ "longestApexExecutionNano": 127001303
+ },
+ {
+ "batchNumber": 3710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142292467,
+ "shortestRoundTripNano": 66929926,
+ "longestRoundTripNano": 200967551,
+ "averageApexExecutionNano": 60795702,
+ "shortestApexExecutionNano": 6906491,
+ "longestApexExecutionNano": 137046768
+ },
+ {
+ "batchNumber": 3711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156714482,
+ "shortestRoundTripNano": 76990801,
+ "longestRoundTripNano": 182072067,
+ "averageApexExecutionNano": 54177774,
+ "shortestApexExecutionNano": 8543318,
+ "longestApexExecutionNano": 129410471
+ },
+ {
+ "batchNumber": 3712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137890712,
+ "shortestRoundTripNano": 77973073,
+ "longestRoundTripNano": 164356244,
+ "averageApexExecutionNano": 55857522,
+ "shortestApexExecutionNano": 6426016,
+ "longestApexExecutionNano": 104496282
+ },
+ {
+ "batchNumber": 3713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135847549,
+ "shortestRoundTripNano": 40759608,
+ "longestRoundTripNano": 169178454,
+ "averageApexExecutionNano": 57962877,
+ "shortestApexExecutionNano": 10809968,
+ "longestApexExecutionNano": 129632374
+ },
+ {
+ "batchNumber": 3714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145775623,
+ "shortestRoundTripNano": 63814765,
+ "longestRoundTripNano": 177966555,
+ "averageApexExecutionNano": 46104715,
+ "shortestApexExecutionNano": 9652058,
+ "longestApexExecutionNano": 103338991
+ },
+ {
+ "batchNumber": 3715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151714290,
+ "shortestRoundTripNano": 46773891,
+ "longestRoundTripNano": 191072846,
+ "averageApexExecutionNano": 68962173,
+ "shortestApexExecutionNano": 10600789,
+ "longestApexExecutionNano": 145294798
+ },
+ {
+ "batchNumber": 3716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145379000,
+ "shortestRoundTripNano": 39419202,
+ "longestRoundTripNano": 186781092,
+ "averageApexExecutionNano": 62720191,
+ "shortestApexExecutionNano": 5968348,
+ "longestApexExecutionNano": 128363044
+ },
+ {
+ "batchNumber": 3717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156116480,
+ "shortestRoundTripNano": 71694990,
+ "longestRoundTripNano": 185006875,
+ "averageApexExecutionNano": 67184473,
+ "shortestApexExecutionNano": 10542031,
+ "longestApexExecutionNano": 119555632
+ },
+ {
+ "batchNumber": 3718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143285051,
+ "shortestRoundTripNano": 68425761,
+ "longestRoundTripNano": 175855946,
+ "averageApexExecutionNano": 67294416,
+ "shortestApexExecutionNano": 9989957,
+ "longestApexExecutionNano": 124064022
+ },
+ {
+ "batchNumber": 3719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159579712,
+ "shortestRoundTripNano": 72965988,
+ "longestRoundTripNano": 186093890,
+ "averageApexExecutionNano": 82592364,
+ "shortestApexExecutionNano": 7812261,
+ "longestApexExecutionNano": 146733527
+ },
+ {
+ "batchNumber": 3720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133890246,
+ "shortestRoundTripNano": 42982418,
+ "longestRoundTripNano": 168778119,
+ "averageApexExecutionNano": 55286331,
+ "shortestApexExecutionNano": 8354095,
+ "longestApexExecutionNano": 126161343
+ },
+ {
+ "batchNumber": 3721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143846215,
+ "shortestRoundTripNano": 70407605,
+ "longestRoundTripNano": 166540544,
+ "averageApexExecutionNano": 54725980,
+ "shortestApexExecutionNano": 7944770,
+ "longestApexExecutionNano": 131634109
+ },
+ {
+ "batchNumber": 3722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138325567,
+ "shortestRoundTripNano": 56637728,
+ "longestRoundTripNano": 164837449,
+ "averageApexExecutionNano": 53832665,
+ "shortestApexExecutionNano": 11066516,
+ "longestApexExecutionNano": 90686440
+ },
+ {
+ "batchNumber": 3723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140352087,
+ "shortestRoundTripNano": 42110596,
+ "longestRoundTripNano": 168764764,
+ "averageApexExecutionNano": 64477858,
+ "shortestApexExecutionNano": 14662439,
+ "longestApexExecutionNano": 122625906
+ },
+ {
+ "batchNumber": 3724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133856066,
+ "shortestRoundTripNano": 50687180,
+ "longestRoundTripNano": 164453235,
+ "averageApexExecutionNano": 56694292,
+ "shortestApexExecutionNano": 9658784,
+ "longestApexExecutionNano": 109014219
+ },
+ {
+ "batchNumber": 3725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36114",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164310149,
+ "shortestRoundTripNano": 39992546,
+ "longestRoundTripNano": 194608520,
+ "averageApexExecutionNano": 75586728,
+ "shortestApexExecutionNano": 9044634,
+ "longestApexExecutionNano": 138284325
+ },
+ {
+ "batchNumber": 3726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147476534,
+ "shortestRoundTripNano": 58381270,
+ "longestRoundTripNano": 177992042,
+ "averageApexExecutionNano": 57161689,
+ "shortestApexExecutionNano": 10754462,
+ "longestApexExecutionNano": 119727480
+ },
+ {
+ "batchNumber": 3727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138995081,
+ "shortestRoundTripNano": 64307541,
+ "longestRoundTripNano": 172202071,
+ "averageApexExecutionNano": 61336809,
+ "shortestApexExecutionNano": 15575722,
+ "longestApexExecutionNano": 112526797
+ },
+ {
+ "batchNumber": 3728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146992528,
+ "shortestRoundTripNano": 42528241,
+ "longestRoundTripNano": 180324956,
+ "averageApexExecutionNano": 69829225,
+ "shortestApexExecutionNano": 18898301,
+ "longestApexExecutionNano": 140587763
+ },
+ {
+ "batchNumber": 3729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150682557,
+ "shortestRoundTripNano": 74505904,
+ "longestRoundTripNano": 169942580,
+ "averageApexExecutionNano": 61656068,
+ "shortestApexExecutionNano": 26544694,
+ "longestApexExecutionNano": 105554579
+ },
+ {
+ "batchNumber": 3730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149855468,
+ "shortestRoundTripNano": 52754773,
+ "longestRoundTripNano": 176037622,
+ "averageApexExecutionNano": 64844949,
+ "shortestApexExecutionNano": 9218454,
+ "longestApexExecutionNano": 113806005
+ },
+ {
+ "batchNumber": 3731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140802464,
+ "shortestRoundTripNano": 65053400,
+ "longestRoundTripNano": 167502101,
+ "averageApexExecutionNano": 53601972,
+ "shortestApexExecutionNano": 8560355,
+ "longestApexExecutionNano": 107702946
+ },
+ {
+ "batchNumber": 3732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124175529,
+ "shortestRoundTripNano": 47185071,
+ "longestRoundTripNano": 151739700,
+ "averageApexExecutionNano": 58464548,
+ "shortestApexExecutionNano": 7881381,
+ "longestApexExecutionNano": 107967220
+ },
+ {
+ "batchNumber": 3733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178868557,
+ "shortestRoundTripNano": 53603685,
+ "longestRoundTripNano": 212024939,
+ "averageApexExecutionNano": 74005683,
+ "shortestApexExecutionNano": 5131114,
+ "longestApexExecutionNano": 161166768
+ },
+ {
+ "batchNumber": 3734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36122",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143642359,
+ "shortestRoundTripNano": 71026352,
+ "longestRoundTripNano": 167109118,
+ "averageApexExecutionNano": 57830510,
+ "shortestApexExecutionNano": 7821467,
+ "longestApexExecutionNano": 126274896
+ },
+ {
+ "batchNumber": 3735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36122",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132549115,
+ "shortestRoundTripNano": 51335187,
+ "longestRoundTripNano": 171606319,
+ "averageApexExecutionNano": 47368746,
+ "shortestApexExecutionNano": 5990492,
+ "longestApexExecutionNano": 105213367
+ },
+ {
+ "batchNumber": 3736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141610563,
+ "shortestRoundTripNano": 26696381,
+ "longestRoundTripNano": 172145462,
+ "averageApexExecutionNano": 64681826,
+ "shortestApexExecutionNano": 8762456,
+ "longestApexExecutionNano": 124902166
+ },
+ {
+ "batchNumber": 3737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140316372,
+ "shortestRoundTripNano": 62662674,
+ "longestRoundTripNano": 164836443,
+ "averageApexExecutionNano": 55288626,
+ "shortestApexExecutionNano": 10260748,
+ "longestApexExecutionNano": 111962014
+ },
+ {
+ "batchNumber": 3738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163542975,
+ "shortestRoundTripNano": 58964086,
+ "longestRoundTripNano": 192772186,
+ "averageApexExecutionNano": 57157490,
+ "shortestApexExecutionNano": 9733258,
+ "longestApexExecutionNano": 108464082
+ },
+ {
+ "batchNumber": 3739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139219169,
+ "shortestRoundTripNano": 72592130,
+ "longestRoundTripNano": 172498497,
+ "averageApexExecutionNano": 58560981,
+ "shortestApexExecutionNano": 7982915,
+ "longestApexExecutionNano": 115760754
+ },
+ {
+ "batchNumber": 3740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159910259,
+ "shortestRoundTripNano": 56660176,
+ "longestRoundTripNano": 199286164,
+ "averageApexExecutionNano": 83640045,
+ "shortestApexExecutionNano": 21595373,
+ "longestApexExecutionNano": 150307771
+ },
+ {
+ "batchNumber": 3741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126318386,
+ "shortestRoundTripNano": 56563228,
+ "longestRoundTripNano": 153666998,
+ "averageApexExecutionNano": 63073377,
+ "shortestApexExecutionNano": 10421283,
+ "longestApexExecutionNano": 117102360
+ },
+ {
+ "batchNumber": 3742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131996095,
+ "shortestRoundTripNano": 56965453,
+ "longestRoundTripNano": 161880890,
+ "averageApexExecutionNano": 55643164,
+ "shortestApexExecutionNano": 7351049,
+ "longestApexExecutionNano": 124892687
+ },
+ {
+ "batchNumber": 3743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149480228,
+ "shortestRoundTripNano": 68735061,
+ "longestRoundTripNano": 187234248,
+ "averageApexExecutionNano": 59702619,
+ "shortestApexExecutionNano": 8067786,
+ "longestApexExecutionNano": 133969822
+ },
+ {
+ "batchNumber": 3744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146287940,
+ "shortestRoundTripNano": 63188082,
+ "longestRoundTripNano": 180727257,
+ "averageApexExecutionNano": 59380791,
+ "shortestApexExecutionNano": 7646729,
+ "longestApexExecutionNano": 139911790
+ },
+ {
+ "batchNumber": 3745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157547667,
+ "shortestRoundTripNano": 83185883,
+ "longestRoundTripNano": 182831933,
+ "averageApexExecutionNano": 80084859,
+ "shortestApexExecutionNano": 7789190,
+ "longestApexExecutionNano": 140121569
+ },
+ {
+ "batchNumber": 3746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159977338,
+ "shortestRoundTripNano": 54463158,
+ "longestRoundTripNano": 198391933,
+ "averageApexExecutionNano": 66651142,
+ "shortestApexExecutionNano": 9491945,
+ "longestApexExecutionNano": 150342751
+ },
+ {
+ "batchNumber": 3747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144067317,
+ "shortestRoundTripNano": 78402596,
+ "longestRoundTripNano": 174173157,
+ "averageApexExecutionNano": 56679573,
+ "shortestApexExecutionNano": 8449919,
+ "longestApexExecutionNano": 125118329
+ },
+ {
+ "batchNumber": 3748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156996981,
+ "shortestRoundTripNano": 88542698,
+ "longestRoundTripNano": 184884913,
+ "averageApexExecutionNano": 57315053,
+ "shortestApexExecutionNano": 7258334,
+ "longestApexExecutionNano": 121232690
+ },
+ {
+ "batchNumber": 3749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149469222,
+ "shortestRoundTripNano": 79362337,
+ "longestRoundTripNano": 174929719,
+ "averageApexExecutionNano": 65637595,
+ "shortestApexExecutionNano": 9173282,
+ "longestApexExecutionNano": 126683211
+ },
+ {
+ "batchNumber": 3750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152669995,
+ "shortestRoundTripNano": 65904863,
+ "longestRoundTripNano": 179390548,
+ "averageApexExecutionNano": 68342896,
+ "shortestApexExecutionNano": 10103155,
+ "longestApexExecutionNano": 133760459
+ },
+ {
+ "batchNumber": 3751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146403249,
+ "shortestRoundTripNano": 70267891,
+ "longestRoundTripNano": 169214678,
+ "averageApexExecutionNano": 60792843,
+ "shortestApexExecutionNano": 11886985,
+ "longestApexExecutionNano": 123354630
+ },
+ {
+ "batchNumber": 3752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141072736,
+ "shortestRoundTripNano": 59446541,
+ "longestRoundTripNano": 174780244,
+ "averageApexExecutionNano": 46435989,
+ "shortestApexExecutionNano": 5744156,
+ "longestApexExecutionNano": 111372484
+ },
+ {
+ "batchNumber": 3753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141155369,
+ "shortestRoundTripNano": 66608695,
+ "longestRoundTripNano": 173319371,
+ "averageApexExecutionNano": 54898202,
+ "shortestApexExecutionNano": 9292234,
+ "longestApexExecutionNano": 125753554
+ },
+ {
+ "batchNumber": 3754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172895031,
+ "shortestRoundTripNano": 66986920,
+ "longestRoundTripNano": 207594721,
+ "averageApexExecutionNano": 60171231,
+ "shortestApexExecutionNano": 7436090,
+ "longestApexExecutionNano": 149643855
+ },
+ {
+ "batchNumber": 3755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36130",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159922874,
+ "shortestRoundTripNano": 42268716,
+ "longestRoundTripNano": 204067431,
+ "averageApexExecutionNano": 56164767,
+ "shortestApexExecutionNano": 7492490,
+ "longestApexExecutionNano": 125319575
+ },
+ {
+ "batchNumber": 3756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36130",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156669835,
+ "shortestRoundTripNano": 63433304,
+ "longestRoundTripNano": 192371491,
+ "averageApexExecutionNano": 57656379,
+ "shortestApexExecutionNano": 6479215,
+ "longestApexExecutionNano": 128615302
+ },
+ {
+ "batchNumber": 3757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127364746,
+ "shortestRoundTripNano": 64712504,
+ "longestRoundTripNano": 158673249,
+ "averageApexExecutionNano": 56607623,
+ "shortestApexExecutionNano": 14998135,
+ "longestApexExecutionNano": 100016696
+ },
+ {
+ "batchNumber": 3758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141494516,
+ "shortestRoundTripNano": 78620306,
+ "longestRoundTripNano": 166222812,
+ "averageApexExecutionNano": 58526785,
+ "shortestApexExecutionNano": 7445330,
+ "longestApexExecutionNano": 113117963
+ },
+ {
+ "batchNumber": 3759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36130",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152258516,
+ "shortestRoundTripNano": 79785302,
+ "longestRoundTripNano": 181280991,
+ "averageApexExecutionNano": 57568237,
+ "shortestApexExecutionNano": 8230458,
+ "longestApexExecutionNano": 130489400
+ },
+ {
+ "batchNumber": 3760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36130",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137684039,
+ "shortestRoundTripNano": 66111503,
+ "longestRoundTripNano": 175188571,
+ "averageApexExecutionNano": 51727034,
+ "shortestApexExecutionNano": 8099930,
+ "longestApexExecutionNano": 123086650
+ },
+ {
+ "batchNumber": 3761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36130",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134974293,
+ "shortestRoundTripNano": 48726123,
+ "longestRoundTripNano": 172399307,
+ "averageApexExecutionNano": 46240955,
+ "shortestApexExecutionNano": 5894241,
+ "longestApexExecutionNano": 119946876
+ },
+ {
+ "batchNumber": 3762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156255169,
+ "shortestRoundTripNano": 27415682,
+ "longestRoundTripNano": 186264151,
+ "averageApexExecutionNano": 72651112,
+ "shortestApexExecutionNano": 9948605,
+ "longestApexExecutionNano": 134444562
+ },
+ {
+ "batchNumber": 3763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167045804,
+ "shortestRoundTripNano": 66722128,
+ "longestRoundTripNano": 209243919,
+ "averageApexExecutionNano": 89406735,
+ "shortestApexExecutionNano": 24733014,
+ "longestApexExecutionNano": 149352511
+ },
+ {
+ "batchNumber": 3764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135073855,
+ "shortestRoundTripNano": 61823342,
+ "longestRoundTripNano": 165479996,
+ "averageApexExecutionNano": 48226634,
+ "shortestApexExecutionNano": 7403351,
+ "longestApexExecutionNano": 126419537
+ },
+ {
+ "batchNumber": 3765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36132",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162030548,
+ "shortestRoundTripNano": 59533112,
+ "longestRoundTripNano": 203592234,
+ "averageApexExecutionNano": 95516153,
+ "shortestApexExecutionNano": 9888578,
+ "longestApexExecutionNano": 155034652
+ },
+ {
+ "batchNumber": 3766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 199791817,
+ "shortestRoundTripNano": 64154244,
+ "longestRoundTripNano": 237163546,
+ "averageApexExecutionNano": 104781487,
+ "shortestApexExecutionNano": 11256224,
+ "longestApexExecutionNano": 198481441
+ },
+ {
+ "batchNumber": 3767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169401637,
+ "shortestRoundTripNano": 45222795,
+ "longestRoundTripNano": 203413997,
+ "averageApexExecutionNano": 68341004,
+ "shortestApexExecutionNano": 24145657,
+ "longestApexExecutionNano": 134197775
+ },
+ {
+ "batchNumber": 3768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146223898,
+ "shortestRoundTripNano": 78597237,
+ "longestRoundTripNano": 178775481,
+ "averageApexExecutionNano": 52922631,
+ "shortestApexExecutionNano": 7236421,
+ "longestApexExecutionNano": 118241414
+ },
+ {
+ "batchNumber": 3769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162066486,
+ "shortestRoundTripNano": 90294315,
+ "longestRoundTripNano": 199107334,
+ "averageApexExecutionNano": 62904040,
+ "shortestApexExecutionNano": 6382363,
+ "longestApexExecutionNano": 122973438
+ },
+ {
+ "batchNumber": 3770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153511129,
+ "shortestRoundTripNano": 85548657,
+ "longestRoundTripNano": 181864561,
+ "averageApexExecutionNano": 66310182,
+ "shortestApexExecutionNano": 8055577,
+ "longestApexExecutionNano": 115616827
+ },
+ {
+ "batchNumber": 3771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158695671,
+ "shortestRoundTripNano": 50893948,
+ "longestRoundTripNano": 205315824,
+ "averageApexExecutionNano": 54371156,
+ "shortestApexExecutionNano": 9246398,
+ "longestApexExecutionNano": 136125830
+ },
+ {
+ "batchNumber": 3772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136612507,
+ "shortestRoundTripNano": 47167981,
+ "longestRoundTripNano": 165065304,
+ "averageApexExecutionNano": 63341559,
+ "shortestApexExecutionNano": 5025567,
+ "longestApexExecutionNano": 118686781
+ },
+ {
+ "batchNumber": 3773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148544276,
+ "shortestRoundTripNano": 67589751,
+ "longestRoundTripNano": 181066405,
+ "averageApexExecutionNano": 70045328,
+ "shortestApexExecutionNano": 7778243,
+ "longestApexExecutionNano": 130766245
+ },
+ {
+ "batchNumber": 3774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144608866,
+ "shortestRoundTripNano": 62908593,
+ "longestRoundTripNano": 177369186,
+ "averageApexExecutionNano": 54191365,
+ "shortestApexExecutionNano": 10683558,
+ "longestApexExecutionNano": 109619113
+ },
+ {
+ "batchNumber": 3775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145097323,
+ "shortestRoundTripNano": 32371317,
+ "longestRoundTripNano": 183870001,
+ "averageApexExecutionNano": 57988065,
+ "shortestApexExecutionNano": 8890318,
+ "longestApexExecutionNano": 116199328
+ },
+ {
+ "batchNumber": 3776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142679791,
+ "shortestRoundTripNano": 74252782,
+ "longestRoundTripNano": 172375830,
+ "averageApexExecutionNano": 62465245,
+ "shortestApexExecutionNano": 7426146,
+ "longestApexExecutionNano": 119902966
+ },
+ {
+ "batchNumber": 3777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143973836,
+ "shortestRoundTripNano": 74067618,
+ "longestRoundTripNano": 186279427,
+ "averageApexExecutionNano": 65907476,
+ "shortestApexExecutionNano": 12129613,
+ "longestApexExecutionNano": 124250271
+ },
+ {
+ "batchNumber": 3778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149169930,
+ "shortestRoundTripNano": 70257514,
+ "longestRoundTripNano": 178759627,
+ "averageApexExecutionNano": 59367224,
+ "shortestApexExecutionNano": 17082444,
+ "longestApexExecutionNano": 143008005
+ },
+ {
+ "batchNumber": 3779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167850547,
+ "shortestRoundTripNano": 62170997,
+ "longestRoundTripNano": 221961060,
+ "averageApexExecutionNano": 73972043,
+ "shortestApexExecutionNano": 11624155,
+ "longestApexExecutionNano": 139680787
+ },
+ {
+ "batchNumber": 3780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175751686,
+ "shortestRoundTripNano": 90819880,
+ "longestRoundTripNano": 215042924,
+ "averageApexExecutionNano": 83881818,
+ "shortestApexExecutionNano": 6341001,
+ "longestApexExecutionNano": 163557691
+ },
+ {
+ "batchNumber": 3781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138345719,
+ "shortestRoundTripNano": 65396545,
+ "longestRoundTripNano": 164719892,
+ "averageApexExecutionNano": 48441438,
+ "shortestApexExecutionNano": 6525365,
+ "longestApexExecutionNano": 112140307
+ },
+ {
+ "batchNumber": 3782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146099670,
+ "shortestRoundTripNano": 63581775,
+ "longestRoundTripNano": 173442899,
+ "averageApexExecutionNano": 53160923,
+ "shortestApexExecutionNano": 6534698,
+ "longestApexExecutionNano": 94855193
+ },
+ {
+ "batchNumber": 3783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142473662,
+ "shortestRoundTripNano": 49333714,
+ "longestRoundTripNano": 177490964,
+ "averageApexExecutionNano": 57825378,
+ "shortestApexExecutionNano": 5272322,
+ "longestApexExecutionNano": 122864957
+ },
+ {
+ "batchNumber": 3784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143080700,
+ "shortestRoundTripNano": 61399454,
+ "longestRoundTripNano": 169530337,
+ "averageApexExecutionNano": 56123526,
+ "shortestApexExecutionNano": 6274682,
+ "longestApexExecutionNano": 122209621
+ },
+ {
+ "batchNumber": 3785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36136",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159133131,
+ "shortestRoundTripNano": 68444063,
+ "longestRoundTripNano": 192985260,
+ "averageApexExecutionNano": 64680301,
+ "shortestApexExecutionNano": 10380661,
+ "longestApexExecutionNano": 136329407
+ },
+ {
+ "batchNumber": 3786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135128680,
+ "shortestRoundTripNano": 46979280,
+ "longestRoundTripNano": 159597275,
+ "averageApexExecutionNano": 49136435,
+ "shortestApexExecutionNano": 9229017,
+ "longestApexExecutionNano": 96227499
+ },
+ {
+ "batchNumber": 3787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154800179,
+ "shortestRoundTripNano": 94718550,
+ "longestRoundTripNano": 176521090,
+ "averageApexExecutionNano": 63205333,
+ "shortestApexExecutionNano": 8536771,
+ "longestApexExecutionNano": 130805078
+ },
+ {
+ "batchNumber": 3788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143188116,
+ "shortestRoundTripNano": 78917541,
+ "longestRoundTripNano": 171541044,
+ "averageApexExecutionNano": 60193914,
+ "shortestApexExecutionNano": 9137139,
+ "longestApexExecutionNano": 111381639
+ },
+ {
+ "batchNumber": 3789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145677630,
+ "shortestRoundTripNano": 54243533,
+ "longestRoundTripNano": 178273839,
+ "averageApexExecutionNano": 54990401,
+ "shortestApexExecutionNano": 8573285,
+ "longestApexExecutionNano": 111785627
+ },
+ {
+ "batchNumber": 3790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121579360,
+ "shortestRoundTripNano": 29919003,
+ "longestRoundTripNano": 152201477,
+ "averageApexExecutionNano": 46352543,
+ "shortestApexExecutionNano": 5507996,
+ "longestApexExecutionNano": 108771994
+ },
+ {
+ "batchNumber": 3791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172537506,
+ "shortestRoundTripNano": 60901549,
+ "longestRoundTripNano": 205740148,
+ "averageApexExecutionNano": 88221655,
+ "shortestApexExecutionNano": 6908815,
+ "longestApexExecutionNano": 147881392
+ },
+ {
+ "batchNumber": 3792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142586005,
+ "shortestRoundTripNano": 40916478,
+ "longestRoundTripNano": 163160641,
+ "averageApexExecutionNano": 49763633,
+ "shortestApexExecutionNano": 7587284,
+ "longestApexExecutionNano": 96790734
+ },
+ {
+ "batchNumber": 3793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36146",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124827990,
+ "shortestRoundTripNano": 31960304,
+ "longestRoundTripNano": 158794670,
+ "averageApexExecutionNano": 53717266,
+ "shortestApexExecutionNano": 7231978,
+ "longestApexExecutionNano": 101144865
+ },
+ {
+ "batchNumber": 3794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 348105016,
+ "shortestRoundTripNano": 47701849,
+ "longestRoundTripNano": 395576798,
+ "averageApexExecutionNano": 216692478,
+ "shortestApexExecutionNano": 6652652,
+ "longestApexExecutionNano": 351577020
+ },
+ {
+ "batchNumber": 3795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128541825,
+ "shortestRoundTripNano": 64870806,
+ "longestRoundTripNano": 153014463,
+ "averageApexExecutionNano": 58678414,
+ "shortestApexExecutionNano": 11888430,
+ "longestApexExecutionNano": 110676474
+ },
+ {
+ "batchNumber": 3796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137747828,
+ "shortestRoundTripNano": 55343574,
+ "longestRoundTripNano": 173991255,
+ "averageApexExecutionNano": 40525483,
+ "shortestApexExecutionNano": 6464187,
+ "longestApexExecutionNano": 99374544
+ },
+ {
+ "batchNumber": 3797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137179353,
+ "shortestRoundTripNano": 65248016,
+ "longestRoundTripNano": 172028630,
+ "averageApexExecutionNano": 64647460,
+ "shortestApexExecutionNano": 9236473,
+ "longestApexExecutionNano": 117079907
+ },
+ {
+ "batchNumber": 3798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158725863,
+ "shortestRoundTripNano": 56021343,
+ "longestRoundTripNano": 196189839,
+ "averageApexExecutionNano": 69314370,
+ "shortestApexExecutionNano": 10162348,
+ "longestApexExecutionNano": 127854800
+ },
+ {
+ "batchNumber": 3799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36148",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141568532,
+ "shortestRoundTripNano": 40117806,
+ "longestRoundTripNano": 175993322,
+ "averageApexExecutionNano": 50407082,
+ "shortestApexExecutionNano": 7871037,
+ "longestApexExecutionNano": 112418027
+ },
+ {
+ "batchNumber": 3800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156918631,
+ "shortestRoundTripNano": 74081679,
+ "longestRoundTripNano": 182100939,
+ "averageApexExecutionNano": 57594027,
+ "shortestApexExecutionNano": 7198436,
+ "longestApexExecutionNano": 107915995
+ },
+ {
+ "batchNumber": 3801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139686908,
+ "shortestRoundTripNano": 67690858,
+ "longestRoundTripNano": 172082612,
+ "averageApexExecutionNano": 62368995,
+ "shortestApexExecutionNano": 6755179,
+ "longestApexExecutionNano": 121160555
+ },
+ {
+ "batchNumber": 3802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147780512,
+ "shortestRoundTripNano": 93738830,
+ "longestRoundTripNano": 174563895,
+ "averageApexExecutionNano": 54108410,
+ "shortestApexExecutionNano": 7375750,
+ "longestApexExecutionNano": 127290464
+ },
+ {
+ "batchNumber": 3803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153323947,
+ "shortestRoundTripNano": 83833166,
+ "longestRoundTripNano": 179849244,
+ "averageApexExecutionNano": 64530475,
+ "shortestApexExecutionNano": 6416638,
+ "longestApexExecutionNano": 133894931
+ },
+ {
+ "batchNumber": 3804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157890021,
+ "shortestRoundTripNano": 61604101,
+ "longestRoundTripNano": 188875665,
+ "averageApexExecutionNano": 77706058,
+ "shortestApexExecutionNano": 13894440,
+ "longestApexExecutionNano": 124433817
+ },
+ {
+ "batchNumber": 3805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156593186,
+ "shortestRoundTripNano": 66612398,
+ "longestRoundTripNano": 238522181,
+ "averageApexExecutionNano": 71260385,
+ "shortestApexExecutionNano": 13965288,
+ "longestApexExecutionNano": 135973872
+ },
+ {
+ "batchNumber": 3806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165473417,
+ "shortestRoundTripNano": 85191445,
+ "longestRoundTripNano": 197378466,
+ "averageApexExecutionNano": 80739022,
+ "shortestApexExecutionNano": 6790952,
+ "longestApexExecutionNano": 157921717
+ },
+ {
+ "batchNumber": 3807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 269960561,
+ "shortestRoundTripNano": 64400166,
+ "longestRoundTripNano": 297933237,
+ "averageApexExecutionNano": 150148007,
+ "shortestApexExecutionNano": 10839579,
+ "longestApexExecutionNano": 243891464
+ },
+ {
+ "batchNumber": 3808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165346789,
+ "shortestRoundTripNano": 110452092,
+ "longestRoundTripNano": 188301951,
+ "averageApexExecutionNano": 65034729,
+ "shortestApexExecutionNano": 16628047,
+ "longestApexExecutionNano": 120505715
+ },
+ {
+ "batchNumber": 3809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148380636,
+ "shortestRoundTripNano": 58073145,
+ "longestRoundTripNano": 179618385,
+ "averageApexExecutionNano": 54770444,
+ "shortestApexExecutionNano": 6663115,
+ "longestApexExecutionNano": 124950850
+ },
+ {
+ "batchNumber": 3810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123933935,
+ "shortestRoundTripNano": 60610525,
+ "longestRoundTripNano": 163270700,
+ "averageApexExecutionNano": 62149483,
+ "shortestApexExecutionNano": 4479287,
+ "longestApexExecutionNano": 122505622
+ },
+ {
+ "batchNumber": 3811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122613872,
+ "shortestRoundTripNano": 62432248,
+ "longestRoundTripNano": 147350921,
+ "averageApexExecutionNano": 43242842,
+ "shortestApexExecutionNano": 8216617,
+ "longestApexExecutionNano": 103678064
+ },
+ {
+ "batchNumber": 3812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178752054,
+ "shortestRoundTripNano": 78510151,
+ "longestRoundTripNano": 209720927,
+ "averageApexExecutionNano": 63160180,
+ "shortestApexExecutionNano": 15462346,
+ "longestApexExecutionNano": 130534368
+ },
+ {
+ "batchNumber": 3813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149678426,
+ "shortestRoundTripNano": 61711969,
+ "longestRoundTripNano": 175819063,
+ "averageApexExecutionNano": 62343671,
+ "shortestApexExecutionNano": 8259764,
+ "longestApexExecutionNano": 113477053
+ },
+ {
+ "batchNumber": 3814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136646118,
+ "shortestRoundTripNano": 51064449,
+ "longestRoundTripNano": 167215351,
+ "averageApexExecutionNano": 59815369,
+ "shortestApexExecutionNano": 6619041,
+ "longestApexExecutionNano": 103956618
+ },
+ {
+ "batchNumber": 3815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142309374,
+ "shortestRoundTripNano": 65158284,
+ "longestRoundTripNano": 168299717,
+ "averageApexExecutionNano": 36302560,
+ "shortestApexExecutionNano": 6954889,
+ "longestApexExecutionNano": 118038660
+ },
+ {
+ "batchNumber": 3816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153051854,
+ "shortestRoundTripNano": 65180789,
+ "longestRoundTripNano": 184765670,
+ "averageApexExecutionNano": 41065633,
+ "shortestApexExecutionNano": 9555650,
+ "longestApexExecutionNano": 98499744
+ },
+ {
+ "batchNumber": 3817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135686475,
+ "shortestRoundTripNano": 39182425,
+ "longestRoundTripNano": 163541072,
+ "averageApexExecutionNano": 69851232,
+ "shortestApexExecutionNano": 6466215,
+ "longestApexExecutionNano": 123730041
+ },
+ {
+ "batchNumber": 3818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144371287,
+ "shortestRoundTripNano": 57933481,
+ "longestRoundTripNano": 172228734,
+ "averageApexExecutionNano": 59175942,
+ "shortestApexExecutionNano": 9039038,
+ "longestApexExecutionNano": 115920514
+ },
+ {
+ "batchNumber": 3819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126450785,
+ "shortestRoundTripNano": 63407538,
+ "longestRoundTripNano": 155509994,
+ "averageApexExecutionNano": 57150495,
+ "shortestApexExecutionNano": 5541341,
+ "longestApexExecutionNano": 113140723
+ },
+ {
+ "batchNumber": 3820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136562542,
+ "shortestRoundTripNano": 65489893,
+ "longestRoundTripNano": 167083837,
+ "averageApexExecutionNano": 53483864,
+ "shortestApexExecutionNano": 10265814,
+ "longestApexExecutionNano": 107309485
+ },
+ {
+ "batchNumber": 3821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164903506,
+ "shortestRoundTripNano": 53491224,
+ "longestRoundTripNano": 189637662,
+ "averageApexExecutionNano": 57805806,
+ "shortestApexExecutionNano": 8730038,
+ "longestApexExecutionNano": 111584582
+ },
+ {
+ "batchNumber": 3822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139090897,
+ "shortestRoundTripNano": 68520647,
+ "longestRoundTripNano": 168548813,
+ "averageApexExecutionNano": 65611419,
+ "shortestApexExecutionNano": 5027841,
+ "longestApexExecutionNano": 120209622
+ },
+ {
+ "batchNumber": 3823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126407905,
+ "shortestRoundTripNano": 57332132,
+ "longestRoundTripNano": 153864421,
+ "averageApexExecutionNano": 52190542,
+ "shortestApexExecutionNano": 6734374,
+ "longestApexExecutionNano": 112674911
+ },
+ {
+ "batchNumber": 3824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152821625,
+ "shortestRoundTripNano": 64756806,
+ "longestRoundTripNano": 188183436,
+ "averageApexExecutionNano": 54518515,
+ "shortestApexExecutionNano": 5461033,
+ "longestApexExecutionNano": 125833624
+ },
+ {
+ "batchNumber": 3825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36154",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123411340,
+ "shortestRoundTripNano": 53029135,
+ "longestRoundTripNano": 150967674,
+ "averageApexExecutionNano": 60870343,
+ "shortestApexExecutionNano": 11140594,
+ "longestApexExecutionNano": 115284039
+ },
+ {
+ "batchNumber": 3826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134928715,
+ "shortestRoundTripNano": 65069394,
+ "longestRoundTripNano": 165773827,
+ "averageApexExecutionNano": 52218598,
+ "shortestApexExecutionNano": 5918899,
+ "longestApexExecutionNano": 120839309
+ },
+ {
+ "batchNumber": 3827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124775065,
+ "shortestRoundTripNano": 61523532,
+ "longestRoundTripNano": 156877847,
+ "averageApexExecutionNano": 49192188,
+ "shortestApexExecutionNano": 7688745,
+ "longestApexExecutionNano": 109517199
+ },
+ {
+ "batchNumber": 3828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122017596,
+ "shortestRoundTripNano": 64455170,
+ "longestRoundTripNano": 150327326,
+ "averageApexExecutionNano": 53389286,
+ "shortestApexExecutionNano": 10471149,
+ "longestApexExecutionNano": 101615598
+ },
+ {
+ "batchNumber": 3829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145093962,
+ "shortestRoundTripNano": 50402810,
+ "longestRoundTripNano": 177080215,
+ "averageApexExecutionNano": 66000239,
+ "shortestApexExecutionNano": 6975372,
+ "longestApexExecutionNano": 131665829
+ },
+ {
+ "batchNumber": 3830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136692833,
+ "shortestRoundTripNano": 63318096,
+ "longestRoundTripNano": 160978937,
+ "averageApexExecutionNano": 57807950,
+ "shortestApexExecutionNano": 14323853,
+ "longestApexExecutionNano": 108817177
+ },
+ {
+ "batchNumber": 3831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146535560,
+ "shortestRoundTripNano": 68396535,
+ "longestRoundTripNano": 177719532,
+ "averageApexExecutionNano": 53925813,
+ "shortestApexExecutionNano": 10089607,
+ "longestApexExecutionNano": 126233983
+ },
+ {
+ "batchNumber": 3832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145797266,
+ "shortestRoundTripNano": 65445859,
+ "longestRoundTripNano": 172826054,
+ "averageApexExecutionNano": 65187896,
+ "shortestApexExecutionNano": 16158469,
+ "longestApexExecutionNano": 111250453
+ },
+ {
+ "batchNumber": 3833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155818157,
+ "shortestRoundTripNano": 87606174,
+ "longestRoundTripNano": 176626478,
+ "averageApexExecutionNano": 70645987,
+ "shortestApexExecutionNano": 25035873,
+ "longestApexExecutionNano": 117994510
+ },
+ {
+ "batchNumber": 3834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144464714,
+ "shortestRoundTripNano": 64924218,
+ "longestRoundTripNano": 172043710,
+ "averageApexExecutionNano": 60578882,
+ "shortestApexExecutionNano": 6346215,
+ "longestApexExecutionNano": 123473137
+ },
+ {
+ "batchNumber": 3835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132195357,
+ "shortestRoundTripNano": 62652769,
+ "longestRoundTripNano": 165019545,
+ "averageApexExecutionNano": 63451266,
+ "shortestApexExecutionNano": 12603703,
+ "longestApexExecutionNano": 112349985
+ },
+ {
+ "batchNumber": 3836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128546140,
+ "shortestRoundTripNano": 60382502,
+ "longestRoundTripNano": 167361040,
+ "averageApexExecutionNano": 54028448,
+ "shortestApexExecutionNano": 7006650,
+ "longestApexExecutionNano": 105783363
+ },
+ {
+ "batchNumber": 3837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160400590,
+ "shortestRoundTripNano": 85231258,
+ "longestRoundTripNano": 184490379,
+ "averageApexExecutionNano": 62813511,
+ "shortestApexExecutionNano": 10305690,
+ "longestApexExecutionNano": 120617125
+ },
+ {
+ "batchNumber": 3838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36160",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151609935,
+ "shortestRoundTripNano": 58354008,
+ "longestRoundTripNano": 190308769,
+ "averageApexExecutionNano": 74180640,
+ "shortestApexExecutionNano": 8716579,
+ "longestApexExecutionNano": 129572585
+ },
+ {
+ "batchNumber": 3839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125460502,
+ "shortestRoundTripNano": 69131620,
+ "longestRoundTripNano": 148150127,
+ "averageApexExecutionNano": 67372317,
+ "shortestApexExecutionNano": 9777318,
+ "longestApexExecutionNano": 106494666
+ },
+ {
+ "batchNumber": 3840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145302864,
+ "shortestRoundTripNano": 54997718,
+ "longestRoundTripNano": 179907295,
+ "averageApexExecutionNano": 57319709,
+ "shortestApexExecutionNano": 7722984,
+ "longestApexExecutionNano": 107892337
+ },
+ {
+ "batchNumber": 3841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150559850,
+ "shortestRoundTripNano": 67780699,
+ "longestRoundTripNano": 174786589,
+ "averageApexExecutionNano": 68734863,
+ "shortestApexExecutionNano": 6475719,
+ "longestApexExecutionNano": 129397431
+ },
+ {
+ "batchNumber": 3842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145885921,
+ "shortestRoundTripNano": 73051200,
+ "longestRoundTripNano": 170769421,
+ "averageApexExecutionNano": 61850007,
+ "shortestApexExecutionNano": 8235586,
+ "longestApexExecutionNano": 121363256
+ },
+ {
+ "batchNumber": 3843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136503889,
+ "shortestRoundTripNano": 45919052,
+ "longestRoundTripNano": 173855783,
+ "averageApexExecutionNano": 42768401,
+ "shortestApexExecutionNano": 7155498,
+ "longestApexExecutionNano": 113858214
+ },
+ {
+ "batchNumber": 3844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36164",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139749512,
+ "shortestRoundTripNano": 44236002,
+ "longestRoundTripNano": 163494242,
+ "averageApexExecutionNano": 60820430,
+ "shortestApexExecutionNano": 14657626,
+ "longestApexExecutionNano": 116783214
+ },
+ {
+ "batchNumber": 3845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144667983,
+ "shortestRoundTripNano": 65317295,
+ "longestRoundTripNano": 179344061,
+ "averageApexExecutionNano": 58977820,
+ "shortestApexExecutionNano": 5266983,
+ "longestApexExecutionNano": 130877823
+ },
+ {
+ "batchNumber": 3846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159748137,
+ "shortestRoundTripNano": 74947654,
+ "longestRoundTripNano": 187746364,
+ "averageApexExecutionNano": 50558189,
+ "shortestApexExecutionNano": 8097675,
+ "longestApexExecutionNano": 141386944
+ },
+ {
+ "batchNumber": 3847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147036114,
+ "shortestRoundTripNano": 59430113,
+ "longestRoundTripNano": 185946743,
+ "averageApexExecutionNano": 57406740,
+ "shortestApexExecutionNano": 6240911,
+ "longestApexExecutionNano": 118828919
+ },
+ {
+ "batchNumber": 3848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177593992,
+ "shortestRoundTripNano": 88920964,
+ "longestRoundTripNano": 227308204,
+ "averageApexExecutionNano": 82220769,
+ "shortestApexExecutionNano": 23512184,
+ "longestApexExecutionNano": 148753184
+ },
+ {
+ "batchNumber": 3849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133440848,
+ "shortestRoundTripNano": 57414462,
+ "longestRoundTripNano": 160900999,
+ "averageApexExecutionNano": 65572449,
+ "shortestApexExecutionNano": 10909916,
+ "longestApexExecutionNano": 122433592
+ },
+ {
+ "batchNumber": 3850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140801982,
+ "shortestRoundTripNano": 49420105,
+ "longestRoundTripNano": 173719267,
+ "averageApexExecutionNano": 52042701,
+ "shortestApexExecutionNano": 8441143,
+ "longestApexExecutionNano": 109114540
+ },
+ {
+ "batchNumber": 3851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155356864,
+ "shortestRoundTripNano": 38491117,
+ "longestRoundTripNano": 188697959,
+ "averageApexExecutionNano": 67085799,
+ "shortestApexExecutionNano": 5871707,
+ "longestApexExecutionNano": 125041870
+ },
+ {
+ "batchNumber": 3852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158724629,
+ "shortestRoundTripNano": 77108770,
+ "longestRoundTripNano": 186255460,
+ "averageApexExecutionNano": 58938422,
+ "shortestApexExecutionNano": 7826531,
+ "longestApexExecutionNano": 123915424
+ },
+ {
+ "batchNumber": 3853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145751635,
+ "shortestRoundTripNano": 30064737,
+ "longestRoundTripNano": 175342668,
+ "averageApexExecutionNano": 65505490,
+ "shortestApexExecutionNano": 9435189,
+ "longestApexExecutionNano": 121951333
+ },
+ {
+ "batchNumber": 3854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143106558,
+ "shortestRoundTripNano": 65942514,
+ "longestRoundTripNano": 178601814,
+ "averageApexExecutionNano": 50087545,
+ "shortestApexExecutionNano": 7491256,
+ "longestApexExecutionNano": 121766033
+ },
+ {
+ "batchNumber": 3855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141628729,
+ "shortestRoundTripNano": 51079178,
+ "longestRoundTripNano": 168899323,
+ "averageApexExecutionNano": 53924205,
+ "shortestApexExecutionNano": 7062438,
+ "longestApexExecutionNano": 118692514
+ },
+ {
+ "batchNumber": 3856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136427379,
+ "shortestRoundTripNano": 61178586,
+ "longestRoundTripNano": 167152915,
+ "averageApexExecutionNano": 54685350,
+ "shortestApexExecutionNano": 9236890,
+ "longestApexExecutionNano": 107029769
+ },
+ {
+ "batchNumber": 3857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169511007,
+ "shortestRoundTripNano": 89766838,
+ "longestRoundTripNano": 203862096,
+ "averageApexExecutionNano": 63399375,
+ "shortestApexExecutionNano": 10619444,
+ "longestApexExecutionNano": 134882414
+ },
+ {
+ "batchNumber": 3858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141104958,
+ "shortestRoundTripNano": 40935949,
+ "longestRoundTripNano": 171702969,
+ "averageApexExecutionNano": 72843471,
+ "shortestApexExecutionNano": 8008971,
+ "longestApexExecutionNano": 127617758
+ },
+ {
+ "batchNumber": 3859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144802737,
+ "shortestRoundTripNano": 30019394,
+ "longestRoundTripNano": 174985701,
+ "averageApexExecutionNano": 46724243,
+ "shortestApexExecutionNano": 9410307,
+ "longestApexExecutionNano": 105510986
+ },
+ {
+ "batchNumber": 3860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165601173,
+ "shortestRoundTripNano": 62559145,
+ "longestRoundTripNano": 194101301,
+ "averageApexExecutionNano": 75079342,
+ "shortestApexExecutionNano": 14321521,
+ "longestApexExecutionNano": 140508699
+ },
+ {
+ "batchNumber": 3861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125496066,
+ "shortestRoundTripNano": 61126624,
+ "longestRoundTripNano": 158368522,
+ "averageApexExecutionNano": 60287575,
+ "shortestApexExecutionNano": 7790830,
+ "longestApexExecutionNano": 111626335
+ },
+ {
+ "batchNumber": 3862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144554942,
+ "shortestRoundTripNano": 57985962,
+ "longestRoundTripNano": 176251626,
+ "averageApexExecutionNano": 59056101,
+ "shortestApexExecutionNano": 7622521,
+ "longestApexExecutionNano": 115899426
+ },
+ {
+ "batchNumber": 3863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146886525,
+ "shortestRoundTripNano": 72211104,
+ "longestRoundTripNano": 182114008,
+ "averageApexExecutionNano": 65894145,
+ "shortestApexExecutionNano": 12781712,
+ "longestApexExecutionNano": 123776572
+ },
+ {
+ "batchNumber": 3864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147288002,
+ "shortestRoundTripNano": 51492634,
+ "longestRoundTripNano": 179599402,
+ "averageApexExecutionNano": 57091255,
+ "shortestApexExecutionNano": 11988982,
+ "longestApexExecutionNano": 125796953
+ },
+ {
+ "batchNumber": 3865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135146676,
+ "shortestRoundTripNano": 68402392,
+ "longestRoundTripNano": 170461149,
+ "averageApexExecutionNano": 56692798,
+ "shortestApexExecutionNano": 6517631,
+ "longestApexExecutionNano": 115909718
+ },
+ {
+ "batchNumber": 3866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163652600,
+ "shortestRoundTripNano": 92244868,
+ "longestRoundTripNano": 189125084,
+ "averageApexExecutionNano": 51086167,
+ "shortestApexExecutionNano": 7615041,
+ "longestApexExecutionNano": 109915754
+ },
+ {
+ "batchNumber": 3867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156871993,
+ "shortestRoundTripNano": 46764527,
+ "longestRoundTripNano": 191087385,
+ "averageApexExecutionNano": 72971043,
+ "shortestApexExecutionNano": 9316722,
+ "longestApexExecutionNano": 148441905
+ },
+ {
+ "batchNumber": 3868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146538765,
+ "shortestRoundTripNano": 70329711,
+ "longestRoundTripNano": 177996230,
+ "averageApexExecutionNano": 57426293,
+ "shortestApexExecutionNano": 10586925,
+ "longestApexExecutionNano": 127516796
+ },
+ {
+ "batchNumber": 3869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158040709,
+ "shortestRoundTripNano": 66227771,
+ "longestRoundTripNano": 185902398,
+ "averageApexExecutionNano": 50571773,
+ "shortestApexExecutionNano": 7474697,
+ "longestApexExecutionNano": 105989748
+ },
+ {
+ "batchNumber": 3870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146382345,
+ "shortestRoundTripNano": 44597752,
+ "longestRoundTripNano": 191853270,
+ "averageApexExecutionNano": 57202586,
+ "shortestApexExecutionNano": 9125203,
+ "longestApexExecutionNano": 114064414
+ },
+ {
+ "batchNumber": 3871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147278002,
+ "shortestRoundTripNano": 33575334,
+ "longestRoundTripNano": 175642556,
+ "averageApexExecutionNano": 54919732,
+ "shortestApexExecutionNano": 7819158,
+ "longestApexExecutionNano": 131901913
+ },
+ {
+ "batchNumber": 3872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137068965,
+ "shortestRoundTripNano": 54576614,
+ "longestRoundTripNano": 164485918,
+ "averageApexExecutionNano": 59096661,
+ "shortestApexExecutionNano": 15101859,
+ "longestApexExecutionNano": 121962858
+ },
+ {
+ "batchNumber": 3873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163566792,
+ "shortestRoundTripNano": 79333469,
+ "longestRoundTripNano": 188340875,
+ "averageApexExecutionNano": 65305368,
+ "shortestApexExecutionNano": 5479282,
+ "longestApexExecutionNano": 112918460
+ },
+ {
+ "batchNumber": 3874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169630757,
+ "shortestRoundTripNano": 44758912,
+ "longestRoundTripNano": 203192094,
+ "averageApexExecutionNano": 68537007,
+ "shortestApexExecutionNano": 5501655,
+ "longestApexExecutionNano": 131500137
+ },
+ {
+ "batchNumber": 3875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142556503,
+ "shortestRoundTripNano": 55188199,
+ "longestRoundTripNano": 179117216,
+ "averageApexExecutionNano": 57414085,
+ "shortestApexExecutionNano": 5054284,
+ "longestApexExecutionNano": 119403205
+ },
+ {
+ "batchNumber": 3876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154243462,
+ "shortestRoundTripNano": 75726725,
+ "longestRoundTripNano": 183913798,
+ "averageApexExecutionNano": 55912691,
+ "shortestApexExecutionNano": 7418565,
+ "longestApexExecutionNano": 110398743
+ },
+ {
+ "batchNumber": 3877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146987597,
+ "shortestRoundTripNano": 46926673,
+ "longestRoundTripNano": 181837282,
+ "averageApexExecutionNano": 69110831,
+ "shortestApexExecutionNano": 7140167,
+ "longestApexExecutionNano": 129764406
+ },
+ {
+ "batchNumber": 3878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141676124,
+ "shortestRoundTripNano": 51977481,
+ "longestRoundTripNano": 172021686,
+ "averageApexExecutionNano": 58036892,
+ "shortestApexExecutionNano": 9214908,
+ "longestApexExecutionNano": 104420219
+ },
+ {
+ "batchNumber": 3879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157472850,
+ "shortestRoundTripNano": 62224383,
+ "longestRoundTripNano": 178666766,
+ "averageApexExecutionNano": 76422790,
+ "shortestApexExecutionNano": 15113660,
+ "longestApexExecutionNano": 136785524
+ },
+ {
+ "batchNumber": 3880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132294789,
+ "shortestRoundTripNano": 60746257,
+ "longestRoundTripNano": 169223019,
+ "averageApexExecutionNano": 54481387,
+ "shortestApexExecutionNano": 7412987,
+ "longestApexExecutionNano": 122072907
+ },
+ {
+ "batchNumber": 3881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148932779,
+ "shortestRoundTripNano": 65393865,
+ "longestRoundTripNano": 183042470,
+ "averageApexExecutionNano": 59552217,
+ "shortestApexExecutionNano": 17274224,
+ "longestApexExecutionNano": 104974566
+ },
+ {
+ "batchNumber": 3882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133808883,
+ "shortestRoundTripNano": 36354378,
+ "longestRoundTripNano": 165566316,
+ "averageApexExecutionNano": 59216585,
+ "shortestApexExecutionNano": 5191767,
+ "longestApexExecutionNano": 118843193
+ },
+ {
+ "batchNumber": 3883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145259142,
+ "shortestRoundTripNano": 64134249,
+ "longestRoundTripNano": 179930869,
+ "averageApexExecutionNano": 59234833,
+ "shortestApexExecutionNano": 10419815,
+ "longestApexExecutionNano": 122864100
+ },
+ {
+ "batchNumber": 3884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144260939,
+ "shortestRoundTripNano": 58766335,
+ "longestRoundTripNano": 169335691,
+ "averageApexExecutionNano": 46182543,
+ "shortestApexExecutionNano": 10920591,
+ "longestApexExecutionNano": 109559601
+ },
+ {
+ "batchNumber": 3885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146662460,
+ "shortestRoundTripNano": 70345464,
+ "longestRoundTripNano": 182497094,
+ "averageApexExecutionNano": 60391375,
+ "shortestApexExecutionNano": 8311775,
+ "longestApexExecutionNano": 126703695
+ },
+ {
+ "batchNumber": 3886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158988249,
+ "shortestRoundTripNano": 82035490,
+ "longestRoundTripNano": 186909431,
+ "averageApexExecutionNano": 67884437,
+ "shortestApexExecutionNano": 11791433,
+ "longestApexExecutionNano": 130539013
+ },
+ {
+ "batchNumber": 3887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141446715,
+ "shortestRoundTripNano": 76342063,
+ "longestRoundTripNano": 167686323,
+ "averageApexExecutionNano": 59887930,
+ "shortestApexExecutionNano": 10893782,
+ "longestApexExecutionNano": 121879666
+ },
+ {
+ "batchNumber": 3888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138469994,
+ "shortestRoundTripNano": 67359039,
+ "longestRoundTripNano": 168244761,
+ "averageApexExecutionNano": 48872805,
+ "shortestApexExecutionNano": 7400673,
+ "longestApexExecutionNano": 110686894
+ },
+ {
+ "batchNumber": 3889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135451893,
+ "shortestRoundTripNano": 75579712,
+ "longestRoundTripNano": 166662054,
+ "averageApexExecutionNano": 66101962,
+ "shortestApexExecutionNano": 7177665,
+ "longestApexExecutionNano": 116988660
+ },
+ {
+ "batchNumber": 3890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142825545,
+ "shortestRoundTripNano": 70090611,
+ "longestRoundTripNano": 175096917,
+ "averageApexExecutionNano": 60360583,
+ "shortestApexExecutionNano": 7004804,
+ "longestApexExecutionNano": 138999374
+ },
+ {
+ "batchNumber": 3891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36180",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172235397,
+ "shortestRoundTripNano": 67216555,
+ "longestRoundTripNano": 203180566,
+ "averageApexExecutionNano": 90127519,
+ "shortestApexExecutionNano": 14090863,
+ "longestApexExecutionNano": 146098067
+ },
+ {
+ "batchNumber": 3892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134726133,
+ "shortestRoundTripNano": 35383179,
+ "longestRoundTripNano": 166281207,
+ "averageApexExecutionNano": 58966734,
+ "shortestApexExecutionNano": 4714410,
+ "longestApexExecutionNano": 119678775
+ },
+ {
+ "batchNumber": 3893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143945530,
+ "shortestRoundTripNano": 60086574,
+ "longestRoundTripNano": 176959941,
+ "averageApexExecutionNano": 51571616,
+ "shortestApexExecutionNano": 9829234,
+ "longestApexExecutionNano": 130903951
+ },
+ {
+ "batchNumber": 3894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152238184,
+ "shortestRoundTripNano": 95499750,
+ "longestRoundTripNano": 178259543,
+ "averageApexExecutionNano": 61304576,
+ "shortestApexExecutionNano": 8394809,
+ "longestApexExecutionNano": 135629241
+ },
+ {
+ "batchNumber": 3895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138838121,
+ "shortestRoundTripNano": 51472396,
+ "longestRoundTripNano": 170055927,
+ "averageApexExecutionNano": 59267036,
+ "shortestApexExecutionNano": 8433681,
+ "longestApexExecutionNano": 128436252
+ },
+ {
+ "batchNumber": 3896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141037303,
+ "shortestRoundTripNano": 74179546,
+ "longestRoundTripNano": 167411823,
+ "averageApexExecutionNano": 52549409,
+ "shortestApexExecutionNano": 10462341,
+ "longestApexExecutionNano": 118138941
+ },
+ {
+ "batchNumber": 3897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148969454,
+ "shortestRoundTripNano": 64928420,
+ "longestRoundTripNano": 174215915,
+ "averageApexExecutionNano": 64686628,
+ "shortestApexExecutionNano": 24438485,
+ "longestApexExecutionNano": 116805744
+ },
+ {
+ "batchNumber": 3898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143553056,
+ "shortestRoundTripNano": 70807616,
+ "longestRoundTripNano": 169334602,
+ "averageApexExecutionNano": 43766865,
+ "shortestApexExecutionNano": 10703666,
+ "longestApexExecutionNano": 120993048
+ },
+ {
+ "batchNumber": 3899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150989279,
+ "shortestRoundTripNano": 80688362,
+ "longestRoundTripNano": 174850224,
+ "averageApexExecutionNano": 71556635,
+ "shortestApexExecutionNano": 17220376,
+ "longestApexExecutionNano": 116077793
+ },
+ {
+ "batchNumber": 3900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150765899,
+ "shortestRoundTripNano": 49004887,
+ "longestRoundTripNano": 182924437,
+ "averageApexExecutionNano": 50140958,
+ "shortestApexExecutionNano": 5967245,
+ "longestApexExecutionNano": 126184561
+ },
+ {
+ "batchNumber": 3901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126219347,
+ "shortestRoundTripNano": 64426759,
+ "longestRoundTripNano": 156631543,
+ "averageApexExecutionNano": 53667128,
+ "shortestApexExecutionNano": 5857246,
+ "longestApexExecutionNano": 111663753
+ },
+ {
+ "batchNumber": 3902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146539374,
+ "shortestRoundTripNano": 78102284,
+ "longestRoundTripNano": 178625948,
+ "averageApexExecutionNano": 75135086,
+ "shortestApexExecutionNano": 11768088,
+ "longestApexExecutionNano": 144318884
+ },
+ {
+ "batchNumber": 3903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129915320,
+ "shortestRoundTripNano": 61853410,
+ "longestRoundTripNano": 164299136,
+ "averageApexExecutionNano": 56152491,
+ "shortestApexExecutionNano": 7222318,
+ "longestApexExecutionNano": 116951288
+ },
+ {
+ "batchNumber": 3904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154538556,
+ "shortestRoundTripNano": 81583243,
+ "longestRoundTripNano": 183601446,
+ "averageApexExecutionNano": 62184964,
+ "shortestApexExecutionNano": 11506428,
+ "longestApexExecutionNano": 110991671
+ },
+ {
+ "batchNumber": 3905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133737343,
+ "shortestRoundTripNano": 44284254,
+ "longestRoundTripNano": 162112158,
+ "averageApexExecutionNano": 59214095,
+ "shortestApexExecutionNano": 11584053,
+ "longestApexExecutionNano": 120398797
+ },
+ {
+ "batchNumber": 3906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138650197,
+ "shortestRoundTripNano": 58736929,
+ "longestRoundTripNano": 168027103,
+ "averageApexExecutionNano": 60101734,
+ "shortestApexExecutionNano": 12329626,
+ "longestApexExecutionNano": 120567338
+ },
+ {
+ "batchNumber": 3907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161196505,
+ "shortestRoundTripNano": 54718672,
+ "longestRoundTripNano": 198872568,
+ "averageApexExecutionNano": 76644004,
+ "shortestApexExecutionNano": 15089502,
+ "longestApexExecutionNano": 140666367
+ },
+ {
+ "batchNumber": 3908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158891293,
+ "shortestRoundTripNano": 79150442,
+ "longestRoundTripNano": 189549030,
+ "averageApexExecutionNano": 79360252,
+ "shortestApexExecutionNano": 12892924,
+ "longestApexExecutionNano": 138423692
+ },
+ {
+ "batchNumber": 3909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152089223,
+ "shortestRoundTripNano": 54895593,
+ "longestRoundTripNano": 194624661,
+ "averageApexExecutionNano": 64462026,
+ "shortestApexExecutionNano": 7799734,
+ "longestApexExecutionNano": 138669436
+ },
+ {
+ "batchNumber": 3910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142114260,
+ "shortestRoundTripNano": 43039145,
+ "longestRoundTripNano": 174556499,
+ "averageApexExecutionNano": 65344146,
+ "shortestApexExecutionNano": 6057626,
+ "longestApexExecutionNano": 135129532
+ },
+ {
+ "batchNumber": 3911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145333374,
+ "shortestRoundTripNano": 71796241,
+ "longestRoundTripNano": 171832828,
+ "averageApexExecutionNano": 58431202,
+ "shortestApexExecutionNano": 12352320,
+ "longestApexExecutionNano": 119123987
+ },
+ {
+ "batchNumber": 3912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156969014,
+ "shortestRoundTripNano": 70452865,
+ "longestRoundTripNano": 188789808,
+ "averageApexExecutionNano": 51042938,
+ "shortestApexExecutionNano": 7722706,
+ "longestApexExecutionNano": 117500737
+ },
+ {
+ "batchNumber": 3913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137331103,
+ "shortestRoundTripNano": 60716158,
+ "longestRoundTripNano": 160382746,
+ "averageApexExecutionNano": 60811995,
+ "shortestApexExecutionNano": 8377796,
+ "longestApexExecutionNano": 112834002
+ },
+ {
+ "batchNumber": 3914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147777131,
+ "shortestRoundTripNano": 74272698,
+ "longestRoundTripNano": 176213861,
+ "averageApexExecutionNano": 52360025,
+ "shortestApexExecutionNano": 7047502,
+ "longestApexExecutionNano": 123373898
+ },
+ {
+ "batchNumber": 3915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156262829,
+ "shortestRoundTripNano": 88237947,
+ "longestRoundTripNano": 186589267,
+ "averageApexExecutionNano": 44930503,
+ "shortestApexExecutionNano": 6631556,
+ "longestApexExecutionNano": 121274392
+ },
+ {
+ "batchNumber": 3916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126856373,
+ "shortestRoundTripNano": 42039439,
+ "longestRoundTripNano": 158722156,
+ "averageApexExecutionNano": 49211346,
+ "shortestApexExecutionNano": 10911500,
+ "longestApexExecutionNano": 98296126
+ },
+ {
+ "batchNumber": 3917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147057979,
+ "shortestRoundTripNano": 87950850,
+ "longestRoundTripNano": 176805626,
+ "averageApexExecutionNano": 59569122,
+ "shortestApexExecutionNano": 5608084,
+ "longestApexExecutionNano": 114718215
+ },
+ {
+ "batchNumber": 3918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130529494,
+ "shortestRoundTripNano": 59546341,
+ "longestRoundTripNano": 161524917,
+ "averageApexExecutionNano": 59086604,
+ "shortestApexExecutionNano": 11236065,
+ "longestApexExecutionNano": 112228818
+ },
+ {
+ "batchNumber": 3919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36188",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145595743,
+ "shortestRoundTripNano": 59052157,
+ "longestRoundTripNano": 183688439,
+ "averageApexExecutionNano": 65817955,
+ "shortestApexExecutionNano": 8526062,
+ "longestApexExecutionNano": 131659668
+ },
+ {
+ "batchNumber": 3920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36194",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 110075233,
+ "shortestRoundTripNano": 38267431,
+ "longestRoundTripNano": 140264594,
+ "averageApexExecutionNano": 48226654,
+ "shortestApexExecutionNano": 7902413,
+ "longestApexExecutionNano": 106446031
+ },
+ {
+ "batchNumber": 3921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36194",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192842160,
+ "shortestRoundTripNano": 28373982,
+ "longestRoundTripNano": 223949430,
+ "averageApexExecutionNano": 85328768,
+ "shortestApexExecutionNano": 6326064,
+ "longestApexExecutionNano": 173168279
+ },
+ {
+ "batchNumber": 3922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132892916,
+ "shortestRoundTripNano": 61467440,
+ "longestRoundTripNano": 169427314,
+ "averageApexExecutionNano": 53260315,
+ "shortestApexExecutionNano": 7246618,
+ "longestApexExecutionNano": 108472033
+ },
+ {
+ "batchNumber": 3923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136840383,
+ "shortestRoundTripNano": 55755257,
+ "longestRoundTripNano": 165253371,
+ "averageApexExecutionNano": 52801803,
+ "shortestApexExecutionNano": 7268148,
+ "longestApexExecutionNano": 119767018
+ },
+ {
+ "batchNumber": 3924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150818181,
+ "shortestRoundTripNano": 74838341,
+ "longestRoundTripNano": 180267158,
+ "averageApexExecutionNano": 65952013,
+ "shortestApexExecutionNano": 9249104,
+ "longestApexExecutionNano": 131253503
+ },
+ {
+ "batchNumber": 3925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141164334,
+ "shortestRoundTripNano": 59418279,
+ "longestRoundTripNano": 170235744,
+ "averageApexExecutionNano": 50911479,
+ "shortestApexExecutionNano": 8706468,
+ "longestApexExecutionNano": 132667660
+ },
+ {
+ "batchNumber": 3926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129218259,
+ "shortestRoundTripNano": 82528627,
+ "longestRoundTripNano": 150043820,
+ "averageApexExecutionNano": 44717563,
+ "shortestApexExecutionNano": 7600838,
+ "longestApexExecutionNano": 93311768
+ },
+ {
+ "batchNumber": 3927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126118892,
+ "shortestRoundTripNano": 58332068,
+ "longestRoundTripNano": 161276131,
+ "averageApexExecutionNano": 49901544,
+ "shortestApexExecutionNano": 8644281,
+ "longestApexExecutionNano": 112409508
+ },
+ {
+ "batchNumber": 3928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138108617,
+ "shortestRoundTripNano": 58267376,
+ "longestRoundTripNano": 167858576,
+ "averageApexExecutionNano": 50040027,
+ "shortestApexExecutionNano": 6631131,
+ "longestApexExecutionNano": 115381355
+ },
+ {
+ "batchNumber": 3929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134830191,
+ "shortestRoundTripNano": 73322585,
+ "longestRoundTripNano": 158099294,
+ "averageApexExecutionNano": 58780935,
+ "shortestApexExecutionNano": 6135847,
+ "longestApexExecutionNano": 115648248
+ },
+ {
+ "batchNumber": 3930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126090676,
+ "shortestRoundTripNano": 53597835,
+ "longestRoundTripNano": 162383764,
+ "averageApexExecutionNano": 50575677,
+ "shortestApexExecutionNano": 7251293,
+ "longestApexExecutionNano": 121268598
+ },
+ {
+ "batchNumber": 3931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140091081,
+ "shortestRoundTripNano": 59274892,
+ "longestRoundTripNano": 168619338,
+ "averageApexExecutionNano": 60947227,
+ "shortestApexExecutionNano": 9898229,
+ "longestApexExecutionNano": 133300759
+ },
+ {
+ "batchNumber": 3932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138381032,
+ "shortestRoundTripNano": 72967209,
+ "longestRoundTripNano": 170843640,
+ "averageApexExecutionNano": 62470047,
+ "shortestApexExecutionNano": 9076389,
+ "longestApexExecutionNano": 113036501
+ },
+ {
+ "batchNumber": 3933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173684449,
+ "shortestRoundTripNano": 67965439,
+ "longestRoundTripNano": 208703478,
+ "averageApexExecutionNano": 93584289,
+ "shortestApexExecutionNano": 25026912,
+ "longestApexExecutionNano": 160117622
+ },
+ {
+ "batchNumber": 3934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158534268,
+ "shortestRoundTripNano": 86943967,
+ "longestRoundTripNano": 185853445,
+ "averageApexExecutionNano": 53567440,
+ "shortestApexExecutionNano": 7388775,
+ "longestApexExecutionNano": 147587425
+ },
+ {
+ "batchNumber": 3935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165113534,
+ "shortestRoundTripNano": 83199045,
+ "longestRoundTripNano": 197327060,
+ "averageApexExecutionNano": 78384453,
+ "shortestApexExecutionNano": 12295531,
+ "longestApexExecutionNano": 149822097
+ },
+ {
+ "batchNumber": 3936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126713594,
+ "shortestRoundTripNano": 36876682,
+ "longestRoundTripNano": 165328585,
+ "averageApexExecutionNano": 42154580,
+ "shortestApexExecutionNano": 6645281,
+ "longestApexExecutionNano": 109140757
+ },
+ {
+ "batchNumber": 3937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129076692,
+ "shortestRoundTripNano": 56962191,
+ "longestRoundTripNano": 161698225,
+ "averageApexExecutionNano": 41644561,
+ "shortestApexExecutionNano": 5873637,
+ "longestApexExecutionNano": 112762140
+ },
+ {
+ "batchNumber": 3938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151252548,
+ "shortestRoundTripNano": 77496015,
+ "longestRoundTripNano": 187831636,
+ "averageApexExecutionNano": 50107919,
+ "shortestApexExecutionNano": 7577899,
+ "longestApexExecutionNano": 108536648
+ },
+ {
+ "batchNumber": 3939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161746000,
+ "shortestRoundTripNano": 66624060,
+ "longestRoundTripNano": 190043132,
+ "averageApexExecutionNano": 58864786,
+ "shortestApexExecutionNano": 10897645,
+ "longestApexExecutionNano": 129150651
+ },
+ {
+ "batchNumber": 3940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128673735,
+ "shortestRoundTripNano": 48169945,
+ "longestRoundTripNano": 159139649,
+ "averageApexExecutionNano": 60018797,
+ "shortestApexExecutionNano": 4811801,
+ "longestApexExecutionNano": 110944942
+ },
+ {
+ "batchNumber": 3941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130410145,
+ "shortestRoundTripNano": 63752978,
+ "longestRoundTripNano": 164864386,
+ "averageApexExecutionNano": 53760002,
+ "shortestApexExecutionNano": 6125551,
+ "longestApexExecutionNano": 115283437
+ },
+ {
+ "batchNumber": 3942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152652158,
+ "shortestRoundTripNano": 70981654,
+ "longestRoundTripNano": 183547457,
+ "averageApexExecutionNano": 59583511,
+ "shortestApexExecutionNano": 8831671,
+ "longestApexExecutionNano": 128346536
+ },
+ {
+ "batchNumber": 3943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135552372,
+ "shortestRoundTripNano": 51146347,
+ "longestRoundTripNano": 162532019,
+ "averageApexExecutionNano": 59797440,
+ "shortestApexExecutionNano": 7168463,
+ "longestApexExecutionNano": 112930967
+ },
+ {
+ "batchNumber": 3944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152813708,
+ "shortestRoundTripNano": 28794712,
+ "longestRoundTripNano": 187454249,
+ "averageApexExecutionNano": 73135387,
+ "shortestApexExecutionNano": 7709342,
+ "longestApexExecutionNano": 153489936
+ },
+ {
+ "batchNumber": 3945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145614210,
+ "shortestRoundTripNano": 64234946,
+ "longestRoundTripNano": 185945505,
+ "averageApexExecutionNano": 66299267,
+ "shortestApexExecutionNano": 7945416,
+ "longestApexExecutionNano": 122372152
+ },
+ {
+ "batchNumber": 3946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36206",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146925967,
+ "shortestRoundTripNano": 40149716,
+ "longestRoundTripNano": 173306787,
+ "averageApexExecutionNano": 67148560,
+ "shortestApexExecutionNano": 9784336,
+ "longestApexExecutionNano": 133949470
+ },
+ {
+ "batchNumber": 3947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135465712,
+ "shortestRoundTripNano": 69785629,
+ "longestRoundTripNano": 161936394,
+ "averageApexExecutionNano": 56054931,
+ "shortestApexExecutionNano": 10518455,
+ "longestApexExecutionNano": 113310394
+ },
+ {
+ "batchNumber": 3948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177422746,
+ "shortestRoundTripNano": 72762803,
+ "longestRoundTripNano": 220555162,
+ "averageApexExecutionNano": 68698108,
+ "shortestApexExecutionNano": 11297507,
+ "longestApexExecutionNano": 132794144
+ },
+ {
+ "batchNumber": 3949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174315610,
+ "shortestRoundTripNano": 74516006,
+ "longestRoundTripNano": 204639074,
+ "averageApexExecutionNano": 62037833,
+ "shortestApexExecutionNano": 11898181,
+ "longestApexExecutionNano": 146013814
+ },
+ {
+ "batchNumber": 3950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171746690,
+ "shortestRoundTripNano": 100991806,
+ "longestRoundTripNano": 206007070,
+ "averageApexExecutionNano": 67680233,
+ "shortestApexExecutionNano": 8065877,
+ "longestApexExecutionNano": 140368334
+ },
+ {
+ "batchNumber": 3951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142188299,
+ "shortestRoundTripNano": 70882783,
+ "longestRoundTripNano": 168698626,
+ "averageApexExecutionNano": 61531977,
+ "shortestApexExecutionNano": 12456832,
+ "longestApexExecutionNano": 127493170
+ },
+ {
+ "batchNumber": 3952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149945322,
+ "shortestRoundTripNano": 54475874,
+ "longestRoundTripNano": 175369727,
+ "averageApexExecutionNano": 54664952,
+ "shortestApexExecutionNano": 7453387,
+ "longestApexExecutionNano": 128935585
+ },
+ {
+ "batchNumber": 3953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135667362,
+ "shortestRoundTripNano": 73709581,
+ "longestRoundTripNano": 170032722,
+ "averageApexExecutionNano": 71300495,
+ "shortestApexExecutionNano": 6999942,
+ "longestApexExecutionNano": 138313346
+ },
+ {
+ "batchNumber": 3954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 243408773,
+ "shortestRoundTripNano": 55345675,
+ "longestRoundTripNano": 292394350,
+ "averageApexExecutionNano": 120801399,
+ "shortestApexExecutionNano": 9070293,
+ "longestApexExecutionNano": 233693939
+ },
+ {
+ "batchNumber": 3955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147850406,
+ "shortestRoundTripNano": 63289602,
+ "longestRoundTripNano": 178084447,
+ "averageApexExecutionNano": 39910026,
+ "shortestApexExecutionNano": 5346047,
+ "longestApexExecutionNano": 93494791
+ },
+ {
+ "batchNumber": 3956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140294179,
+ "shortestRoundTripNano": 52952769,
+ "longestRoundTripNano": 173574993,
+ "averageApexExecutionNano": 57688425,
+ "shortestApexExecutionNano": 5177673,
+ "longestApexExecutionNano": 124053009
+ },
+ {
+ "batchNumber": 3957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161232966,
+ "shortestRoundTripNano": 65536023,
+ "longestRoundTripNano": 190322885,
+ "averageApexExecutionNano": 62967253,
+ "shortestApexExecutionNano": 12889579,
+ "longestApexExecutionNano": 142635067
+ },
+ {
+ "batchNumber": 3958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152734782,
+ "shortestRoundTripNano": 53888649,
+ "longestRoundTripNano": 181035478,
+ "averageApexExecutionNano": 77933751,
+ "shortestApexExecutionNano": 10346353,
+ "longestApexExecutionNano": 127810447
+ },
+ {
+ "batchNumber": 3959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152414519,
+ "shortestRoundTripNano": 69846025,
+ "longestRoundTripNano": 183397114,
+ "averageApexExecutionNano": 38813075,
+ "shortestApexExecutionNano": 6096160,
+ "longestApexExecutionNano": 91899405
+ },
+ {
+ "batchNumber": 3960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119250340,
+ "shortestRoundTripNano": 61641304,
+ "longestRoundTripNano": 145666960,
+ "averageApexExecutionNano": 55793853,
+ "shortestApexExecutionNano": 8143796,
+ "longestApexExecutionNano": 102094109
+ },
+ {
+ "batchNumber": 3961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141775900,
+ "shortestRoundTripNano": 40851405,
+ "longestRoundTripNano": 172598502,
+ "averageApexExecutionNano": 61634041,
+ "shortestApexExecutionNano": 4399582,
+ "longestApexExecutionNano": 114695724
+ },
+ {
+ "batchNumber": 3962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130526026,
+ "shortestRoundTripNano": 54014768,
+ "longestRoundTripNano": 163670658,
+ "averageApexExecutionNano": 45938972,
+ "shortestApexExecutionNano": 6263362,
+ "longestApexExecutionNano": 102904034
+ },
+ {
+ "batchNumber": 3963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131016427,
+ "shortestRoundTripNano": 70246653,
+ "longestRoundTripNano": 150928719,
+ "averageApexExecutionNano": 57147468,
+ "shortestApexExecutionNano": 5077298,
+ "longestApexExecutionNano": 95955425
+ },
+ {
+ "batchNumber": 3964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129368940,
+ "shortestRoundTripNano": 67193534,
+ "longestRoundTripNano": 157091018,
+ "averageApexExecutionNano": 60364146,
+ "shortestApexExecutionNano": 8162887,
+ "longestApexExecutionNano": 103924000
+ },
+ {
+ "batchNumber": 3965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141646644,
+ "shortestRoundTripNano": 62048077,
+ "longestRoundTripNano": 170116201,
+ "averageApexExecutionNano": 64936146,
+ "shortestApexExecutionNano": 9935498,
+ "longestApexExecutionNano": 123710303
+ },
+ {
+ "batchNumber": 3966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127061851,
+ "shortestRoundTripNano": 47242623,
+ "longestRoundTripNano": 156961356,
+ "averageApexExecutionNano": 54545502,
+ "shortestApexExecutionNano": 7276183,
+ "longestApexExecutionNano": 119242459
+ },
+ {
+ "batchNumber": 3967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170026242,
+ "shortestRoundTripNano": 68399511,
+ "longestRoundTripNano": 202836148,
+ "averageApexExecutionNano": 75801571,
+ "shortestApexExecutionNano": 12734093,
+ "longestApexExecutionNano": 143576962
+ },
+ {
+ "batchNumber": 3968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36214",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154284984,
+ "shortestRoundTripNano": 50804615,
+ "longestRoundTripNano": 182138100,
+ "averageApexExecutionNano": 59333053,
+ "shortestApexExecutionNano": 9783930,
+ "longestApexExecutionNano": 120386116
+ },
+ {
+ "batchNumber": 3969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132403445,
+ "shortestRoundTripNano": 57528201,
+ "longestRoundTripNano": 159516280,
+ "averageApexExecutionNano": 55416754,
+ "shortestApexExecutionNano": 12821605,
+ "longestApexExecutionNano": 105352167
+ },
+ {
+ "batchNumber": 3970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138863035,
+ "shortestRoundTripNano": 61424433,
+ "longestRoundTripNano": 171817468,
+ "averageApexExecutionNano": 49806598,
+ "shortestApexExecutionNano": 8695879,
+ "longestApexExecutionNano": 118795141
+ },
+ {
+ "batchNumber": 3971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136730123,
+ "shortestRoundTripNano": 56473061,
+ "longestRoundTripNano": 166664758,
+ "averageApexExecutionNano": 54706745,
+ "shortestApexExecutionNano": 5072948,
+ "longestApexExecutionNano": 109376001
+ },
+ {
+ "batchNumber": 3972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139253108,
+ "shortestRoundTripNano": 68575390,
+ "longestRoundTripNano": 163913790,
+ "averageApexExecutionNano": 65999623,
+ "shortestApexExecutionNano": 10144470,
+ "longestApexExecutionNano": 113581259
+ },
+ {
+ "batchNumber": 3973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143848644,
+ "shortestRoundTripNano": 85163024,
+ "longestRoundTripNano": 178269181,
+ "averageApexExecutionNano": 64537263,
+ "shortestApexExecutionNano": 7708823,
+ "longestApexExecutionNano": 151898220
+ },
+ {
+ "batchNumber": 3974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151232394,
+ "shortestRoundTripNano": 55997702,
+ "longestRoundTripNano": 177112007,
+ "averageApexExecutionNano": 79669638,
+ "shortestApexExecutionNano": 9394763,
+ "longestApexExecutionNano": 136107806
+ },
+ {
+ "batchNumber": 3975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134458079,
+ "shortestRoundTripNano": 54653716,
+ "longestRoundTripNano": 160627959,
+ "averageApexExecutionNano": 50968551,
+ "shortestApexExecutionNano": 7301191,
+ "longestApexExecutionNano": 109678724
+ },
+ {
+ "batchNumber": 3976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124641169,
+ "shortestRoundTripNano": 60357787,
+ "longestRoundTripNano": 154104324,
+ "averageApexExecutionNano": 49128421,
+ "shortestApexExecutionNano": 12220456,
+ "longestApexExecutionNano": 103774284
+ },
+ {
+ "batchNumber": 3977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114411563,
+ "shortestRoundTripNano": 59559068,
+ "longestRoundTripNano": 144478411,
+ "averageApexExecutionNano": 42011641,
+ "shortestApexExecutionNano": 5511338,
+ "longestApexExecutionNano": 107144189
+ },
+ {
+ "batchNumber": 3978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157859001,
+ "shortestRoundTripNano": 61696448,
+ "longestRoundTripNano": 193653204,
+ "averageApexExecutionNano": 67186787,
+ "shortestApexExecutionNano": 10239435,
+ "longestApexExecutionNano": 132758688
+ },
+ {
+ "batchNumber": 3979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144023981,
+ "shortestRoundTripNano": 67511019,
+ "longestRoundTripNano": 173837571,
+ "averageApexExecutionNano": 64915741,
+ "shortestApexExecutionNano": 6336175,
+ "longestApexExecutionNano": 128473086
+ },
+ {
+ "batchNumber": 3980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148990096,
+ "shortestRoundTripNano": 72929843,
+ "longestRoundTripNano": 175436781,
+ "averageApexExecutionNano": 72984426,
+ "shortestApexExecutionNano": 6900657,
+ "longestApexExecutionNano": 138077520
+ },
+ {
+ "batchNumber": 3981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155521517,
+ "shortestRoundTripNano": 44974185,
+ "longestRoundTripNano": 186078462,
+ "averageApexExecutionNano": 67079083,
+ "shortestApexExecutionNano": 13276057,
+ "longestApexExecutionNano": 134513647
+ },
+ {
+ "batchNumber": 3982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153431912,
+ "shortestRoundTripNano": 49598876,
+ "longestRoundTripNano": 183944617,
+ "averageApexExecutionNano": 44934999,
+ "shortestApexExecutionNano": 8250916,
+ "longestApexExecutionNano": 128120177
+ },
+ {
+ "batchNumber": 3983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162942059,
+ "shortestRoundTripNano": 66362326,
+ "longestRoundTripNano": 193985504,
+ "averageApexExecutionNano": 54329691,
+ "shortestApexExecutionNano": 7041627,
+ "longestApexExecutionNano": 114113628
+ },
+ {
+ "batchNumber": 3984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154714413,
+ "shortestRoundTripNano": 72469153,
+ "longestRoundTripNano": 184902039,
+ "averageApexExecutionNano": 77219608,
+ "shortestApexExecutionNano": 11259156,
+ "longestApexExecutionNano": 136510148
+ },
+ {
+ "batchNumber": 3985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36220",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141068965,
+ "shortestRoundTripNano": 35809482,
+ "longestRoundTripNano": 168874066,
+ "averageApexExecutionNano": 51311449,
+ "shortestApexExecutionNano": 6461839,
+ "longestApexExecutionNano": 123640037
+ },
+ {
+ "batchNumber": 3986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36220",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144032459,
+ "shortestRoundTripNano": 68697285,
+ "longestRoundTripNano": 175458629,
+ "averageApexExecutionNano": 56528732,
+ "shortestApexExecutionNano": 8400640,
+ "longestApexExecutionNano": 105235998
+ },
+ {
+ "batchNumber": 3987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36220",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142494146,
+ "shortestRoundTripNano": 28768068,
+ "longestRoundTripNano": 176392882,
+ "averageApexExecutionNano": 60329234,
+ "shortestApexExecutionNano": 6337595,
+ "longestApexExecutionNano": 127658674
+ },
+ {
+ "batchNumber": 3988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133267262,
+ "shortestRoundTripNano": 70493163,
+ "longestRoundTripNano": 160450500,
+ "averageApexExecutionNano": 58720796,
+ "shortestApexExecutionNano": 4410785,
+ "longestApexExecutionNano": 120985168
+ },
+ {
+ "batchNumber": 3989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133879405,
+ "shortestRoundTripNano": 76934059,
+ "longestRoundTripNano": 163150267,
+ "averageApexExecutionNano": 57861815,
+ "shortestApexExecutionNano": 9489042,
+ "longestApexExecutionNano": 104837900
+ },
+ {
+ "batchNumber": 3990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147292389,
+ "shortestRoundTripNano": 42169196,
+ "longestRoundTripNano": 181589481,
+ "averageApexExecutionNano": 70838808,
+ "shortestApexExecutionNano": 7399997,
+ "longestApexExecutionNano": 132223039
+ },
+ {
+ "batchNumber": 3991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151410307,
+ "shortestRoundTripNano": 90975286,
+ "longestRoundTripNano": 179574354,
+ "averageApexExecutionNano": 68016385,
+ "shortestApexExecutionNano": 8420164,
+ "longestApexExecutionNano": 133111409
+ },
+ {
+ "batchNumber": 3992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130134338,
+ "shortestRoundTripNano": 63675573,
+ "longestRoundTripNano": 163438576,
+ "averageApexExecutionNano": 48917936,
+ "shortestApexExecutionNano": 6759621,
+ "longestApexExecutionNano": 108576462
+ },
+ {
+ "batchNumber": 3993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123963490,
+ "shortestRoundTripNano": 30453560,
+ "longestRoundTripNano": 160371835,
+ "averageApexExecutionNano": 54505822,
+ "shortestApexExecutionNano": 7724632,
+ "longestApexExecutionNano": 109170069
+ },
+ {
+ "batchNumber": 3994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145262507,
+ "shortestRoundTripNano": 83233753,
+ "longestRoundTripNano": 166608786,
+ "averageApexExecutionNano": 58849746,
+ "shortestApexExecutionNano": 5403940,
+ "longestApexExecutionNano": 123912100
+ },
+ {
+ "batchNumber": 3995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153268839,
+ "shortestRoundTripNano": 82550630,
+ "longestRoundTripNano": 180405738,
+ "averageApexExecutionNano": 59571283,
+ "shortestApexExecutionNano": 5667982,
+ "longestApexExecutionNano": 114721790
+ },
+ {
+ "batchNumber": 3996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128325036,
+ "shortestRoundTripNano": 44005936,
+ "longestRoundTripNano": 161152489,
+ "averageApexExecutionNano": 48095926,
+ "shortestApexExecutionNano": 10225434,
+ "longestApexExecutionNano": 101933875
+ },
+ {
+ "batchNumber": 3997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122166110,
+ "shortestRoundTripNano": 62862160,
+ "longestRoundTripNano": 145798522,
+ "averageApexExecutionNano": 54909080,
+ "shortestApexExecutionNano": 7509737,
+ "longestApexExecutionNano": 106996686
+ },
+ {
+ "batchNumber": 3998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147964240,
+ "shortestRoundTripNano": 56231870,
+ "longestRoundTripNano": 185064668,
+ "averageApexExecutionNano": 64500943,
+ "shortestApexExecutionNano": 5435395,
+ "longestApexExecutionNano": 120932261
+ },
+ {
+ "batchNumber": 3999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168402177,
+ "shortestRoundTripNano": 49581105,
+ "longestRoundTripNano": 197434780,
+ "averageApexExecutionNano": 71327138,
+ "shortestApexExecutionNano": 7416901,
+ "longestApexExecutionNano": 130734935
+ },
+ {
+ "batchNumber": 4000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137111873,
+ "shortestRoundTripNano": 68078711,
+ "longestRoundTripNano": 168196322,
+ "averageApexExecutionNano": 52218255,
+ "shortestApexExecutionNano": 9723396,
+ "longestApexExecutionNano": 95734593
+ },
+ {
+ "batchNumber": 4001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156665391,
+ "shortestRoundTripNano": 55206805,
+ "longestRoundTripNano": 192568511,
+ "averageApexExecutionNano": 75277428,
+ "shortestApexExecutionNano": 10017733,
+ "longestApexExecutionNano": 146094709
+ },
+ {
+ "batchNumber": 4002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164600697,
+ "shortestRoundTripNano": 64019800,
+ "longestRoundTripNano": 202998009,
+ "averageApexExecutionNano": 57666267,
+ "shortestApexExecutionNano": 12539099,
+ "longestApexExecutionNano": 114665884
+ },
+ {
+ "batchNumber": 4003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117887458,
+ "shortestRoundTripNano": 60409350,
+ "longestRoundTripNano": 145026164,
+ "averageApexExecutionNano": 58533710,
+ "shortestApexExecutionNano": 5323495,
+ "longestApexExecutionNano": 101734774
+ },
+ {
+ "batchNumber": 4004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148186232,
+ "shortestRoundTripNano": 56705959,
+ "longestRoundTripNano": 174832759,
+ "averageApexExecutionNano": 64007493,
+ "shortestApexExecutionNano": 7943989,
+ "longestApexExecutionNano": 121454422
+ },
+ {
+ "batchNumber": 4005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135333876,
+ "shortestRoundTripNano": 56780425,
+ "longestRoundTripNano": 163874394,
+ "averageApexExecutionNano": 60946471,
+ "shortestApexExecutionNano": 6577309,
+ "longestApexExecutionNano": 120049246
+ },
+ {
+ "batchNumber": 4006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144953523,
+ "shortestRoundTripNano": 82961406,
+ "longestRoundTripNano": 178345034,
+ "averageApexExecutionNano": 53699817,
+ "shortestApexExecutionNano": 9191521,
+ "longestApexExecutionNano": 116424887
+ },
+ {
+ "batchNumber": 4007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157046940,
+ "shortestRoundTripNano": 66541392,
+ "longestRoundTripNano": 178812794,
+ "averageApexExecutionNano": 69623927,
+ "shortestApexExecutionNano": 11974926,
+ "longestApexExecutionNano": 128792582
+ },
+ {
+ "batchNumber": 4008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130753006,
+ "shortestRoundTripNano": 59814667,
+ "longestRoundTripNano": 163773146,
+ "averageApexExecutionNano": 60495332,
+ "shortestApexExecutionNano": 6051043,
+ "longestApexExecutionNano": 118349661
+ },
+ {
+ "batchNumber": 4009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151494460,
+ "shortestRoundTripNano": 56256227,
+ "longestRoundTripNano": 176875282,
+ "averageApexExecutionNano": 75069989,
+ "shortestApexExecutionNano": 17607794,
+ "longestApexExecutionNano": 122995071
+ },
+ {
+ "batchNumber": 4010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146102393,
+ "shortestRoundTripNano": 62282177,
+ "longestRoundTripNano": 172481184,
+ "averageApexExecutionNano": 55049029,
+ "shortestApexExecutionNano": 8650417,
+ "longestApexExecutionNano": 115441799
+ },
+ {
+ "batchNumber": 4011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134482756,
+ "shortestRoundTripNano": 39435455,
+ "longestRoundTripNano": 166310523,
+ "averageApexExecutionNano": 59585317,
+ "shortestApexExecutionNano": 18197587,
+ "longestApexExecutionNano": 115263490
+ },
+ {
+ "batchNumber": 4012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161666048,
+ "shortestRoundTripNano": 51513399,
+ "longestRoundTripNano": 197283470,
+ "averageApexExecutionNano": 65747877,
+ "shortestApexExecutionNano": 11328292,
+ "longestApexExecutionNano": 134499226
+ },
+ {
+ "batchNumber": 4013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128120330,
+ "shortestRoundTripNano": 61683037,
+ "longestRoundTripNano": 157833142,
+ "averageApexExecutionNano": 52012215,
+ "shortestApexExecutionNano": 9512799,
+ "longestApexExecutionNano": 105095547
+ },
+ {
+ "batchNumber": 4014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143932542,
+ "shortestRoundTripNano": 58670296,
+ "longestRoundTripNano": 172894648,
+ "averageApexExecutionNano": 64621474,
+ "shortestApexExecutionNano": 19875952,
+ "longestApexExecutionNano": 114738580
+ },
+ {
+ "batchNumber": 4015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177149909,
+ "shortestRoundTripNano": 71644852,
+ "longestRoundTripNano": 206412529,
+ "averageApexExecutionNano": 67462457,
+ "shortestApexExecutionNano": 14423957,
+ "longestApexExecutionNano": 142322328
+ },
+ {
+ "batchNumber": 4016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128684151,
+ "shortestRoundTripNano": 38566788,
+ "longestRoundTripNano": 155449010,
+ "averageApexExecutionNano": 53756192,
+ "shortestApexExecutionNano": 5833173,
+ "longestApexExecutionNano": 103928539
+ },
+ {
+ "batchNumber": 4017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147885211,
+ "shortestRoundTripNano": 67968550,
+ "longestRoundTripNano": 184163275,
+ "averageApexExecutionNano": 60802434,
+ "shortestApexExecutionNano": 11667693,
+ "longestApexExecutionNano": 122724359
+ },
+ {
+ "batchNumber": 4018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129098548,
+ "shortestRoundTripNano": 64921254,
+ "longestRoundTripNano": 158492356,
+ "averageApexExecutionNano": 62912764,
+ "shortestApexExecutionNano": 5465310,
+ "longestApexExecutionNano": 109493940
+ },
+ {
+ "batchNumber": 4019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142073672,
+ "shortestRoundTripNano": 60634358,
+ "longestRoundTripNano": 171760810,
+ "averageApexExecutionNano": 52832183,
+ "shortestApexExecutionNano": 9527308,
+ "longestApexExecutionNano": 97387428
+ },
+ {
+ "batchNumber": 4020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131570139,
+ "shortestRoundTripNano": 43322605,
+ "longestRoundTripNano": 159694385,
+ "averageApexExecutionNano": 58738039,
+ "shortestApexExecutionNano": 9954368,
+ "longestApexExecutionNano": 122198739
+ },
+ {
+ "batchNumber": 4021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139958776,
+ "shortestRoundTripNano": 64107935,
+ "longestRoundTripNano": 166172447,
+ "averageApexExecutionNano": 55540512,
+ "shortestApexExecutionNano": 6716869,
+ "longestApexExecutionNano": 119888044
+ },
+ {
+ "batchNumber": 4022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36232",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171155675,
+ "shortestRoundTripNano": 55543145,
+ "longestRoundTripNano": 205930792,
+ "averageApexExecutionNano": 76024783,
+ "shortestApexExecutionNano": 21883622,
+ "longestApexExecutionNano": 130741659
+ },
+ {
+ "batchNumber": 4023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129773323,
+ "shortestRoundTripNano": 44470597,
+ "longestRoundTripNano": 159520791,
+ "averageApexExecutionNano": 54066963,
+ "shortestApexExecutionNano": 6974272,
+ "longestApexExecutionNano": 110794787
+ },
+ {
+ "batchNumber": 4024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153400250,
+ "shortestRoundTripNano": 64754776,
+ "longestRoundTripNano": 186325262,
+ "averageApexExecutionNano": 76492260,
+ "shortestApexExecutionNano": 12583932,
+ "longestApexExecutionNano": 138523697
+ },
+ {
+ "batchNumber": 4025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142888821,
+ "shortestRoundTripNano": 61951475,
+ "longestRoundTripNano": 170543957,
+ "averageApexExecutionNano": 47527286,
+ "shortestApexExecutionNano": 9131751,
+ "longestApexExecutionNano": 106646699
+ },
+ {
+ "batchNumber": 4026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36238",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140281342,
+ "shortestRoundTripNano": 63843735,
+ "longestRoundTripNano": 168224324,
+ "averageApexExecutionNano": 55116578,
+ "shortestApexExecutionNano": 6043526,
+ "longestApexExecutionNano": 111820010
+ },
+ {
+ "batchNumber": 4027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36238",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136204814,
+ "shortestRoundTripNano": 50311556,
+ "longestRoundTripNano": 161480016,
+ "averageApexExecutionNano": 53696537,
+ "shortestApexExecutionNano": 11045596,
+ "longestApexExecutionNano": 113590978
+ },
+ {
+ "batchNumber": 4028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36238",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154422271,
+ "shortestRoundTripNano": 62957065,
+ "longestRoundTripNano": 186852754,
+ "averageApexExecutionNano": 69915183,
+ "shortestApexExecutionNano": 24420658,
+ "longestApexExecutionNano": 136451337
+ },
+ {
+ "batchNumber": 4029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143097059,
+ "shortestRoundTripNano": 62859190,
+ "longestRoundTripNano": 172776771,
+ "averageApexExecutionNano": 61961733,
+ "shortestApexExecutionNano": 11793038,
+ "longestApexExecutionNano": 126887631
+ },
+ {
+ "batchNumber": 4030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134983358,
+ "shortestRoundTripNano": 38308537,
+ "longestRoundTripNano": 163469936,
+ "averageApexExecutionNano": 55518077,
+ "shortestApexExecutionNano": 11730761,
+ "longestApexExecutionNano": 101610863
+ },
+ {
+ "batchNumber": 4031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149130012,
+ "shortestRoundTripNano": 57774008,
+ "longestRoundTripNano": 184473788,
+ "averageApexExecutionNano": 65485550,
+ "shortestApexExecutionNano": 5819058,
+ "longestApexExecutionNano": 136217132
+ },
+ {
+ "batchNumber": 4032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134893628,
+ "shortestRoundTripNano": 70672688,
+ "longestRoundTripNano": 163862551,
+ "averageApexExecutionNano": 62626178,
+ "shortestApexExecutionNano": 10637579,
+ "longestApexExecutionNano": 114355199
+ },
+ {
+ "batchNumber": 4033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191898444,
+ "shortestRoundTripNano": 57103127,
+ "longestRoundTripNano": 218006157,
+ "averageApexExecutionNano": 97533680,
+ "shortestApexExecutionNano": 6699294,
+ "longestApexExecutionNano": 180625662
+ },
+ {
+ "batchNumber": 4034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133958965,
+ "shortestRoundTripNano": 49194345,
+ "longestRoundTripNano": 162164226,
+ "averageApexExecutionNano": 46478328,
+ "shortestApexExecutionNano": 5901082,
+ "longestApexExecutionNano": 102871836
+ },
+ {
+ "batchNumber": 4035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133413492,
+ "shortestRoundTripNano": 51680588,
+ "longestRoundTripNano": 158132852,
+ "averageApexExecutionNano": 59542047,
+ "shortestApexExecutionNano": 7276952,
+ "longestApexExecutionNano": 114867320
+ },
+ {
+ "batchNumber": 4036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142953227,
+ "shortestRoundTripNano": 65565229,
+ "longestRoundTripNano": 173637390,
+ "averageApexExecutionNano": 46574316,
+ "shortestApexExecutionNano": 7281094,
+ "longestApexExecutionNano": 117352706
+ },
+ {
+ "batchNumber": 4037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138981579,
+ "shortestRoundTripNano": 45025920,
+ "longestRoundTripNano": 169553224,
+ "averageApexExecutionNano": 60390321,
+ "shortestApexExecutionNano": 8051463,
+ "longestApexExecutionNano": 117602784
+ },
+ {
+ "batchNumber": 4038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147291125,
+ "shortestRoundTripNano": 60422178,
+ "longestRoundTripNano": 178825307,
+ "averageApexExecutionNano": 54680050,
+ "shortestApexExecutionNano": 8888617,
+ "longestApexExecutionNano": 119973874
+ },
+ {
+ "batchNumber": 4039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163717539,
+ "shortestRoundTripNano": 66743610,
+ "longestRoundTripNano": 192541104,
+ "averageApexExecutionNano": 83429736,
+ "shortestApexExecutionNano": 10631583,
+ "longestApexExecutionNano": 141702830
+ },
+ {
+ "batchNumber": 4040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148746806,
+ "shortestRoundTripNano": 58666160,
+ "longestRoundTripNano": 178641691,
+ "averageApexExecutionNano": 59381688,
+ "shortestApexExecutionNano": 8692377,
+ "longestApexExecutionNano": 111939633
+ },
+ {
+ "batchNumber": 4041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145731583,
+ "shortestRoundTripNano": 29400932,
+ "longestRoundTripNano": 175889067,
+ "averageApexExecutionNano": 66519431,
+ "shortestApexExecutionNano": 10552379,
+ "longestApexExecutionNano": 131893294
+ },
+ {
+ "batchNumber": 4042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141495524,
+ "shortestRoundTripNano": 82547968,
+ "longestRoundTripNano": 170063171,
+ "averageApexExecutionNano": 50786743,
+ "shortestApexExecutionNano": 8143251,
+ "longestApexExecutionNano": 120877564
+ },
+ {
+ "batchNumber": 4043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168883464,
+ "shortestRoundTripNano": 91272253,
+ "longestRoundTripNano": 198322274,
+ "averageApexExecutionNano": 68562960,
+ "shortestApexExecutionNano": 14919101,
+ "longestApexExecutionNano": 132394657
+ },
+ {
+ "batchNumber": 4044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139405907,
+ "shortestRoundTripNano": 64935497,
+ "longestRoundTripNano": 168703483,
+ "averageApexExecutionNano": 59119115,
+ "shortestApexExecutionNano": 5450215,
+ "longestApexExecutionNano": 106676792
+ },
+ {
+ "batchNumber": 4045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143800786,
+ "shortestRoundTripNano": 57177253,
+ "longestRoundTripNano": 170401956,
+ "averageApexExecutionNano": 80465560,
+ "shortestApexExecutionNano": 8706310,
+ "longestApexExecutionNano": 123940543
+ },
+ {
+ "batchNumber": 4046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147717839,
+ "shortestRoundTripNano": 61696114,
+ "longestRoundTripNano": 173475668,
+ "averageApexExecutionNano": 54697826,
+ "shortestApexExecutionNano": 6994232,
+ "longestApexExecutionNano": 132748177
+ },
+ {
+ "batchNumber": 4047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181052242,
+ "shortestRoundTripNano": 83782331,
+ "longestRoundTripNano": 213739945,
+ "averageApexExecutionNano": 62814924,
+ "shortestApexExecutionNano": 5761684,
+ "longestApexExecutionNano": 114537267
+ },
+ {
+ "batchNumber": 4048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166909929,
+ "shortestRoundTripNano": 48535858,
+ "longestRoundTripNano": 196843033,
+ "averageApexExecutionNano": 80439058,
+ "shortestApexExecutionNano": 10078279,
+ "longestApexExecutionNano": 140224089
+ },
+ {
+ "batchNumber": 4049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134752221,
+ "shortestRoundTripNano": 67696058,
+ "longestRoundTripNano": 161621125,
+ "averageApexExecutionNano": 58266292,
+ "shortestApexExecutionNano": 5495829,
+ "longestApexExecutionNano": 116337949
+ },
+ {
+ "batchNumber": 4050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151413736,
+ "shortestRoundTripNano": 56405780,
+ "longestRoundTripNano": 181968012,
+ "averageApexExecutionNano": 46703425,
+ "shortestApexExecutionNano": 6015370,
+ "longestApexExecutionNano": 142786673
+ },
+ {
+ "batchNumber": 4051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170719271,
+ "shortestRoundTripNano": 94100407,
+ "longestRoundTripNano": 217210806,
+ "averageApexExecutionNano": 82601926,
+ "shortestApexExecutionNano": 9467867,
+ "longestApexExecutionNano": 134949645
+ },
+ {
+ "batchNumber": 4052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151573273,
+ "shortestRoundTripNano": 93760768,
+ "longestRoundTripNano": 176834219,
+ "averageApexExecutionNano": 70958963,
+ "shortestApexExecutionNano": 10547271,
+ "longestApexExecutionNano": 126039716
+ },
+ {
+ "batchNumber": 4053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155398947,
+ "shortestRoundTripNano": 82606464,
+ "longestRoundTripNano": 181609770,
+ "averageApexExecutionNano": 71936634,
+ "shortestApexExecutionNano": 15910831,
+ "longestApexExecutionNano": 124934624
+ },
+ {
+ "batchNumber": 4054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149572642,
+ "shortestRoundTripNano": 55134804,
+ "longestRoundTripNano": 178612547,
+ "averageApexExecutionNano": 60904473,
+ "shortestApexExecutionNano": 6433900,
+ "longestApexExecutionNano": 121408853
+ },
+ {
+ "batchNumber": 4055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36248",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155374987,
+ "shortestRoundTripNano": 55190850,
+ "longestRoundTripNano": 195013745,
+ "averageApexExecutionNano": 56909746,
+ "shortestApexExecutionNano": 8033139,
+ "longestApexExecutionNano": 131147153
+ },
+ {
+ "batchNumber": 4056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142300754,
+ "shortestRoundTripNano": 55161387,
+ "longestRoundTripNano": 172130083,
+ "averageApexExecutionNano": 73567443,
+ "shortestApexExecutionNano": 10247925,
+ "longestApexExecutionNano": 132825879
+ },
+ {
+ "batchNumber": 4057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142471892,
+ "shortestRoundTripNano": 74876533,
+ "longestRoundTripNano": 170897893,
+ "averageApexExecutionNano": 48267994,
+ "shortestApexExecutionNano": 10437058,
+ "longestApexExecutionNano": 111624878
+ },
+ {
+ "batchNumber": 4058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159002372,
+ "shortestRoundTripNano": 54916151,
+ "longestRoundTripNano": 183189225,
+ "averageApexExecutionNano": 61659234,
+ "shortestApexExecutionNano": 6420742,
+ "longestApexExecutionNano": 118136911
+ },
+ {
+ "batchNumber": 4059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151708906,
+ "shortestRoundTripNano": 69538563,
+ "longestRoundTripNano": 192292989,
+ "averageApexExecutionNano": 69133628,
+ "shortestApexExecutionNano": 10465037,
+ "longestApexExecutionNano": 139795499
+ },
+ {
+ "batchNumber": 4060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125309368,
+ "shortestRoundTripNano": 42073022,
+ "longestRoundTripNano": 153777255,
+ "averageApexExecutionNano": 61421698,
+ "shortestApexExecutionNano": 11483205,
+ "longestApexExecutionNano": 109054640
+ },
+ {
+ "batchNumber": 4061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134195248,
+ "shortestRoundTripNano": 70527518,
+ "longestRoundTripNano": 164885001,
+ "averageApexExecutionNano": 51699374,
+ "shortestApexExecutionNano": 14136510,
+ "longestApexExecutionNano": 111741632
+ },
+ {
+ "batchNumber": 4062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163209956,
+ "shortestRoundTripNano": 77905015,
+ "longestRoundTripNano": 197992876,
+ "averageApexExecutionNano": 61166371,
+ "shortestApexExecutionNano": 9045641,
+ "longestApexExecutionNano": 130067011
+ },
+ {
+ "batchNumber": 4063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174397221,
+ "shortestRoundTripNano": 75953068,
+ "longestRoundTripNano": 202948292,
+ "averageApexExecutionNano": 75256239,
+ "shortestApexExecutionNano": 7655278,
+ "longestApexExecutionNano": 145075061
+ },
+ {
+ "batchNumber": 4064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170138041,
+ "shortestRoundTripNano": 76841760,
+ "longestRoundTripNano": 201868302,
+ "averageApexExecutionNano": 82231670,
+ "shortestApexExecutionNano": 11555910,
+ "longestApexExecutionNano": 143973826
+ },
+ {
+ "batchNumber": 4065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145619057,
+ "shortestRoundTripNano": 63324799,
+ "longestRoundTripNano": 172080295,
+ "averageApexExecutionNano": 61497360,
+ "shortestApexExecutionNano": 6302538,
+ "longestApexExecutionNano": 124103886
+ },
+ {
+ "batchNumber": 4066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127588904,
+ "shortestRoundTripNano": 60455577,
+ "longestRoundTripNano": 156794477,
+ "averageApexExecutionNano": 60910573,
+ "shortestApexExecutionNano": 7433215,
+ "longestApexExecutionNano": 115228432
+ },
+ {
+ "batchNumber": 4067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134377611,
+ "shortestRoundTripNano": 52262641,
+ "longestRoundTripNano": 162950410,
+ "averageApexExecutionNano": 43146286,
+ "shortestApexExecutionNano": 6908055,
+ "longestApexExecutionNano": 77823162
+ },
+ {
+ "batchNumber": 4068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127985549,
+ "shortestRoundTripNano": 66344097,
+ "longestRoundTripNano": 154928756,
+ "averageApexExecutionNano": 63839140,
+ "shortestApexExecutionNano": 18994937,
+ "longestApexExecutionNano": 117444209
+ },
+ {
+ "batchNumber": 4069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184429822,
+ "shortestRoundTripNano": 93640990,
+ "longestRoundTripNano": 212154357,
+ "averageApexExecutionNano": 77277663,
+ "shortestApexExecutionNano": 12478591,
+ "longestApexExecutionNano": 160109790
+ },
+ {
+ "batchNumber": 4070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147318620,
+ "shortestRoundTripNano": 46178884,
+ "longestRoundTripNano": 175700081,
+ "averageApexExecutionNano": 51113160,
+ "shortestApexExecutionNano": 8105027,
+ "longestApexExecutionNano": 128346022
+ },
+ {
+ "batchNumber": 4071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138463580,
+ "shortestRoundTripNano": 33205286,
+ "longestRoundTripNano": 175160672,
+ "averageApexExecutionNano": 63902428,
+ "shortestApexExecutionNano": 12328035,
+ "longestApexExecutionNano": 123887562
+ },
+ {
+ "batchNumber": 4072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155288498,
+ "shortestRoundTripNano": 66522633,
+ "longestRoundTripNano": 193634646,
+ "averageApexExecutionNano": 64836027,
+ "shortestApexExecutionNano": 9751817,
+ "longestApexExecutionNano": 153180136
+ },
+ {
+ "batchNumber": 4073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132689657,
+ "shortestRoundTripNano": 49958132,
+ "longestRoundTripNano": 164959374,
+ "averageApexExecutionNano": 58443600,
+ "shortestApexExecutionNano": 9615689,
+ "longestApexExecutionNano": 116939644
+ },
+ {
+ "batchNumber": 4074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134470697,
+ "shortestRoundTripNano": 69658310,
+ "longestRoundTripNano": 159969336,
+ "averageApexExecutionNano": 54545408,
+ "shortestApexExecutionNano": 6967510,
+ "longestApexExecutionNano": 113590427
+ },
+ {
+ "batchNumber": 4075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143415905,
+ "shortestRoundTripNano": 66822838,
+ "longestRoundTripNano": 181022502,
+ "averageApexExecutionNano": 54847071,
+ "shortestApexExecutionNano": 6008927,
+ "longestApexExecutionNano": 117295058
+ },
+ {
+ "batchNumber": 4076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135133704,
+ "shortestRoundTripNano": 63480383,
+ "longestRoundTripNano": 163247120,
+ "averageApexExecutionNano": 54827285,
+ "shortestApexExecutionNano": 8235378,
+ "longestApexExecutionNano": 115755107
+ },
+ {
+ "batchNumber": 4077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131705894,
+ "shortestRoundTripNano": 71213865,
+ "longestRoundTripNano": 161946828,
+ "averageApexExecutionNano": 62389847,
+ "shortestApexExecutionNano": 6093815,
+ "longestApexExecutionNano": 116390033
+ },
+ {
+ "batchNumber": 4078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171949426,
+ "shortestRoundTripNano": 27272679,
+ "longestRoundTripNano": 202642326,
+ "averageApexExecutionNano": 61748585,
+ "shortestApexExecutionNano": 6568675,
+ "longestApexExecutionNano": 124193520
+ },
+ {
+ "batchNumber": 4079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154196838,
+ "shortestRoundTripNano": 84059084,
+ "longestRoundTripNano": 181727205,
+ "averageApexExecutionNano": 67280474,
+ "shortestApexExecutionNano": 17489610,
+ "longestApexExecutionNano": 111695516
+ },
+ {
+ "batchNumber": 4080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145703019,
+ "shortestRoundTripNano": 64469067,
+ "longestRoundTripNano": 175998993,
+ "averageApexExecutionNano": 62525585,
+ "shortestApexExecutionNano": 9901654,
+ "longestApexExecutionNano": 121817363
+ },
+ {
+ "batchNumber": 4081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188396871,
+ "shortestRoundTripNano": 88418126,
+ "longestRoundTripNano": 215802327,
+ "averageApexExecutionNano": 78715152,
+ "shortestApexExecutionNano": 14522569,
+ "longestApexExecutionNano": 152471123
+ },
+ {
+ "batchNumber": 4082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163834684,
+ "shortestRoundTripNano": 55171237,
+ "longestRoundTripNano": 200030216,
+ "averageApexExecutionNano": 74379519,
+ "shortestApexExecutionNano": 8513629,
+ "longestApexExecutionNano": 132698452
+ },
+ {
+ "batchNumber": 4083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138456619,
+ "shortestRoundTripNano": 49151724,
+ "longestRoundTripNano": 165264004,
+ "averageApexExecutionNano": 73698663,
+ "shortestApexExecutionNano": 9758081,
+ "longestApexExecutionNano": 140798164
+ },
+ {
+ "batchNumber": 4084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168273943,
+ "shortestRoundTripNano": 79670339,
+ "longestRoundTripNano": 197024344,
+ "averageApexExecutionNano": 58891056,
+ "shortestApexExecutionNano": 8112777,
+ "longestApexExecutionNano": 134473723
+ },
+ {
+ "batchNumber": 4085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131399156,
+ "shortestRoundTripNano": 59260028,
+ "longestRoundTripNano": 159181788,
+ "averageApexExecutionNano": 57524611,
+ "shortestApexExecutionNano": 7236657,
+ "longestApexExecutionNano": 111684587
+ },
+ {
+ "batchNumber": 4086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 231075793,
+ "shortestRoundTripNano": 48513710,
+ "longestRoundTripNano": 272626105,
+ "averageApexExecutionNano": 101138816,
+ "shortestApexExecutionNano": 5656044,
+ "longestApexExecutionNano": 225561217
+ },
+ {
+ "batchNumber": 4087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146910516,
+ "shortestRoundTripNano": 85979802,
+ "longestRoundTripNano": 170929292,
+ "averageApexExecutionNano": 49200678,
+ "shortestApexExecutionNano": 6284451,
+ "longestApexExecutionNano": 117457021
+ },
+ {
+ "batchNumber": 4088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140780772,
+ "shortestRoundTripNano": 82809322,
+ "longestRoundTripNano": 166989566,
+ "averageApexExecutionNano": 72405613,
+ "shortestApexExecutionNano": 9240212,
+ "longestApexExecutionNano": 115569290
+ },
+ {
+ "batchNumber": 4089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151295516,
+ "shortestRoundTripNano": 81080362,
+ "longestRoundTripNano": 180694444,
+ "averageApexExecutionNano": 58228301,
+ "shortestApexExecutionNano": 7699216,
+ "longestApexExecutionNano": 128472012
+ },
+ {
+ "batchNumber": 4090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163224712,
+ "shortestRoundTripNano": 69488384,
+ "longestRoundTripNano": 187598507,
+ "averageApexExecutionNano": 83659721,
+ "shortestApexExecutionNano": 7036674,
+ "longestApexExecutionNano": 144026261
+ },
+ {
+ "batchNumber": 4091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36264",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146898597,
+ "shortestRoundTripNano": 55454228,
+ "longestRoundTripNano": 179336289,
+ "averageApexExecutionNano": 51783029,
+ "shortestApexExecutionNano": 7215311,
+ "longestApexExecutionNano": 123537351
+ },
+ {
+ "batchNumber": 4092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131573789,
+ "shortestRoundTripNano": 66263426,
+ "longestRoundTripNano": 158536696,
+ "averageApexExecutionNano": 52900419,
+ "shortestApexExecutionNano": 7513682,
+ "longestApexExecutionNano": 120540392
+ },
+ {
+ "batchNumber": 4093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36262",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134939409,
+ "shortestRoundTripNano": 58772024,
+ "longestRoundTripNano": 164587121,
+ "averageApexExecutionNano": 43137560,
+ "shortestApexExecutionNano": 5137172,
+ "longestApexExecutionNano": 109890499
+ },
+ {
+ "batchNumber": 4094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36264",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148066854,
+ "shortestRoundTripNano": 67720252,
+ "longestRoundTripNano": 173811370,
+ "averageApexExecutionNano": 60191339,
+ "shortestApexExecutionNano": 9816266,
+ "longestApexExecutionNano": 114371726
+ },
+ {
+ "batchNumber": 4095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36264",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122155353,
+ "shortestRoundTripNano": 49299889,
+ "longestRoundTripNano": 149163801,
+ "averageApexExecutionNano": 48640337,
+ "shortestApexExecutionNano": 6728232,
+ "longestApexExecutionNano": 108147473
+ },
+ {
+ "batchNumber": 4096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36264",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148221293,
+ "shortestRoundTripNano": 63019451,
+ "longestRoundTripNano": 213022607,
+ "averageApexExecutionNano": 62334976,
+ "shortestApexExecutionNano": 7763078,
+ "longestApexExecutionNano": 134395896
+ },
+ {
+ "batchNumber": 4097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152887853,
+ "shortestRoundTripNano": 59566672,
+ "longestRoundTripNano": 187822040,
+ "averageApexExecutionNano": 70250482,
+ "shortestApexExecutionNano": 8251376,
+ "longestApexExecutionNano": 129478214
+ },
+ {
+ "batchNumber": 4098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142243546,
+ "shortestRoundTripNano": 63447375,
+ "longestRoundTripNano": 166977145,
+ "averageApexExecutionNano": 55454250,
+ "shortestApexExecutionNano": 9021153,
+ "longestApexExecutionNano": 103865297
+ },
+ {
+ "batchNumber": 4099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152534307,
+ "shortestRoundTripNano": 80826797,
+ "longestRoundTripNano": 180141737,
+ "averageApexExecutionNano": 60177813,
+ "shortestApexExecutionNano": 8476836,
+ "longestApexExecutionNano": 125904589
+ },
+ {
+ "batchNumber": 4100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141282329,
+ "shortestRoundTripNano": 63177140,
+ "longestRoundTripNano": 179796189,
+ "averageApexExecutionNano": 59882201,
+ "shortestApexExecutionNano": 9841286,
+ "longestApexExecutionNano": 129748229
+ },
+ {
+ "batchNumber": 4101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151199368,
+ "shortestRoundTripNano": 20169907,
+ "longestRoundTripNano": 193539165,
+ "averageApexExecutionNano": 41794160,
+ "shortestApexExecutionNano": 6114282,
+ "longestApexExecutionNano": 116990080
+ },
+ {
+ "batchNumber": 4102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36268",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156813291,
+ "shortestRoundTripNano": 41941230,
+ "longestRoundTripNano": 186244491,
+ "averageApexExecutionNano": 61779460,
+ "shortestApexExecutionNano": 9643354,
+ "longestApexExecutionNano": 122620233
+ },
+ {
+ "batchNumber": 4103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36268",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166601371,
+ "shortestRoundTripNano": 72900335,
+ "longestRoundTripNano": 200838066,
+ "averageApexExecutionNano": 61485034,
+ "shortestApexExecutionNano": 8066013,
+ "longestApexExecutionNano": 125522223
+ },
+ {
+ "batchNumber": 4104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158901533,
+ "shortestRoundTripNano": 76249563,
+ "longestRoundTripNano": 183214128,
+ "averageApexExecutionNano": 67145422,
+ "shortestApexExecutionNano": 9167949,
+ "longestApexExecutionNano": 119905451
+ },
+ {
+ "batchNumber": 4105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170394049,
+ "shortestRoundTripNano": 87073596,
+ "longestRoundTripNano": 204623967,
+ "averageApexExecutionNano": 80685825,
+ "shortestApexExecutionNano": 12114116,
+ "longestApexExecutionNano": 146472605
+ },
+ {
+ "batchNumber": 4106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128276827,
+ "shortestRoundTripNano": 57842106,
+ "longestRoundTripNano": 164919496,
+ "averageApexExecutionNano": 49807279,
+ "shortestApexExecutionNano": 6245755,
+ "longestApexExecutionNano": 129988841
+ },
+ {
+ "batchNumber": 4107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144720019,
+ "shortestRoundTripNano": 87797732,
+ "longestRoundTripNano": 169721346,
+ "averageApexExecutionNano": 66817669,
+ "shortestApexExecutionNano": 6671731,
+ "longestApexExecutionNano": 119933831
+ },
+ {
+ "batchNumber": 4108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156074024,
+ "shortestRoundTripNano": 55463589,
+ "longestRoundTripNano": 190416881,
+ "averageApexExecutionNano": 69707971,
+ "shortestApexExecutionNano": 7915915,
+ "longestApexExecutionNano": 135681464
+ },
+ {
+ "batchNumber": 4109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159071876,
+ "shortestRoundTripNano": 90961043,
+ "longestRoundTripNano": 192186442,
+ "averageApexExecutionNano": 79202623,
+ "shortestApexExecutionNano": 8768081,
+ "longestApexExecutionNano": 139848690
+ },
+ {
+ "batchNumber": 4110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124115513,
+ "shortestRoundTripNano": 37509901,
+ "longestRoundTripNano": 147389776,
+ "averageApexExecutionNano": 49809185,
+ "shortestApexExecutionNano": 9380849,
+ "longestApexExecutionNano": 93575673
+ },
+ {
+ "batchNumber": 4111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36266",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129617680,
+ "shortestRoundTripNano": 65802127,
+ "longestRoundTripNano": 164165597,
+ "averageApexExecutionNano": 57059984,
+ "shortestApexExecutionNano": 13575489,
+ "longestApexExecutionNano": 111821011
+ },
+ {
+ "batchNumber": 4112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128866898,
+ "shortestRoundTripNano": 76636417,
+ "longestRoundTripNano": 154911382,
+ "averageApexExecutionNano": 54362376,
+ "shortestApexExecutionNano": 13516530,
+ "longestApexExecutionNano": 101494839
+ },
+ {
+ "batchNumber": 4113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163543368,
+ "shortestRoundTripNano": 99117474,
+ "longestRoundTripNano": 190504613,
+ "averageApexExecutionNano": 70933088,
+ "shortestApexExecutionNano": 8155581,
+ "longestApexExecutionNano": 129473366
+ },
+ {
+ "batchNumber": 4114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149239596,
+ "shortestRoundTripNano": 78116187,
+ "longestRoundTripNano": 178397584,
+ "averageApexExecutionNano": 75128207,
+ "shortestApexExecutionNano": 6554532,
+ "longestApexExecutionNano": 137398260
+ },
+ {
+ "batchNumber": 4115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150910483,
+ "shortestRoundTripNano": 86353928,
+ "longestRoundTripNano": 176380156,
+ "averageApexExecutionNano": 64648599,
+ "shortestApexExecutionNano": 8552402,
+ "longestApexExecutionNano": 119048045
+ },
+ {
+ "batchNumber": 4116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134483224,
+ "shortestRoundTripNano": 76150083,
+ "longestRoundTripNano": 154494403,
+ "averageApexExecutionNano": 54464115,
+ "shortestApexExecutionNano": 8261089,
+ "longestApexExecutionNano": 112968380
+ },
+ {
+ "batchNumber": 4117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143514708,
+ "shortestRoundTripNano": 62481121,
+ "longestRoundTripNano": 176291166,
+ "averageApexExecutionNano": 55580378,
+ "shortestApexExecutionNano": 9048447,
+ "longestApexExecutionNano": 123308432
+ },
+ {
+ "batchNumber": 4118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160315487,
+ "shortestRoundTripNano": 45627098,
+ "longestRoundTripNano": 214292526,
+ "averageApexExecutionNano": 43334921,
+ "shortestApexExecutionNano": 5238785,
+ "longestApexExecutionNano": 91039562
+ },
+ {
+ "batchNumber": 4119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157211503,
+ "shortestRoundTripNano": 56662652,
+ "longestRoundTripNano": 186622074,
+ "averageApexExecutionNano": 65986629,
+ "shortestApexExecutionNano": 11159019,
+ "longestApexExecutionNano": 134239088
+ },
+ {
+ "batchNumber": 4120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154770973,
+ "shortestRoundTripNano": 81095537,
+ "longestRoundTripNano": 184774541,
+ "averageApexExecutionNano": 77438841,
+ "shortestApexExecutionNano": 29212551,
+ "longestApexExecutionNano": 125488765
+ },
+ {
+ "batchNumber": 4121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158515951,
+ "shortestRoundTripNano": 67671746,
+ "longestRoundTripNano": 204754617,
+ "averageApexExecutionNano": 54069193,
+ "shortestApexExecutionNano": 6609865,
+ "longestApexExecutionNano": 123536043
+ },
+ {
+ "batchNumber": 4122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120853862,
+ "shortestRoundTripNano": 65987676,
+ "longestRoundTripNano": 151124456,
+ "averageApexExecutionNano": 60980648,
+ "shortestApexExecutionNano": 7837779,
+ "longestApexExecutionNano": 110308552
+ },
+ {
+ "batchNumber": 4123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137289417,
+ "shortestRoundTripNano": 78818258,
+ "longestRoundTripNano": 167879950,
+ "averageApexExecutionNano": 62477785,
+ "shortestApexExecutionNano": 7136920,
+ "longestApexExecutionNano": 121144982
+ },
+ {
+ "batchNumber": 4124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158095008,
+ "shortestRoundTripNano": 52873842,
+ "longestRoundTripNano": 201235913,
+ "averageApexExecutionNano": 71932960,
+ "shortestApexExecutionNano": 6997683,
+ "longestApexExecutionNano": 142965108
+ },
+ {
+ "batchNumber": 4125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141765532,
+ "shortestRoundTripNano": 51928560,
+ "longestRoundTripNano": 169235298,
+ "averageApexExecutionNano": 50875771,
+ "shortestApexExecutionNano": 6343517,
+ "longestApexExecutionNano": 123832799
+ },
+ {
+ "batchNumber": 4126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171002726,
+ "shortestRoundTripNano": 70311138,
+ "longestRoundTripNano": 202704131,
+ "averageApexExecutionNano": 81993447,
+ "shortestApexExecutionNano": 9351345,
+ "longestApexExecutionNano": 154892763
+ },
+ {
+ "batchNumber": 4127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147789094,
+ "shortestRoundTripNano": 77679446,
+ "longestRoundTripNano": 181865040,
+ "averageApexExecutionNano": 61533969,
+ "shortestApexExecutionNano": 5853385,
+ "longestApexExecutionNano": 98658175
+ },
+ {
+ "batchNumber": 4128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148243531,
+ "shortestRoundTripNano": 80915626,
+ "longestRoundTripNano": 171027832,
+ "averageApexExecutionNano": 62192169,
+ "shortestApexExecutionNano": 6695946,
+ "longestApexExecutionNano": 113188994
+ },
+ {
+ "batchNumber": 4129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164392334,
+ "shortestRoundTripNano": 60052060,
+ "longestRoundTripNano": 200164696,
+ "averageApexExecutionNano": 77865461,
+ "shortestApexExecutionNano": 28699489,
+ "longestApexExecutionNano": 140178772
+ },
+ {
+ "batchNumber": 4130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143952268,
+ "shortestRoundTripNano": 55297629,
+ "longestRoundTripNano": 174433108,
+ "averageApexExecutionNano": 47271816,
+ "shortestApexExecutionNano": 7751348,
+ "longestApexExecutionNano": 106919738
+ },
+ {
+ "batchNumber": 4131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146368773,
+ "shortestRoundTripNano": 73724127,
+ "longestRoundTripNano": 168017889,
+ "averageApexExecutionNano": 57607782,
+ "shortestApexExecutionNano": 7311099,
+ "longestApexExecutionNano": 112211194
+ },
+ {
+ "batchNumber": 4132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171488128,
+ "shortestRoundTripNano": 66728587,
+ "longestRoundTripNano": 208664168,
+ "averageApexExecutionNano": 60639636,
+ "shortestApexExecutionNano": 11576481,
+ "longestApexExecutionNano": 160573897
+ },
+ {
+ "batchNumber": 4133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149422577,
+ "shortestRoundTripNano": 44923722,
+ "longestRoundTripNano": 173208364,
+ "averageApexExecutionNano": 68990843,
+ "shortestApexExecutionNano": 14313993,
+ "longestApexExecutionNano": 122397452
+ },
+ {
+ "batchNumber": 4134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161937340,
+ "shortestRoundTripNano": 64540807,
+ "longestRoundTripNano": 185642405,
+ "averageApexExecutionNano": 65392678,
+ "shortestApexExecutionNano": 17005726,
+ "longestApexExecutionNano": 137982340
+ },
+ {
+ "batchNumber": 4135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150540043,
+ "shortestRoundTripNano": 68953113,
+ "longestRoundTripNano": 171616141,
+ "averageApexExecutionNano": 43813471,
+ "shortestApexExecutionNano": 4738116,
+ "longestApexExecutionNano": 118070001
+ },
+ {
+ "batchNumber": 4136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161644409,
+ "shortestRoundTripNano": 78219600,
+ "longestRoundTripNano": 192509938,
+ "averageApexExecutionNano": 56265299,
+ "shortestApexExecutionNano": 8852549,
+ "longestApexExecutionNano": 125348392
+ },
+ {
+ "batchNumber": 4137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186340210,
+ "shortestRoundTripNano": 113195313,
+ "longestRoundTripNano": 216087567,
+ "averageApexExecutionNano": 91842940,
+ "shortestApexExecutionNano": 11016069,
+ "longestApexExecutionNano": 168967229
+ },
+ {
+ "batchNumber": 4138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172099593,
+ "shortestRoundTripNano": 56820007,
+ "longestRoundTripNano": 194303607,
+ "averageApexExecutionNano": 70751163,
+ "shortestApexExecutionNano": 13233287,
+ "longestApexExecutionNano": 129319195
+ },
+ {
+ "batchNumber": 4139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160189895,
+ "shortestRoundTripNano": 87448185,
+ "longestRoundTripNano": 187609094,
+ "averageApexExecutionNano": 67769048,
+ "shortestApexExecutionNano": 5682751,
+ "longestApexExecutionNano": 141824983
+ },
+ {
+ "batchNumber": 4140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149545000,
+ "shortestRoundTripNano": 66516330,
+ "longestRoundTripNano": 173030729,
+ "averageApexExecutionNano": 52645928,
+ "shortestApexExecutionNano": 7916131,
+ "longestApexExecutionNano": 105129538
+ },
+ {
+ "batchNumber": 4141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139438186,
+ "shortestRoundTripNano": 52088327,
+ "longestRoundTripNano": 174485443,
+ "averageApexExecutionNano": 59059716,
+ "shortestApexExecutionNano": 9144920,
+ "longestApexExecutionNano": 128990277
+ },
+ {
+ "batchNumber": 4142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125887749,
+ "shortestRoundTripNano": 29007062,
+ "longestRoundTripNano": 159304501,
+ "averageApexExecutionNano": 47637316,
+ "shortestApexExecutionNano": 6507991,
+ "longestApexExecutionNano": 112067351
+ },
+ {
+ "batchNumber": 4143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169799389,
+ "shortestRoundTripNano": 59103958,
+ "longestRoundTripNano": 202118680,
+ "averageApexExecutionNano": 78635740,
+ "shortestApexExecutionNano": 11047482,
+ "longestApexExecutionNano": 136079158
+ },
+ {
+ "batchNumber": 4144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36284",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143999056,
+ "shortestRoundTripNano": 65979645,
+ "longestRoundTripNano": 165626902,
+ "averageApexExecutionNano": 53858360,
+ "shortestApexExecutionNano": 8249626,
+ "longestApexExecutionNano": 112822834
+ },
+ {
+ "batchNumber": 4145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130608831,
+ "shortestRoundTripNano": 66293764,
+ "longestRoundTripNano": 160854152,
+ "averageApexExecutionNano": 56884122,
+ "shortestApexExecutionNano": 7075344,
+ "longestApexExecutionNano": 106549210
+ },
+ {
+ "batchNumber": 4146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133884098,
+ "shortestRoundTripNano": 54318920,
+ "longestRoundTripNano": 166219463,
+ "averageApexExecutionNano": 51668204,
+ "shortestApexExecutionNano": 7707868,
+ "longestApexExecutionNano": 108619259
+ },
+ {
+ "batchNumber": 4147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149477456,
+ "shortestRoundTripNano": 65291803,
+ "longestRoundTripNano": 187407986,
+ "averageApexExecutionNano": 72172606,
+ "shortestApexExecutionNano": 6695700,
+ "longestApexExecutionNano": 128999386
+ },
+ {
+ "batchNumber": 4148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152497420,
+ "shortestRoundTripNano": 52727321,
+ "longestRoundTripNano": 193621685,
+ "averageApexExecutionNano": 52242109,
+ "shortestApexExecutionNano": 8868060,
+ "longestApexExecutionNano": 128113715
+ },
+ {
+ "batchNumber": 4149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141525595,
+ "shortestRoundTripNano": 65766269,
+ "longestRoundTripNano": 174761891,
+ "averageApexExecutionNano": 64092935,
+ "shortestApexExecutionNano": 12543207,
+ "longestApexExecutionNano": 120515187
+ },
+ {
+ "batchNumber": 4150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36278",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153346680,
+ "shortestRoundTripNano": 65646706,
+ "longestRoundTripNano": 180207475,
+ "averageApexExecutionNano": 53172012,
+ "shortestApexExecutionNano": 7942156,
+ "longestApexExecutionNano": 102492432
+ },
+ {
+ "batchNumber": 4151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126933713,
+ "shortestRoundTripNano": 51694183,
+ "longestRoundTripNano": 155696456,
+ "averageApexExecutionNano": 60101327,
+ "shortestApexExecutionNano": 6218933,
+ "longestApexExecutionNano": 113827754
+ },
+ {
+ "batchNumber": 4152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147967479,
+ "shortestRoundTripNano": 83124324,
+ "longestRoundTripNano": 174461958,
+ "averageApexExecutionNano": 66153024,
+ "shortestApexExecutionNano": 8350249,
+ "longestApexExecutionNano": 137736837
+ },
+ {
+ "batchNumber": 4153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167488475,
+ "shortestRoundTripNano": 78171824,
+ "longestRoundTripNano": 197967885,
+ "averageApexExecutionNano": 74849523,
+ "shortestApexExecutionNano": 6166143,
+ "longestApexExecutionNano": 145560156
+ },
+ {
+ "batchNumber": 4154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155102310,
+ "shortestRoundTripNano": 55063503,
+ "longestRoundTripNano": 191152936,
+ "averageApexExecutionNano": 59175861,
+ "shortestApexExecutionNano": 14390187,
+ "longestApexExecutionNano": 121998083
+ },
+ {
+ "batchNumber": 4155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172439701,
+ "shortestRoundTripNano": 75728594,
+ "longestRoundTripNano": 201386212,
+ "averageApexExecutionNano": 85945102,
+ "shortestApexExecutionNano": 6985452,
+ "longestApexExecutionNano": 154054352
+ },
+ {
+ "batchNumber": 4156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161006474,
+ "shortestRoundTripNano": 75788823,
+ "longestRoundTripNano": 189863040,
+ "averageApexExecutionNano": 76527639,
+ "shortestApexExecutionNano": 9757930,
+ "longestApexExecutionNano": 146279835
+ },
+ {
+ "batchNumber": 4157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143055351,
+ "shortestRoundTripNano": 41270991,
+ "longestRoundTripNano": 175294323,
+ "averageApexExecutionNano": 65975293,
+ "shortestApexExecutionNano": 10364164,
+ "longestApexExecutionNano": 109583579
+ },
+ {
+ "batchNumber": 4158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155681499,
+ "shortestRoundTripNano": 47725723,
+ "longestRoundTripNano": 187320993,
+ "averageApexExecutionNano": 68251330,
+ "shortestApexExecutionNano": 7058231,
+ "longestApexExecutionNano": 125166700
+ },
+ {
+ "batchNumber": 4159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136877773,
+ "shortestRoundTripNano": 36750183,
+ "longestRoundTripNano": 163802913,
+ "averageApexExecutionNano": 60553778,
+ "shortestApexExecutionNano": 9117030,
+ "longestApexExecutionNano": 117010363
+ },
+ {
+ "batchNumber": 4160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143413518,
+ "shortestRoundTripNano": 50381431,
+ "longestRoundTripNano": 182864125,
+ "averageApexExecutionNano": 51582315,
+ "shortestApexExecutionNano": 7771052,
+ "longestApexExecutionNano": 125572881
+ },
+ {
+ "batchNumber": 4161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148538616,
+ "shortestRoundTripNano": 77386249,
+ "longestRoundTripNano": 172820211,
+ "averageApexExecutionNano": 71500154,
+ "shortestApexExecutionNano": 5262383,
+ "longestApexExecutionNano": 127911258
+ },
+ {
+ "batchNumber": 4162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132619363,
+ "shortestRoundTripNano": 60001403,
+ "longestRoundTripNano": 154058149,
+ "averageApexExecutionNano": 48355797,
+ "shortestApexExecutionNano": 8401612,
+ "longestApexExecutionNano": 117168557
+ },
+ {
+ "batchNumber": 4163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145916036,
+ "shortestRoundTripNano": 55246965,
+ "longestRoundTripNano": 178548055,
+ "averageApexExecutionNano": 63325828,
+ "shortestApexExecutionNano": 9093768,
+ "longestApexExecutionNano": 113717236
+ },
+ {
+ "batchNumber": 4164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147448065,
+ "shortestRoundTripNano": 64504700,
+ "longestRoundTripNano": 172628187,
+ "averageApexExecutionNano": 76482673,
+ "shortestApexExecutionNano": 9940609,
+ "longestApexExecutionNano": 137799029
+ },
+ {
+ "batchNumber": 4165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153449220,
+ "shortestRoundTripNano": 61345300,
+ "longestRoundTripNano": 178439066,
+ "averageApexExecutionNano": 48228820,
+ "shortestApexExecutionNano": 8961363,
+ "longestApexExecutionNano": 114621552
+ },
+ {
+ "batchNumber": 4166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138200223,
+ "shortestRoundTripNano": 70133307,
+ "longestRoundTripNano": 169611955,
+ "averageApexExecutionNano": 68325570,
+ "shortestApexExecutionNano": 14649276,
+ "longestApexExecutionNano": 116576365
+ },
+ {
+ "batchNumber": 4167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153053439,
+ "shortestRoundTripNano": 62546430,
+ "longestRoundTripNano": 193040602,
+ "averageApexExecutionNano": 57628093,
+ "shortestApexExecutionNano": 8113148,
+ "longestApexExecutionNano": 124051725
+ },
+ {
+ "batchNumber": 4168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 226640502,
+ "shortestRoundTripNano": 42016910,
+ "longestRoundTripNano": 257225469,
+ "averageApexExecutionNano": 95948011,
+ "shortestApexExecutionNano": 10474950,
+ "longestApexExecutionNano": 205532165
+ },
+ {
+ "batchNumber": 4169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36296",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138764646,
+ "shortestRoundTripNano": 60917422,
+ "longestRoundTripNano": 166888875,
+ "averageApexExecutionNano": 54196879,
+ "shortestApexExecutionNano": 6941693,
+ "longestApexExecutionNano": 100860973
+ },
+ {
+ "batchNumber": 4170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166049875,
+ "shortestRoundTripNano": 80737591,
+ "longestRoundTripNano": 203236655,
+ "averageApexExecutionNano": 57142925,
+ "shortestApexExecutionNano": 6708120,
+ "longestApexExecutionNano": 118906664
+ },
+ {
+ "batchNumber": 4171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36296",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162040919,
+ "shortestRoundTripNano": 69350731,
+ "longestRoundTripNano": 195429626,
+ "averageApexExecutionNano": 72928658,
+ "shortestApexExecutionNano": 7331949,
+ "longestApexExecutionNano": 141558216
+ },
+ {
+ "batchNumber": 4172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36296",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168080781,
+ "shortestRoundTripNano": 74200759,
+ "longestRoundTripNano": 197504607,
+ "averageApexExecutionNano": 82121754,
+ "shortestApexExecutionNano": 9477295,
+ "longestApexExecutionNano": 144672962
+ },
+ {
+ "batchNumber": 4173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36296",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166728765,
+ "shortestRoundTripNano": 77173545,
+ "longestRoundTripNano": 199240448,
+ "averageApexExecutionNano": 76172915,
+ "shortestApexExecutionNano": 13440319,
+ "longestApexExecutionNano": 136103014
+ },
+ {
+ "batchNumber": 4174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36296",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183176332,
+ "shortestRoundTripNano": 60628603,
+ "longestRoundTripNano": 236353730,
+ "averageApexExecutionNano": 92084225,
+ "shortestApexExecutionNano": 11632667,
+ "longestApexExecutionNano": 147034347
+ },
+ {
+ "batchNumber": 4175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140057022,
+ "shortestRoundTripNano": 73005169,
+ "longestRoundTripNano": 167539263,
+ "averageApexExecutionNano": 50926685,
+ "shortestApexExecutionNano": 10756679,
+ "longestApexExecutionNano": 111399658
+ },
+ {
+ "batchNumber": 4176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138392454,
+ "shortestRoundTripNano": 74732774,
+ "longestRoundTripNano": 166952404,
+ "averageApexExecutionNano": 48171204,
+ "shortestApexExecutionNano": 8334649,
+ "longestApexExecutionNano": 109144172
+ },
+ {
+ "batchNumber": 4177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149974039,
+ "shortestRoundTripNano": 94831268,
+ "longestRoundTripNano": 183900496,
+ "averageApexExecutionNano": 81707297,
+ "shortestApexExecutionNano": 8139961,
+ "longestApexExecutionNano": 143703329
+ },
+ {
+ "batchNumber": 4178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151774271,
+ "shortestRoundTripNano": 45151659,
+ "longestRoundTripNano": 179842871,
+ "averageApexExecutionNano": 70237006,
+ "shortestApexExecutionNano": 9406368,
+ "longestApexExecutionNano": 126794632
+ },
+ {
+ "batchNumber": 4179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133506289,
+ "shortestRoundTripNano": 72193690,
+ "longestRoundTripNano": 158101584,
+ "averageApexExecutionNano": 64203110,
+ "shortestApexExecutionNano": 6217048,
+ "longestApexExecutionNano": 124171171
+ },
+ {
+ "batchNumber": 4180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138881559,
+ "shortestRoundTripNano": 65162411,
+ "longestRoundTripNano": 165801887,
+ "averageApexExecutionNano": 60074770,
+ "shortestApexExecutionNano": 7789937,
+ "longestApexExecutionNano": 114945136
+ },
+ {
+ "batchNumber": 4181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160697924,
+ "shortestRoundTripNano": 58523308,
+ "longestRoundTripNano": 190184603,
+ "averageApexExecutionNano": 63141544,
+ "shortestApexExecutionNano": 16033497,
+ "longestApexExecutionNano": 139474794
+ },
+ {
+ "batchNumber": 4182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126670266,
+ "shortestRoundTripNano": 50306110,
+ "longestRoundTripNano": 153651240,
+ "averageApexExecutionNano": 52121098,
+ "shortestApexExecutionNano": 6844142,
+ "longestApexExecutionNano": 111683096
+ },
+ {
+ "batchNumber": 4183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144278188,
+ "shortestRoundTripNano": 57166754,
+ "longestRoundTripNano": 170116766,
+ "averageApexExecutionNano": 52673760,
+ "shortestApexExecutionNano": 8664757,
+ "longestApexExecutionNano": 114746027
+ },
+ {
+ "batchNumber": 4184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132635410,
+ "shortestRoundTripNano": 63811212,
+ "longestRoundTripNano": 162089304,
+ "averageApexExecutionNano": 57333598,
+ "shortestApexExecutionNano": 8714319,
+ "longestApexExecutionNano": 111404242
+ },
+ {
+ "batchNumber": 4185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129802044,
+ "shortestRoundTripNano": 60209632,
+ "longestRoundTripNano": 156003786,
+ "averageApexExecutionNano": 63235397,
+ "shortestApexExecutionNano": 8279788,
+ "longestApexExecutionNano": 117210971
+ },
+ {
+ "batchNumber": 4186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155401695,
+ "shortestRoundTripNano": 58318515,
+ "longestRoundTripNano": 194997038,
+ "averageApexExecutionNano": 59888554,
+ "shortestApexExecutionNano": 9254851,
+ "longestApexExecutionNano": 124719694
+ },
+ {
+ "batchNumber": 4187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139199959,
+ "shortestRoundTripNano": 63341319,
+ "longestRoundTripNano": 164022576,
+ "averageApexExecutionNano": 46074967,
+ "shortestApexExecutionNano": 16931157,
+ "longestApexExecutionNano": 121894404
+ },
+ {
+ "batchNumber": 4188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36298",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168161086,
+ "shortestRoundTripNano": 70381355,
+ "longestRoundTripNano": 199923069,
+ "averageApexExecutionNano": 67159342,
+ "shortestApexExecutionNano": 15141497,
+ "longestApexExecutionNano": 154988565
+ },
+ {
+ "batchNumber": 4189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146789370,
+ "shortestRoundTripNano": 64758299,
+ "longestRoundTripNano": 180142392,
+ "averageApexExecutionNano": 69122576,
+ "shortestApexExecutionNano": 16331215,
+ "longestApexExecutionNano": 123539386
+ },
+ {
+ "batchNumber": 4190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143002907,
+ "shortestRoundTripNano": 64711393,
+ "longestRoundTripNano": 173559187,
+ "averageApexExecutionNano": 63118979,
+ "shortestApexExecutionNano": 6977748,
+ "longestApexExecutionNano": 115603265
+ },
+ {
+ "batchNumber": 4191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132101514,
+ "shortestRoundTripNano": 46318013,
+ "longestRoundTripNano": 164320271,
+ "averageApexExecutionNano": 60398235,
+ "shortestApexExecutionNano": 7531768,
+ "longestApexExecutionNano": 120218108
+ },
+ {
+ "batchNumber": 4192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154289549,
+ "shortestRoundTripNano": 62533584,
+ "longestRoundTripNano": 187546777,
+ "averageApexExecutionNano": 64505542,
+ "shortestApexExecutionNano": 9607145,
+ "longestApexExecutionNano": 120223117
+ },
+ {
+ "batchNumber": 4193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36304",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116602938,
+ "shortestRoundTripNano": 63719109,
+ "longestRoundTripNano": 145383754,
+ "averageApexExecutionNano": 59729623,
+ "shortestApexExecutionNano": 8946037,
+ "longestApexExecutionNano": 102300071
+ },
+ {
+ "batchNumber": 4194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156581540,
+ "shortestRoundTripNano": 63065209,
+ "longestRoundTripNano": 181875568,
+ "averageApexExecutionNano": 53816418,
+ "shortestApexExecutionNano": 9812943,
+ "longestApexExecutionNano": 97576393
+ },
+ {
+ "batchNumber": 4195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148669661,
+ "shortestRoundTripNano": 70305490,
+ "longestRoundTripNano": 181955287,
+ "averageApexExecutionNano": 58513558,
+ "shortestApexExecutionNano": 7883838,
+ "longestApexExecutionNano": 120718668
+ },
+ {
+ "batchNumber": 4196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139513886,
+ "shortestRoundTripNano": 63733309,
+ "longestRoundTripNano": 174796764,
+ "averageApexExecutionNano": 48813011,
+ "shortestApexExecutionNano": 10978642,
+ "longestApexExecutionNano": 121160129
+ },
+ {
+ "batchNumber": 4197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137462369,
+ "shortestRoundTripNano": 43782837,
+ "longestRoundTripNano": 175377711,
+ "averageApexExecutionNano": 62611145,
+ "shortestApexExecutionNano": 7187602,
+ "longestApexExecutionNano": 133065339
+ },
+ {
+ "batchNumber": 4198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36302",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178106763,
+ "shortestRoundTripNano": 62157106,
+ "longestRoundTripNano": 216504730,
+ "averageApexExecutionNano": 74577642,
+ "shortestApexExecutionNano": 16763713,
+ "longestApexExecutionNano": 160322475
+ },
+ {
+ "batchNumber": 4199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150664647,
+ "shortestRoundTripNano": 76766323,
+ "longestRoundTripNano": 173888598,
+ "averageApexExecutionNano": 68618893,
+ "shortestApexExecutionNano": 7457164,
+ "longestApexExecutionNano": 139498610
+ },
+ {
+ "batchNumber": 4200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152766650,
+ "shortestRoundTripNano": 87179169,
+ "longestRoundTripNano": 182977426,
+ "averageApexExecutionNano": 63491667,
+ "shortestApexExecutionNano": 10609547,
+ "longestApexExecutionNano": 124832129
+ },
+ {
+ "batchNumber": 4201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144241258,
+ "shortestRoundTripNano": 67520780,
+ "longestRoundTripNano": 175371317,
+ "averageApexExecutionNano": 68455448,
+ "shortestApexExecutionNano": 7487213,
+ "longestApexExecutionNano": 113555706
+ },
+ {
+ "batchNumber": 4202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131270100,
+ "shortestRoundTripNano": 45867090,
+ "longestRoundTripNano": 154829032,
+ "averageApexExecutionNano": 50951018,
+ "shortestApexExecutionNano": 6396910,
+ "longestApexExecutionNano": 109358387
+ },
+ {
+ "batchNumber": 4203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132827751,
+ "shortestRoundTripNano": 61638049,
+ "longestRoundTripNano": 168966140,
+ "averageApexExecutionNano": 65234088,
+ "shortestApexExecutionNano": 6440460,
+ "longestApexExecutionNano": 125754122
+ },
+ {
+ "batchNumber": 4204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146090982,
+ "shortestRoundTripNano": 70319063,
+ "longestRoundTripNano": 183099666,
+ "averageApexExecutionNano": 43753277,
+ "shortestApexExecutionNano": 5546627,
+ "longestApexExecutionNano": 101913374
+ },
+ {
+ "batchNumber": 4205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139983223,
+ "shortestRoundTripNano": 60839066,
+ "longestRoundTripNano": 165005325,
+ "averageApexExecutionNano": 55071703,
+ "shortestApexExecutionNano": 8314424,
+ "longestApexExecutionNano": 117953377
+ },
+ {
+ "batchNumber": 4206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150258235,
+ "shortestRoundTripNano": 65518157,
+ "longestRoundTripNano": 180284314,
+ "averageApexExecutionNano": 62764813,
+ "shortestApexExecutionNano": 7444957,
+ "longestApexExecutionNano": 133468616
+ },
+ {
+ "batchNumber": 4207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138431038,
+ "shortestRoundTripNano": 54780434,
+ "longestRoundTripNano": 169080787,
+ "averageApexExecutionNano": 48036171,
+ "shortestApexExecutionNano": 6697361,
+ "longestApexExecutionNano": 107394736
+ },
+ {
+ "batchNumber": 4208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117095006,
+ "shortestRoundTripNano": 29564784,
+ "longestRoundTripNano": 148022822,
+ "averageApexExecutionNano": 60797215,
+ "shortestApexExecutionNano": 5564508,
+ "longestApexExecutionNano": 109457728
+ },
+ {
+ "batchNumber": 4209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145198714,
+ "shortestRoundTripNano": 73960560,
+ "longestRoundTripNano": 167904084,
+ "averageApexExecutionNano": 73776081,
+ "shortestApexExecutionNano": 18836054,
+ "longestApexExecutionNano": 128446812
+ },
+ {
+ "batchNumber": 4210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146359339,
+ "shortestRoundTripNano": 71714349,
+ "longestRoundTripNano": 182013513,
+ "averageApexExecutionNano": 57172653,
+ "shortestApexExecutionNano": 6813864,
+ "longestApexExecutionNano": 110091820
+ },
+ {
+ "batchNumber": 4211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145928122,
+ "shortestRoundTripNano": 44223935,
+ "longestRoundTripNano": 177419737,
+ "averageApexExecutionNano": 68833943,
+ "shortestApexExecutionNano": 8260905,
+ "longestApexExecutionNano": 132438055
+ },
+ {
+ "batchNumber": 4212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140201503,
+ "shortestRoundTripNano": 54906256,
+ "longestRoundTripNano": 168820834,
+ "averageApexExecutionNano": 71332810,
+ "shortestApexExecutionNano": 17186847,
+ "longestApexExecutionNano": 128152627
+ },
+ {
+ "batchNumber": 4213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158165283,
+ "shortestRoundTripNano": 62689532,
+ "longestRoundTripNano": 198028876,
+ "averageApexExecutionNano": 73267498,
+ "shortestApexExecutionNano": 24742221,
+ "longestApexExecutionNano": 139883689
+ },
+ {
+ "batchNumber": 4214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119829590,
+ "shortestRoundTripNano": 60675177,
+ "longestRoundTripNano": 145460865,
+ "averageApexExecutionNano": 54087683,
+ "shortestApexExecutionNano": 9062795,
+ "longestApexExecutionNano": 105668573
+ },
+ {
+ "batchNumber": 4215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131095121,
+ "shortestRoundTripNano": 69312396,
+ "longestRoundTripNano": 155622240,
+ "averageApexExecutionNano": 58936724,
+ "shortestApexExecutionNano": 13718799,
+ "longestApexExecutionNano": 102641218
+ },
+ {
+ "batchNumber": 4216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141571173,
+ "shortestRoundTripNano": 68012456,
+ "longestRoundTripNano": 182002143,
+ "averageApexExecutionNano": 52056672,
+ "shortestApexExecutionNano": 9574483,
+ "longestApexExecutionNano": 113258779
+ },
+ {
+ "batchNumber": 4217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129887795,
+ "shortestRoundTripNano": 70416819,
+ "longestRoundTripNano": 158214777,
+ "averageApexExecutionNano": 58950220,
+ "shortestApexExecutionNano": 8783146,
+ "longestApexExecutionNano": 110299639
+ },
+ {
+ "batchNumber": 4218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 222445741,
+ "shortestRoundTripNano": 56499259,
+ "longestRoundTripNano": 250585556,
+ "averageApexExecutionNano": 148592689,
+ "shortestApexExecutionNano": 8395977,
+ "longestApexExecutionNano": 206823007
+ },
+ {
+ "batchNumber": 4219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36314",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156792037,
+ "shortestRoundTripNano": 98430479,
+ "longestRoundTripNano": 186533313,
+ "averageApexExecutionNano": 66646564,
+ "shortestApexExecutionNano": 22135823,
+ "longestApexExecutionNano": 120347424
+ },
+ {
+ "batchNumber": 4220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146661118,
+ "shortestRoundTripNano": 79624952,
+ "longestRoundTripNano": 172572703,
+ "averageApexExecutionNano": 50440902,
+ "shortestApexExecutionNano": 6396019,
+ "longestApexExecutionNano": 115412762
+ },
+ {
+ "batchNumber": 4221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136365577,
+ "shortestRoundTripNano": 76631204,
+ "longestRoundTripNano": 162890230,
+ "averageApexExecutionNano": 57308201,
+ "shortestApexExecutionNano": 8317550,
+ "longestApexExecutionNano": 101905860
+ },
+ {
+ "batchNumber": 4222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118230697,
+ "shortestRoundTripNano": 21139710,
+ "longestRoundTripNano": 148646327,
+ "averageApexExecutionNano": 56149946,
+ "shortestApexExecutionNano": 7776998,
+ "longestApexExecutionNano": 113707427
+ },
+ {
+ "batchNumber": 4223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130697688,
+ "shortestRoundTripNano": 68427487,
+ "longestRoundTripNano": 157066691,
+ "averageApexExecutionNano": 65023002,
+ "shortestApexExecutionNano": 10929503,
+ "longestApexExecutionNano": 104981231
+ },
+ {
+ "batchNumber": 4224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133542830,
+ "shortestRoundTripNano": 41173698,
+ "longestRoundTripNano": 160580356,
+ "averageApexExecutionNano": 54414551,
+ "shortestApexExecutionNano": 11071347,
+ "longestApexExecutionNano": 109447610
+ },
+ {
+ "batchNumber": 4225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130374265,
+ "shortestRoundTripNano": 61725561,
+ "longestRoundTripNano": 164907868,
+ "averageApexExecutionNano": 56679319,
+ "shortestApexExecutionNano": 6111301,
+ "longestApexExecutionNano": 107226043
+ },
+ {
+ "batchNumber": 4226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148193465,
+ "shortestRoundTripNano": 56152477,
+ "longestRoundTripNano": 172142002,
+ "averageApexExecutionNano": 75595638,
+ "shortestApexExecutionNano": 12192613,
+ "longestApexExecutionNano": 125904938
+ },
+ {
+ "batchNumber": 4227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152714846,
+ "shortestRoundTripNano": 46724737,
+ "longestRoundTripNano": 196506526,
+ "averageApexExecutionNano": 62091467,
+ "shortestApexExecutionNano": 6192548,
+ "longestApexExecutionNano": 122883815
+ },
+ {
+ "batchNumber": 4228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177220213,
+ "shortestRoundTripNano": 79061927,
+ "longestRoundTripNano": 209953048,
+ "averageApexExecutionNano": 87985442,
+ "shortestApexExecutionNano": 20550426,
+ "longestApexExecutionNano": 169595028
+ },
+ {
+ "batchNumber": 4229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161634410,
+ "shortestRoundTripNano": 86951931,
+ "longestRoundTripNano": 186687203,
+ "averageApexExecutionNano": 75867139,
+ "shortestApexExecutionNano": 6394214,
+ "longestApexExecutionNano": 136971664
+ },
+ {
+ "batchNumber": 4230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151473884,
+ "shortestRoundTripNano": 87494801,
+ "longestRoundTripNano": 184670849,
+ "averageApexExecutionNano": 48098416,
+ "shortestApexExecutionNano": 11884110,
+ "longestApexExecutionNano": 114589177
+ },
+ {
+ "batchNumber": 4231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146709626,
+ "shortestRoundTripNano": 76682050,
+ "longestRoundTripNano": 174139699,
+ "averageApexExecutionNano": 58656291,
+ "shortestApexExecutionNano": 10492538,
+ "longestApexExecutionNano": 119839866
+ },
+ {
+ "batchNumber": 4232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149082528,
+ "shortestRoundTripNano": 55742844,
+ "longestRoundTripNano": 181879417,
+ "averageApexExecutionNano": 66982565,
+ "shortestApexExecutionNano": 6732234,
+ "longestApexExecutionNano": 139057709
+ },
+ {
+ "batchNumber": 4233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137835282,
+ "shortestRoundTripNano": 63079821,
+ "longestRoundTripNano": 166739281,
+ "averageApexExecutionNano": 52210652,
+ "shortestApexExecutionNano": 9104063,
+ "longestApexExecutionNano": 112307591
+ },
+ {
+ "batchNumber": 4234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154905421,
+ "shortestRoundTripNano": 69295537,
+ "longestRoundTripNano": 184751112,
+ "averageApexExecutionNano": 62559069,
+ "shortestApexExecutionNano": 10091667,
+ "longestApexExecutionNano": 129494109
+ },
+ {
+ "batchNumber": 4235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165516388,
+ "shortestRoundTripNano": 72019403,
+ "longestRoundTripNano": 193334589,
+ "averageApexExecutionNano": 74412539,
+ "shortestApexExecutionNano": 8113848,
+ "longestApexExecutionNano": 150296847
+ },
+ {
+ "batchNumber": 4236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161874062,
+ "shortestRoundTripNano": 73447376,
+ "longestRoundTripNano": 197131718,
+ "averageApexExecutionNano": 59439970,
+ "shortestApexExecutionNano": 9760582,
+ "longestApexExecutionNano": 125768658
+ },
+ {
+ "batchNumber": 4237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163883243,
+ "shortestRoundTripNano": 77098448,
+ "longestRoundTripNano": 189486824,
+ "averageApexExecutionNano": 76458322,
+ "shortestApexExecutionNano": 21827485,
+ "longestApexExecutionNano": 135143269
+ },
+ {
+ "batchNumber": 4238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141090904,
+ "shortestRoundTripNano": 70821255,
+ "longestRoundTripNano": 171021683,
+ "averageApexExecutionNano": 47603009,
+ "shortestApexExecutionNano": 9942586,
+ "longestApexExecutionNano": 123572483
+ },
+ {
+ "batchNumber": 4239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145947048,
+ "shortestRoundTripNano": 63555401,
+ "longestRoundTripNano": 184736307,
+ "averageApexExecutionNano": 67267241,
+ "shortestApexExecutionNano": 8233916,
+ "longestApexExecutionNano": 129079103
+ },
+ {
+ "batchNumber": 4240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142015760,
+ "shortestRoundTripNano": 35213721,
+ "longestRoundTripNano": 172272227,
+ "averageApexExecutionNano": 60240988,
+ "shortestApexExecutionNano": 4815913,
+ "longestApexExecutionNano": 121431119
+ },
+ {
+ "batchNumber": 4241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148488929,
+ "shortestRoundTripNano": 83510707,
+ "longestRoundTripNano": 173689099,
+ "averageApexExecutionNano": 62705190,
+ "shortestApexExecutionNano": 5633563,
+ "longestApexExecutionNano": 115817691
+ },
+ {
+ "batchNumber": 4242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144225789,
+ "shortestRoundTripNano": 54569843,
+ "longestRoundTripNano": 180268007,
+ "averageApexExecutionNano": 47515761,
+ "shortestApexExecutionNano": 7172299,
+ "longestApexExecutionNano": 111342180
+ },
+ {
+ "batchNumber": 4243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143879850,
+ "shortestRoundTripNano": 66845620,
+ "longestRoundTripNano": 172734512,
+ "averageApexExecutionNano": 64752299,
+ "shortestApexExecutionNano": 11334896,
+ "longestApexExecutionNano": 125784286
+ },
+ {
+ "batchNumber": 4244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164200308,
+ "shortestRoundTripNano": 58205073,
+ "longestRoundTripNano": 194201769,
+ "averageApexExecutionNano": 64319660,
+ "shortestApexExecutionNano": 7251839,
+ "longestApexExecutionNano": 137859198
+ },
+ {
+ "batchNumber": 4245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148083829,
+ "shortestRoundTripNano": 52898469,
+ "longestRoundTripNano": 187554885,
+ "averageApexExecutionNano": 52464116,
+ "shortestApexExecutionNano": 6257148,
+ "longestApexExecutionNano": 112212572
+ },
+ {
+ "batchNumber": 4246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142395575,
+ "shortestRoundTripNano": 46797648,
+ "longestRoundTripNano": 175842443,
+ "averageApexExecutionNano": 65948097,
+ "shortestApexExecutionNano": 7142529,
+ "longestApexExecutionNano": 118831810
+ },
+ {
+ "batchNumber": 4247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141803407,
+ "shortestRoundTripNano": 66242923,
+ "longestRoundTripNano": 167219663,
+ "averageApexExecutionNano": 54502176,
+ "shortestApexExecutionNano": 6569218,
+ "longestApexExecutionNano": 129674169
+ },
+ {
+ "batchNumber": 4248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130070748,
+ "shortestRoundTripNano": 51544035,
+ "longestRoundTripNano": 168571827,
+ "averageApexExecutionNano": 55592173,
+ "shortestApexExecutionNano": 6793701,
+ "longestApexExecutionNano": 116916030
+ },
+ {
+ "batchNumber": 4249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130173668,
+ "shortestRoundTripNano": 57555829,
+ "longestRoundTripNano": 160256020,
+ "averageApexExecutionNano": 47411966,
+ "shortestApexExecutionNano": 4874028,
+ "longestApexExecutionNano": 108313410
+ },
+ {
+ "batchNumber": 4250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135794976,
+ "shortestRoundTripNano": 61253588,
+ "longestRoundTripNano": 180776763,
+ "averageApexExecutionNano": 59531115,
+ "shortestApexExecutionNano": 6294103,
+ "longestApexExecutionNano": 131795071
+ },
+ {
+ "batchNumber": 4251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150575545,
+ "shortestRoundTripNano": 45794236,
+ "longestRoundTripNano": 187413752,
+ "averageApexExecutionNano": 64621262,
+ "shortestApexExecutionNano": 10370000,
+ "longestApexExecutionNano": 113769773
+ },
+ {
+ "batchNumber": 4252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153024366,
+ "shortestRoundTripNano": 68062704,
+ "longestRoundTripNano": 175637268,
+ "averageApexExecutionNano": 64378634,
+ "shortestApexExecutionNano": 11980755,
+ "longestApexExecutionNano": 119773561
+ },
+ {
+ "batchNumber": 4253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150433480,
+ "shortestRoundTripNano": 54296993,
+ "longestRoundTripNano": 181830445,
+ "averageApexExecutionNano": 55069788,
+ "shortestApexExecutionNano": 7969183,
+ "longestApexExecutionNano": 107150316
+ },
+ {
+ "batchNumber": 4254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188371740,
+ "shortestRoundTripNano": 70126998,
+ "longestRoundTripNano": 239050105,
+ "averageApexExecutionNano": 68924519,
+ "shortestApexExecutionNano": 5511198,
+ "longestApexExecutionNano": 113712425
+ },
+ {
+ "batchNumber": 4255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137793035,
+ "shortestRoundTripNano": 40913738,
+ "longestRoundTripNano": 173276853,
+ "averageApexExecutionNano": 61836122,
+ "shortestApexExecutionNano": 8192955,
+ "longestApexExecutionNano": 134994362
+ },
+ {
+ "batchNumber": 4256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170605788,
+ "shortestRoundTripNano": 71138402,
+ "longestRoundTripNano": 201181161,
+ "averageApexExecutionNano": 63403274,
+ "shortestApexExecutionNano": 14796572,
+ "longestApexExecutionNano": 128081491
+ },
+ {
+ "batchNumber": 4257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171243893,
+ "shortestRoundTripNano": 51768682,
+ "longestRoundTripNano": 207763546,
+ "averageApexExecutionNano": 73638911,
+ "shortestApexExecutionNano": 7033887,
+ "longestApexExecutionNano": 154345360
+ },
+ {
+ "batchNumber": 4258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140255952,
+ "shortestRoundTripNano": 54154776,
+ "longestRoundTripNano": 168153589,
+ "averageApexExecutionNano": 63949166,
+ "shortestApexExecutionNano": 9489650,
+ "longestApexExecutionNano": 121121465
+ },
+ {
+ "batchNumber": 4259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181880643,
+ "shortestRoundTripNano": 62818696,
+ "longestRoundTripNano": 210797648,
+ "averageApexExecutionNano": 82605056,
+ "shortestApexExecutionNano": 6223562,
+ "longestApexExecutionNano": 162307691
+ },
+ {
+ "batchNumber": 4260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147287312,
+ "shortestRoundTripNano": 89056648,
+ "longestRoundTripNano": 178634980,
+ "averageApexExecutionNano": 66498096,
+ "shortestApexExecutionNano": 7769962,
+ "longestApexExecutionNano": 128273467
+ },
+ {
+ "batchNumber": 4261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153245849,
+ "shortestRoundTripNano": 89377616,
+ "longestRoundTripNano": 183750970,
+ "averageApexExecutionNano": 63478685,
+ "shortestApexExecutionNano": 15477473,
+ "longestApexExecutionNano": 129857854
+ },
+ {
+ "batchNumber": 4262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149190821,
+ "shortestRoundTripNano": 54757414,
+ "longestRoundTripNano": 191317963,
+ "averageApexExecutionNano": 62263194,
+ "shortestApexExecutionNano": 9385258,
+ "longestApexExecutionNano": 134802289
+ },
+ {
+ "batchNumber": 4263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36320",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175782333,
+ "shortestRoundTripNano": 99587097,
+ "longestRoundTripNano": 207809033,
+ "averageApexExecutionNano": 78025815,
+ "shortestApexExecutionNano": 7083758,
+ "longestApexExecutionNano": 153575545
+ },
+ {
+ "batchNumber": 4264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176396782,
+ "shortestRoundTripNano": 70011700,
+ "longestRoundTripNano": 210101273,
+ "averageApexExecutionNano": 81205674,
+ "shortestApexExecutionNano": 18981152,
+ "longestApexExecutionNano": 159205966
+ },
+ {
+ "batchNumber": 4265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147523739,
+ "shortestRoundTripNano": 80166936,
+ "longestRoundTripNano": 170654244,
+ "averageApexExecutionNano": 61360249,
+ "shortestApexExecutionNano": 8427895,
+ "longestApexExecutionNano": 127133631
+ },
+ {
+ "batchNumber": 4266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162028632,
+ "shortestRoundTripNano": 70756533,
+ "longestRoundTripNano": 192224493,
+ "averageApexExecutionNano": 86649915,
+ "shortestApexExecutionNano": 25312423,
+ "longestApexExecutionNano": 139742833
+ },
+ {
+ "batchNumber": 4267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36334",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141237723,
+ "shortestRoundTripNano": 67067216,
+ "longestRoundTripNano": 176937808,
+ "averageApexExecutionNano": 42269299,
+ "shortestApexExecutionNano": 8569167,
+ "longestApexExecutionNano": 122463343
+ },
+ {
+ "batchNumber": 4268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36334",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143569482,
+ "shortestRoundTripNano": 73135723,
+ "longestRoundTripNano": 175813552,
+ "averageApexExecutionNano": 55162907,
+ "shortestApexExecutionNano": 11331250,
+ "longestApexExecutionNano": 121618533
+ },
+ {
+ "batchNumber": 4269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152262028,
+ "shortestRoundTripNano": 40361399,
+ "longestRoundTripNano": 187339707,
+ "averageApexExecutionNano": 63588991,
+ "shortestApexExecutionNano": 8404566,
+ "longestApexExecutionNano": 131913944
+ },
+ {
+ "batchNumber": 4270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155627846,
+ "shortestRoundTripNano": 59670614,
+ "longestRoundTripNano": 186984398,
+ "averageApexExecutionNano": 65491666,
+ "shortestApexExecutionNano": 9118557,
+ "longestApexExecutionNano": 123524765
+ },
+ {
+ "batchNumber": 4271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142372831,
+ "shortestRoundTripNano": 67606430,
+ "longestRoundTripNano": 172909379,
+ "averageApexExecutionNano": 61803622,
+ "shortestApexExecutionNano": 9002278,
+ "longestApexExecutionNano": 106586964
+ },
+ {
+ "batchNumber": 4272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160486284,
+ "shortestRoundTripNano": 55097313,
+ "longestRoundTripNano": 188635053,
+ "averageApexExecutionNano": 71583392,
+ "shortestApexExecutionNano": 10997591,
+ "longestApexExecutionNano": 136865744
+ },
+ {
+ "batchNumber": 4273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145503595,
+ "shortestRoundTripNano": 70507468,
+ "longestRoundTripNano": 169768383,
+ "averageApexExecutionNano": 59948899,
+ "shortestApexExecutionNano": 8447565,
+ "longestApexExecutionNano": 118626815
+ },
+ {
+ "batchNumber": 4274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134813691,
+ "shortestRoundTripNano": 58829142,
+ "longestRoundTripNano": 172612082,
+ "averageApexExecutionNano": 48282431,
+ "shortestApexExecutionNano": 7223409,
+ "longestApexExecutionNano": 128885584
+ },
+ {
+ "batchNumber": 4275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134532329,
+ "shortestRoundTripNano": 53890319,
+ "longestRoundTripNano": 167810547,
+ "averageApexExecutionNano": 55100731,
+ "shortestApexExecutionNano": 8263275,
+ "longestApexExecutionNano": 109601258
+ },
+ {
+ "batchNumber": 4276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145882206,
+ "shortestRoundTripNano": 63132134,
+ "longestRoundTripNano": 169374717,
+ "averageApexExecutionNano": 62482442,
+ "shortestApexExecutionNano": 10569855,
+ "longestApexExecutionNano": 103911556
+ },
+ {
+ "batchNumber": 4277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136795751,
+ "shortestRoundTripNano": 46467899,
+ "longestRoundTripNano": 167549037,
+ "averageApexExecutionNano": 50772905,
+ "shortestApexExecutionNano": 6445436,
+ "longestApexExecutionNano": 103077440
+ },
+ {
+ "batchNumber": 4278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124474519,
+ "shortestRoundTripNano": 43253385,
+ "longestRoundTripNano": 158346062,
+ "averageApexExecutionNano": 47568964,
+ "shortestApexExecutionNano": 9965282,
+ "longestApexExecutionNano": 117541433
+ },
+ {
+ "batchNumber": 4279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170866696,
+ "shortestRoundTripNano": 41670292,
+ "longestRoundTripNano": 196777553,
+ "averageApexExecutionNano": 79151653,
+ "shortestApexExecutionNano": 17944153,
+ "longestApexExecutionNano": 154037686
+ },
+ {
+ "batchNumber": 4280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163930412,
+ "shortestRoundTripNano": 61492455,
+ "longestRoundTripNano": 195430919,
+ "averageApexExecutionNano": 53572068,
+ "shortestApexExecutionNano": 7380595,
+ "longestApexExecutionNano": 124291240
+ },
+ {
+ "batchNumber": 4281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135941630,
+ "shortestRoundTripNano": 45572055,
+ "longestRoundTripNano": 170389771,
+ "averageApexExecutionNano": 58712439,
+ "shortestApexExecutionNano": 9266935,
+ "longestApexExecutionNano": 118485678
+ },
+ {
+ "batchNumber": 4282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160164471,
+ "shortestRoundTripNano": 68176290,
+ "longestRoundTripNano": 185738569,
+ "averageApexExecutionNano": 77839275,
+ "shortestApexExecutionNano": 8415803,
+ "longestApexExecutionNano": 144926743
+ },
+ {
+ "batchNumber": 4283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137235727,
+ "shortestRoundTripNano": 59714413,
+ "longestRoundTripNano": 168769591,
+ "averageApexExecutionNano": 59760456,
+ "shortestApexExecutionNano": 7716393,
+ "longestApexExecutionNano": 123867116
+ },
+ {
+ "batchNumber": 4284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142337726,
+ "shortestRoundTripNano": 52932162,
+ "longestRoundTripNano": 179747061,
+ "averageApexExecutionNano": 65860847,
+ "shortestApexExecutionNano": 7842659,
+ "longestApexExecutionNano": 122147515
+ },
+ {
+ "batchNumber": 4285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164655323,
+ "shortestRoundTripNano": 88861734,
+ "longestRoundTripNano": 184675268,
+ "averageApexExecutionNano": 57902830,
+ "shortestApexExecutionNano": 3901010,
+ "longestApexExecutionNano": 139216635
+ },
+ {
+ "batchNumber": 4286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146843635,
+ "shortestRoundTripNano": 60679467,
+ "longestRoundTripNano": 176946161,
+ "averageApexExecutionNano": 62734217,
+ "shortestApexExecutionNano": 9722538,
+ "longestApexExecutionNano": 126802081
+ },
+ {
+ "batchNumber": 4287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139121789,
+ "shortestRoundTripNano": 35064030,
+ "longestRoundTripNano": 168938148,
+ "averageApexExecutionNano": 49928833,
+ "shortestApexExecutionNano": 9309299,
+ "longestApexExecutionNano": 104440107
+ },
+ {
+ "batchNumber": 4288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144101701,
+ "shortestRoundTripNano": 49499386,
+ "longestRoundTripNano": 180125094,
+ "averageApexExecutionNano": 66900657,
+ "shortestApexExecutionNano": 12800487,
+ "longestApexExecutionNano": 122069306
+ },
+ {
+ "batchNumber": 4289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175702405,
+ "shortestRoundTripNano": 71356763,
+ "longestRoundTripNano": 201348198,
+ "averageApexExecutionNano": 59644122,
+ "shortestApexExecutionNano": 9174838,
+ "longestApexExecutionNano": 132768505
+ },
+ {
+ "batchNumber": 4290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136722803,
+ "shortestRoundTripNano": 52112266,
+ "longestRoundTripNano": 165470104,
+ "averageApexExecutionNano": 66215041,
+ "shortestApexExecutionNano": 12111493,
+ "longestApexExecutionNano": 128598761
+ },
+ {
+ "batchNumber": 4291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155502655,
+ "shortestRoundTripNano": 65967961,
+ "longestRoundTripNano": 189038511,
+ "averageApexExecutionNano": 67966478,
+ "shortestApexExecutionNano": 5789636,
+ "longestApexExecutionNano": 145086398
+ },
+ {
+ "batchNumber": 4292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170886444,
+ "shortestRoundTripNano": 78675147,
+ "longestRoundTripNano": 191810935,
+ "averageApexExecutionNano": 53633510,
+ "shortestApexExecutionNano": 7002829,
+ "longestApexExecutionNano": 129522524
+ },
+ {
+ "batchNumber": 4293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149674033,
+ "shortestRoundTripNano": 78632928,
+ "longestRoundTripNano": 181445527,
+ "averageApexExecutionNano": 66028986,
+ "shortestApexExecutionNano": 9843855,
+ "longestApexExecutionNano": 136158785
+ },
+ {
+ "batchNumber": 4294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156409433,
+ "shortestRoundTripNano": 97127510,
+ "longestRoundTripNano": 180867601,
+ "averageApexExecutionNano": 70305971,
+ "shortestApexExecutionNano": 7505031,
+ "longestApexExecutionNano": 130383913
+ },
+ {
+ "batchNumber": 4295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159995079,
+ "shortestRoundTripNano": 93047432,
+ "longestRoundTripNano": 186086428,
+ "averageApexExecutionNano": 66442894,
+ "shortestApexExecutionNano": 8080902,
+ "longestApexExecutionNano": 127655789
+ },
+ {
+ "batchNumber": 4296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150945723,
+ "shortestRoundTripNano": 56979864,
+ "longestRoundTripNano": 184628268,
+ "averageApexExecutionNano": 68635056,
+ "shortestApexExecutionNano": 7636058,
+ "longestApexExecutionNano": 135611398
+ },
+ {
+ "batchNumber": 4297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161122636,
+ "shortestRoundTripNano": 62337284,
+ "longestRoundTripNano": 196921174,
+ "averageApexExecutionNano": 56545651,
+ "shortestApexExecutionNano": 8335776,
+ "longestApexExecutionNano": 131552818
+ },
+ {
+ "batchNumber": 4298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165936814,
+ "shortestRoundTripNano": 81416977,
+ "longestRoundTripNano": 198861667,
+ "averageApexExecutionNano": 71245967,
+ "shortestApexExecutionNano": 10622173,
+ "longestApexExecutionNano": 142459869
+ },
+ {
+ "batchNumber": 4299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126855548,
+ "shortestRoundTripNano": 64315824,
+ "longestRoundTripNano": 152536508,
+ "averageApexExecutionNano": 52457592,
+ "shortestApexExecutionNano": 6136781,
+ "longestApexExecutionNano": 86551498
+ },
+ {
+ "batchNumber": 4300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36344",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165500202,
+ "shortestRoundTripNano": 55350532,
+ "longestRoundTripNano": 198141388,
+ "averageApexExecutionNano": 68614396,
+ "shortestApexExecutionNano": 7892780,
+ "longestApexExecutionNano": 137933707
+ },
+ {
+ "batchNumber": 4301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36346",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159655141,
+ "shortestRoundTripNano": 33834845,
+ "longestRoundTripNano": 190743009,
+ "averageApexExecutionNano": 52270807,
+ "shortestApexExecutionNano": 6783446,
+ "longestApexExecutionNano": 130486066
+ },
+ {
+ "batchNumber": 4302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36346",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142523966,
+ "shortestRoundTripNano": 63003390,
+ "longestRoundTripNano": 166619513,
+ "averageApexExecutionNano": 59983537,
+ "shortestApexExecutionNano": 9477107,
+ "longestApexExecutionNano": 117045909
+ },
+ {
+ "batchNumber": 4303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36346",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149831063,
+ "shortestRoundTripNano": 69270980,
+ "longestRoundTripNano": 179522610,
+ "averageApexExecutionNano": 61805844,
+ "shortestApexExecutionNano": 11108407,
+ "longestApexExecutionNano": 110967936
+ },
+ {
+ "batchNumber": 4304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36346",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189677517,
+ "shortestRoundTripNano": 46204265,
+ "longestRoundTripNano": 229073580,
+ "averageApexExecutionNano": 111351630,
+ "shortestApexExecutionNano": 8844774,
+ "longestApexExecutionNano": 177419688
+ },
+ {
+ "batchNumber": 4305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149104580,
+ "shortestRoundTripNano": 67878526,
+ "longestRoundTripNano": 180707733,
+ "averageApexExecutionNano": 75261540,
+ "shortestApexExecutionNano": 9582913,
+ "longestApexExecutionNano": 147525631
+ },
+ {
+ "batchNumber": 4306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141418386,
+ "shortestRoundTripNano": 85268055,
+ "longestRoundTripNano": 165602149,
+ "averageApexExecutionNano": 58920435,
+ "shortestApexExecutionNano": 11910975,
+ "longestApexExecutionNano": 114257995
+ },
+ {
+ "batchNumber": 4307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133701950,
+ "shortestRoundTripNano": 74219974,
+ "longestRoundTripNano": 156974619,
+ "averageApexExecutionNano": 58199069,
+ "shortestApexExecutionNano": 7246355,
+ "longestApexExecutionNano": 106438626
+ },
+ {
+ "batchNumber": 4308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128375458,
+ "shortestRoundTripNano": 48242783,
+ "longestRoundTripNano": 155802894,
+ "averageApexExecutionNano": 52341981,
+ "shortestApexExecutionNano": 9492756,
+ "longestApexExecutionNano": 105422278
+ },
+ {
+ "batchNumber": 4309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142875716,
+ "shortestRoundTripNano": 80485048,
+ "longestRoundTripNano": 170476281,
+ "averageApexExecutionNano": 38907709,
+ "shortestApexExecutionNano": 5425261,
+ "longestApexExecutionNano": 113772893
+ },
+ {
+ "batchNumber": 4310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36350",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114057095,
+ "shortestRoundTripNano": 58440846,
+ "longestRoundTripNano": 142531418,
+ "averageApexExecutionNano": 47282591,
+ "shortestApexExecutionNano": 6065994,
+ "longestApexExecutionNano": 107200687
+ },
+ {
+ "batchNumber": 4311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36350",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130576444,
+ "shortestRoundTripNano": 54621567,
+ "longestRoundTripNano": 162993913,
+ "averageApexExecutionNano": 47479599,
+ "shortestApexExecutionNano": 9558226,
+ "longestApexExecutionNano": 108284454
+ },
+ {
+ "batchNumber": 4312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142952185,
+ "shortestRoundTripNano": 48933448,
+ "longestRoundTripNano": 182539314,
+ "averageApexExecutionNano": 65710524,
+ "shortestApexExecutionNano": 10609715,
+ "longestApexExecutionNano": 128771519
+ },
+ {
+ "batchNumber": 4313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155633380,
+ "shortestRoundTripNano": 89061020,
+ "longestRoundTripNano": 184765248,
+ "averageApexExecutionNano": 71649198,
+ "shortestApexExecutionNano": 11690662,
+ "longestApexExecutionNano": 135252768
+ },
+ {
+ "batchNumber": 4314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172987905,
+ "shortestRoundTripNano": 62073219,
+ "longestRoundTripNano": 205496178,
+ "averageApexExecutionNano": 76416415,
+ "shortestApexExecutionNano": 10993461,
+ "longestApexExecutionNano": 138294175
+ },
+ {
+ "batchNumber": 4315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124922959,
+ "shortestRoundTripNano": 44306072,
+ "longestRoundTripNano": 162254141,
+ "averageApexExecutionNano": 58723579,
+ "shortestApexExecutionNano": 6661396,
+ "longestApexExecutionNano": 116312991
+ },
+ {
+ "batchNumber": 4316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125637992,
+ "shortestRoundTripNano": 69110822,
+ "longestRoundTripNano": 151267128,
+ "averageApexExecutionNano": 50589613,
+ "shortestApexExecutionNano": 6533543,
+ "longestApexExecutionNano": 100633642
+ },
+ {
+ "batchNumber": 4317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151510140,
+ "shortestRoundTripNano": 67821486,
+ "longestRoundTripNano": 180049922,
+ "averageApexExecutionNano": 69738062,
+ "shortestApexExecutionNano": 9703642,
+ "longestApexExecutionNano": 120100114
+ },
+ {
+ "batchNumber": 4318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141472503,
+ "shortestRoundTripNano": 61904399,
+ "longestRoundTripNano": 171368297,
+ "averageApexExecutionNano": 56692588,
+ "shortestApexExecutionNano": 12408458,
+ "longestApexExecutionNano": 122993504
+ },
+ {
+ "batchNumber": 4319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36354",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138152388,
+ "shortestRoundTripNano": 63996293,
+ "longestRoundTripNano": 168477327,
+ "averageApexExecutionNano": 58960978,
+ "shortestApexExecutionNano": 8664734,
+ "longestApexExecutionNano": 122010397
+ },
+ {
+ "batchNumber": 4320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140424556,
+ "shortestRoundTripNano": 63599506,
+ "longestRoundTripNano": 163680447,
+ "averageApexExecutionNano": 54751399,
+ "shortestApexExecutionNano": 7606541,
+ "longestApexExecutionNano": 102900989
+ },
+ {
+ "batchNumber": 4321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141501697,
+ "shortestRoundTripNano": 54678429,
+ "longestRoundTripNano": 171023363,
+ "averageApexExecutionNano": 62348889,
+ "shortestApexExecutionNano": 7009535,
+ "longestApexExecutionNano": 112446072
+ },
+ {
+ "batchNumber": 4322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144358378,
+ "shortestRoundTripNano": 54029395,
+ "longestRoundTripNano": 172896224,
+ "averageApexExecutionNano": 49964433,
+ "shortestApexExecutionNano": 9253249,
+ "longestApexExecutionNano": 114889727
+ },
+ {
+ "batchNumber": 4323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164464418,
+ "shortestRoundTripNano": 65536223,
+ "longestRoundTripNano": 199714901,
+ "averageApexExecutionNano": 78858702,
+ "shortestApexExecutionNano": 22672401,
+ "longestApexExecutionNano": 130347262
+ },
+ {
+ "batchNumber": 4324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143595818,
+ "shortestRoundTripNano": 52956777,
+ "longestRoundTripNano": 172632653,
+ "averageApexExecutionNano": 60292197,
+ "shortestApexExecutionNano": 16096831,
+ "longestApexExecutionNano": 111544100
+ },
+ {
+ "batchNumber": 4325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136642827,
+ "shortestRoundTripNano": 67191105,
+ "longestRoundTripNano": 165265729,
+ "averageApexExecutionNano": 57518615,
+ "shortestApexExecutionNano": 10765140,
+ "longestApexExecutionNano": 100507327
+ },
+ {
+ "batchNumber": 4326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137143807,
+ "shortestRoundTripNano": 44121979,
+ "longestRoundTripNano": 167869408,
+ "averageApexExecutionNano": 65382108,
+ "shortestApexExecutionNano": 10776682,
+ "longestApexExecutionNano": 115049152
+ },
+ {
+ "batchNumber": 4327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148062462,
+ "shortestRoundTripNano": 93804900,
+ "longestRoundTripNano": 174253881,
+ "averageApexExecutionNano": 59346924,
+ "shortestApexExecutionNano": 11802737,
+ "longestApexExecutionNano": 124333732
+ },
+ {
+ "batchNumber": 4328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124841116,
+ "shortestRoundTripNano": 53540731,
+ "longestRoundTripNano": 156037811,
+ "averageApexExecutionNano": 52133899,
+ "shortestApexExecutionNano": 11152067,
+ "longestApexExecutionNano": 105611395
+ },
+ {
+ "batchNumber": 4329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145522205,
+ "shortestRoundTripNano": 54625996,
+ "longestRoundTripNano": 176108426,
+ "averageApexExecutionNano": 51622015,
+ "shortestApexExecutionNano": 6941319,
+ "longestApexExecutionNano": 107948380
+ },
+ {
+ "batchNumber": 4330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126333609,
+ "shortestRoundTripNano": 30219058,
+ "longestRoundTripNano": 159443475,
+ "averageApexExecutionNano": 43503072,
+ "shortestApexExecutionNano": 6547862,
+ "longestApexExecutionNano": 100782744
+ },
+ {
+ "batchNumber": 4331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143646918,
+ "shortestRoundTripNano": 71942293,
+ "longestRoundTripNano": 172120281,
+ "averageApexExecutionNano": 64760267,
+ "shortestApexExecutionNano": 7696671,
+ "longestApexExecutionNano": 125403919
+ },
+ {
+ "batchNumber": 4332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147182638,
+ "shortestRoundTripNano": 61943629,
+ "longestRoundTripNano": 182959838,
+ "averageApexExecutionNano": 44480946,
+ "shortestApexExecutionNano": 7985054,
+ "longestApexExecutionNano": 114095392
+ },
+ {
+ "batchNumber": 4333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36356",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177890944,
+ "shortestRoundTripNano": 47722159,
+ "longestRoundTripNano": 209485896,
+ "averageApexExecutionNano": 82387789,
+ "shortestApexExecutionNano": 9354825,
+ "longestApexExecutionNano": 158032143
+ },
+ {
+ "batchNumber": 4334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142555218,
+ "shortestRoundTripNano": 82728999,
+ "longestRoundTripNano": 175659446,
+ "averageApexExecutionNano": 63118777,
+ "shortestApexExecutionNano": 17182819,
+ "longestApexExecutionNano": 112544901
+ },
+ {
+ "batchNumber": 4335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137861341,
+ "shortestRoundTripNano": 48706666,
+ "longestRoundTripNano": 193368675,
+ "averageApexExecutionNano": 62870992,
+ "shortestApexExecutionNano": 20840117,
+ "longestApexExecutionNano": 105294401
+ },
+ {
+ "batchNumber": 4336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135593605,
+ "shortestRoundTripNano": 61264017,
+ "longestRoundTripNano": 165552845,
+ "averageApexExecutionNano": 51282196,
+ "shortestApexExecutionNano": 8672902,
+ "longestApexExecutionNano": 118308981
+ },
+ {
+ "batchNumber": 4337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174115196,
+ "shortestRoundTripNano": 63846660,
+ "longestRoundTripNano": 213058253,
+ "averageApexExecutionNano": 65142668,
+ "shortestApexExecutionNano": 6530995,
+ "longestApexExecutionNano": 137883285
+ },
+ {
+ "batchNumber": 4338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139732547,
+ "shortestRoundTripNano": 70933571,
+ "longestRoundTripNano": 168929670,
+ "averageApexExecutionNano": 68372330,
+ "shortestApexExecutionNano": 8531604,
+ "longestApexExecutionNano": 123723543
+ },
+ {
+ "batchNumber": 4339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134025132,
+ "shortestRoundTripNano": 52639055,
+ "longestRoundTripNano": 166077591,
+ "averageApexExecutionNano": 42239979,
+ "shortestApexExecutionNano": 6257108,
+ "longestApexExecutionNano": 112918671
+ },
+ {
+ "batchNumber": 4340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144293988,
+ "shortestRoundTripNano": 59680461,
+ "longestRoundTripNano": 173455661,
+ "averageApexExecutionNano": 59562446,
+ "shortestApexExecutionNano": 5432085,
+ "longestApexExecutionNano": 115645093
+ },
+ {
+ "batchNumber": 4341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133837406,
+ "shortestRoundTripNano": 56213285,
+ "longestRoundTripNano": 169731834,
+ "averageApexExecutionNano": 54426239,
+ "shortestApexExecutionNano": 6767350,
+ "longestApexExecutionNano": 126902727
+ },
+ {
+ "batchNumber": 4342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154042031,
+ "shortestRoundTripNano": 60270371,
+ "longestRoundTripNano": 184535579,
+ "averageApexExecutionNano": 56672586,
+ "shortestApexExecutionNano": 6192942,
+ "longestApexExecutionNano": 142348020
+ },
+ {
+ "batchNumber": 4343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150827827,
+ "shortestRoundTripNano": 48027824,
+ "longestRoundTripNano": 192974879,
+ "averageApexExecutionNano": 52229447,
+ "shortestApexExecutionNano": 10135897,
+ "longestApexExecutionNano": 95987985
+ },
+ {
+ "batchNumber": 4344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165005074,
+ "shortestRoundTripNano": 52847829,
+ "longestRoundTripNano": 202675848,
+ "averageApexExecutionNano": 76287637,
+ "shortestApexExecutionNano": 8016400,
+ "longestApexExecutionNano": 144310480
+ },
+ {
+ "batchNumber": 4345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137036995,
+ "shortestRoundTripNano": 44226070,
+ "longestRoundTripNano": 165487421,
+ "averageApexExecutionNano": 60695405,
+ "shortestApexExecutionNano": 5626276,
+ "longestApexExecutionNano": 116971356
+ },
+ {
+ "batchNumber": 4346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180612872,
+ "shortestRoundTripNano": 71580472,
+ "longestRoundTripNano": 212812048,
+ "averageApexExecutionNano": 59660911,
+ "shortestApexExecutionNano": 9780310,
+ "longestApexExecutionNano": 150923592
+ },
+ {
+ "batchNumber": 4347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139707104,
+ "shortestRoundTripNano": 41572172,
+ "longestRoundTripNano": 166515192,
+ "averageApexExecutionNano": 60052484,
+ "shortestApexExecutionNano": 7376201,
+ "longestApexExecutionNano": 120576998
+ },
+ {
+ "batchNumber": 4348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153686744,
+ "shortestRoundTripNano": 75266166,
+ "longestRoundTripNano": 183004243,
+ "averageApexExecutionNano": 61348822,
+ "shortestApexExecutionNano": 7636474,
+ "longestApexExecutionNano": 138998659
+ },
+ {
+ "batchNumber": 4349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152133151,
+ "shortestRoundTripNano": 66022610,
+ "longestRoundTripNano": 190654773,
+ "averageApexExecutionNano": 63007516,
+ "shortestApexExecutionNano": 10539297,
+ "longestApexExecutionNano": 124004192
+ },
+ {
+ "batchNumber": 4350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130210144,
+ "shortestRoundTripNano": 40702793,
+ "longestRoundTripNano": 160834287,
+ "averageApexExecutionNano": 58559097,
+ "shortestApexExecutionNano": 7518115,
+ "longestApexExecutionNano": 124294825
+ },
+ {
+ "batchNumber": 4351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150308280,
+ "shortestRoundTripNano": 56032388,
+ "longestRoundTripNano": 177251805,
+ "averageApexExecutionNano": 54688813,
+ "shortestApexExecutionNano": 6932163,
+ "longestApexExecutionNano": 119820999
+ },
+ {
+ "batchNumber": 4352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135839064,
+ "shortestRoundTripNano": 57105576,
+ "longestRoundTripNano": 159023541,
+ "averageApexExecutionNano": 49330041,
+ "shortestApexExecutionNano": 8014767,
+ "longestApexExecutionNano": 113372025
+ },
+ {
+ "batchNumber": 4353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36366",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128736226,
+ "shortestRoundTripNano": 46674884,
+ "longestRoundTripNano": 157803815,
+ "averageApexExecutionNano": 53075596,
+ "shortestApexExecutionNano": 7252094,
+ "longestApexExecutionNano": 104831803
+ },
+ {
+ "batchNumber": 4354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142072842,
+ "shortestRoundTripNano": 67178086,
+ "longestRoundTripNano": 175284740,
+ "averageApexExecutionNano": 58621835,
+ "shortestApexExecutionNano": 5814955,
+ "longestApexExecutionNano": 118714994
+ },
+ {
+ "batchNumber": 4355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164201568,
+ "shortestRoundTripNano": 68520833,
+ "longestRoundTripNano": 201719104,
+ "averageApexExecutionNano": 63368020,
+ "shortestApexExecutionNano": 7631468,
+ "longestApexExecutionNano": 134638223
+ },
+ {
+ "batchNumber": 4356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137848050,
+ "shortestRoundTripNano": 64213609,
+ "longestRoundTripNano": 169286829,
+ "averageApexExecutionNano": 45757203,
+ "shortestApexExecutionNano": 8478851,
+ "longestApexExecutionNano": 92870753
+ },
+ {
+ "batchNumber": 4357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163533582,
+ "shortestRoundTripNano": 64407155,
+ "longestRoundTripNano": 199722343,
+ "averageApexExecutionNano": 76784550,
+ "shortestApexExecutionNano": 7240830,
+ "longestApexExecutionNano": 149706120
+ },
+ {
+ "batchNumber": 4358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157141490,
+ "shortestRoundTripNano": 76198009,
+ "longestRoundTripNano": 180899788,
+ "averageApexExecutionNano": 51037266,
+ "shortestApexExecutionNano": 8574104,
+ "longestApexExecutionNano": 113480910
+ },
+ {
+ "batchNumber": 4359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135157189,
+ "shortestRoundTripNano": 68780957,
+ "longestRoundTripNano": 169726164,
+ "averageApexExecutionNano": 50577609,
+ "shortestApexExecutionNano": 5063411,
+ "longestApexExecutionNano": 126252208
+ },
+ {
+ "batchNumber": 4360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127327104,
+ "shortestRoundTripNano": 86950433,
+ "longestRoundTripNano": 146289884,
+ "averageApexExecutionNano": 58271893,
+ "shortestApexExecutionNano": 11887330,
+ "longestApexExecutionNano": 106051087
+ },
+ {
+ "batchNumber": 4361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147021369,
+ "shortestRoundTripNano": 60663997,
+ "longestRoundTripNano": 179270905,
+ "averageApexExecutionNano": 54391144,
+ "shortestApexExecutionNano": 8326599,
+ "longestApexExecutionNano": 112592438
+ },
+ {
+ "batchNumber": 4362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137036902,
+ "shortestRoundTripNano": 39681042,
+ "longestRoundTripNano": 171701388,
+ "averageApexExecutionNano": 64912002,
+ "shortestApexExecutionNano": 6793708,
+ "longestApexExecutionNano": 119398134
+ },
+ {
+ "batchNumber": 4363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133345667,
+ "shortestRoundTripNano": 66904563,
+ "longestRoundTripNano": 160677695,
+ "averageApexExecutionNano": 54815772,
+ "shortestApexExecutionNano": 8076195,
+ "longestApexExecutionNano": 95713411
+ },
+ {
+ "batchNumber": 4364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145645085,
+ "shortestRoundTripNano": 54014133,
+ "longestRoundTripNano": 204990789,
+ "averageApexExecutionNano": 49531300,
+ "shortestApexExecutionNano": 6539047,
+ "longestApexExecutionNano": 112265241
+ },
+ {
+ "batchNumber": 4365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146806577,
+ "shortestRoundTripNano": 80459250,
+ "longestRoundTripNano": 176555511,
+ "averageApexExecutionNano": 63790777,
+ "shortestApexExecutionNano": 11231891,
+ "longestApexExecutionNano": 125896277
+ },
+ {
+ "batchNumber": 4366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148840862,
+ "shortestRoundTripNano": 74848434,
+ "longestRoundTripNano": 181363568,
+ "averageApexExecutionNano": 64212884,
+ "shortestApexExecutionNano": 6203233,
+ "longestApexExecutionNano": 121720451
+ },
+ {
+ "batchNumber": 4367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149230971,
+ "shortestRoundTripNano": 76617559,
+ "longestRoundTripNano": 172075641,
+ "averageApexExecutionNano": 63602263,
+ "shortestApexExecutionNano": 5109332,
+ "longestApexExecutionNano": 110145738
+ },
+ {
+ "batchNumber": 4368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149918737,
+ "shortestRoundTripNano": 52568041,
+ "longestRoundTripNano": 179850757,
+ "averageApexExecutionNano": 63266875,
+ "shortestApexExecutionNano": 9648840,
+ "longestApexExecutionNano": 126637936
+ },
+ {
+ "batchNumber": 4369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143348031,
+ "shortestRoundTripNano": 69583777,
+ "longestRoundTripNano": 176879659,
+ "averageApexExecutionNano": 46803759,
+ "shortestApexExecutionNano": 7029651,
+ "longestApexExecutionNano": 109752725
+ },
+ {
+ "batchNumber": 4370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143158369,
+ "shortestRoundTripNano": 53770647,
+ "longestRoundTripNano": 178938182,
+ "averageApexExecutionNano": 69539054,
+ "shortestApexExecutionNano": 5615889,
+ "longestApexExecutionNano": 129120060
+ },
+ {
+ "batchNumber": 4371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183217755,
+ "shortestRoundTripNano": 92678435,
+ "longestRoundTripNano": 214403913,
+ "averageApexExecutionNano": 100889535,
+ "shortestApexExecutionNano": 8246597,
+ "longestApexExecutionNano": 170197424
+ },
+ {
+ "batchNumber": 4372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156178080,
+ "shortestRoundTripNano": 72652740,
+ "longestRoundTripNano": 184897572,
+ "averageApexExecutionNano": 62409337,
+ "shortestApexExecutionNano": 9580868,
+ "longestApexExecutionNano": 123011467
+ },
+ {
+ "batchNumber": 4373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137076543,
+ "shortestRoundTripNano": 74218611,
+ "longestRoundTripNano": 166125139,
+ "averageApexExecutionNano": 66692815,
+ "shortestApexExecutionNano": 10480859,
+ "longestApexExecutionNano": 114869449
+ },
+ {
+ "batchNumber": 4374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138032911,
+ "shortestRoundTripNano": 55888613,
+ "longestRoundTripNano": 166809211,
+ "averageApexExecutionNano": 59282117,
+ "shortestApexExecutionNano": 11556380,
+ "longestApexExecutionNano": 126085641
+ },
+ {
+ "batchNumber": 4375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150594598,
+ "shortestRoundTripNano": 72148281,
+ "longestRoundTripNano": 182630848,
+ "averageApexExecutionNano": 55027206,
+ "shortestApexExecutionNano": 6991594,
+ "longestApexExecutionNano": 120221439
+ },
+ {
+ "batchNumber": 4376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148698707,
+ "shortestRoundTripNano": 67669776,
+ "longestRoundTripNano": 178151715,
+ "averageApexExecutionNano": 50523452,
+ "shortestApexExecutionNano": 7367298,
+ "longestApexExecutionNano": 121277432
+ },
+ {
+ "batchNumber": 4377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145554166,
+ "shortestRoundTripNano": 65297906,
+ "longestRoundTripNano": 172693752,
+ "averageApexExecutionNano": 54573067,
+ "shortestApexExecutionNano": 6305248,
+ "longestApexExecutionNano": 114986389
+ },
+ {
+ "batchNumber": 4378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 232674973,
+ "shortestRoundTripNano": 63611751,
+ "longestRoundTripNano": 277182363,
+ "averageApexExecutionNano": 130583260,
+ "shortestApexExecutionNano": 13172109,
+ "longestApexExecutionNano": 232493708
+ },
+ {
+ "batchNumber": 4379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149034808,
+ "shortestRoundTripNano": 76959806,
+ "longestRoundTripNano": 172501592,
+ "averageApexExecutionNano": 60516365,
+ "shortestApexExecutionNano": 14819268,
+ "longestApexExecutionNano": 118229154
+ },
+ {
+ "batchNumber": 4380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36376",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185632677,
+ "shortestRoundTripNano": 66294436,
+ "longestRoundTripNano": 213412005,
+ "averageApexExecutionNano": 86019101,
+ "shortestApexExecutionNano": 7081827,
+ "longestApexExecutionNano": 154267377
+ },
+ {
+ "batchNumber": 4381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134197205,
+ "shortestRoundTripNano": 56017645,
+ "longestRoundTripNano": 164049898,
+ "averageApexExecutionNano": 61003596,
+ "shortestApexExecutionNano": 5292247,
+ "longestApexExecutionNano": 127027900
+ },
+ {
+ "batchNumber": 4382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155610507,
+ "shortestRoundTripNano": 70034914,
+ "longestRoundTripNano": 191191084,
+ "averageApexExecutionNano": 47374386,
+ "shortestApexExecutionNano": 5087949,
+ "longestApexExecutionNano": 106057899
+ },
+ {
+ "batchNumber": 4383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136762549,
+ "shortestRoundTripNano": 32899005,
+ "longestRoundTripNano": 169611760,
+ "averageApexExecutionNano": 69114789,
+ "shortestApexExecutionNano": 4505337,
+ "longestApexExecutionNano": 125692135
+ },
+ {
+ "batchNumber": 4384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146502086,
+ "shortestRoundTripNano": 42473324,
+ "longestRoundTripNano": 170299469,
+ "averageApexExecutionNano": 57842039,
+ "shortestApexExecutionNano": 7315215,
+ "longestApexExecutionNano": 127011765
+ },
+ {
+ "batchNumber": 4385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157841191,
+ "shortestRoundTripNano": 63848575,
+ "longestRoundTripNano": 210509469,
+ "averageApexExecutionNano": 61180442,
+ "shortestApexExecutionNano": 8130943,
+ "longestApexExecutionNano": 116907471
+ },
+ {
+ "batchNumber": 4386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 190721699,
+ "shortestRoundTripNano": 100388908,
+ "longestRoundTripNano": 225664312,
+ "averageApexExecutionNano": 68747738,
+ "shortestApexExecutionNano": 12247979,
+ "longestApexExecutionNano": 125983867
+ },
+ {
+ "batchNumber": 4387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142305199,
+ "shortestRoundTripNano": 46336684,
+ "longestRoundTripNano": 169495808,
+ "averageApexExecutionNano": 67922359,
+ "shortestApexExecutionNano": 5217443,
+ "longestApexExecutionNano": 129813663
+ },
+ {
+ "batchNumber": 4388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146335168,
+ "shortestRoundTripNano": 38970609,
+ "longestRoundTripNano": 179047282,
+ "averageApexExecutionNano": 72773657,
+ "shortestApexExecutionNano": 8973134,
+ "longestApexExecutionNano": 132817952
+ },
+ {
+ "batchNumber": 4389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140457103,
+ "shortestRoundTripNano": 59120071,
+ "longestRoundTripNano": 167239656,
+ "averageApexExecutionNano": 54371026,
+ "shortestApexExecutionNano": 9617118,
+ "longestApexExecutionNano": 115188766
+ },
+ {
+ "batchNumber": 4390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147137820,
+ "shortestRoundTripNano": 66215609,
+ "longestRoundTripNano": 184923230,
+ "averageApexExecutionNano": 53761358,
+ "shortestApexExecutionNano": 6931551,
+ "longestApexExecutionNano": 110415653
+ },
+ {
+ "batchNumber": 4391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131269677,
+ "shortestRoundTripNano": 56977730,
+ "longestRoundTripNano": 155148478,
+ "averageApexExecutionNano": 49552518,
+ "shortestApexExecutionNano": 7257415,
+ "longestApexExecutionNano": 111762304
+ },
+ {
+ "batchNumber": 4392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147267655,
+ "shortestRoundTripNano": 73279489,
+ "longestRoundTripNano": 180821809,
+ "averageApexExecutionNano": 61612209,
+ "shortestApexExecutionNano": 13290306,
+ "longestApexExecutionNano": 124738764
+ },
+ {
+ "batchNumber": 4393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149099819,
+ "shortestRoundTripNano": 82603022,
+ "longestRoundTripNano": 174105131,
+ "averageApexExecutionNano": 64393518,
+ "shortestApexExecutionNano": 19783711,
+ "longestApexExecutionNano": 109686287
+ },
+ {
+ "batchNumber": 4394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154207414,
+ "shortestRoundTripNano": 86618976,
+ "longestRoundTripNano": 180433090,
+ "averageApexExecutionNano": 70777048,
+ "shortestApexExecutionNano": 10460116,
+ "longestApexExecutionNano": 137768888
+ },
+ {
+ "batchNumber": 4395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172155664,
+ "shortestRoundTripNano": 86502937,
+ "longestRoundTripNano": 204150470,
+ "averageApexExecutionNano": 69596104,
+ "shortestApexExecutionNano": 16791665,
+ "longestApexExecutionNano": 152002220
+ },
+ {
+ "batchNumber": 4396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139703470,
+ "shortestRoundTripNano": 47013452,
+ "longestRoundTripNano": 165863831,
+ "averageApexExecutionNano": 66047934,
+ "shortestApexExecutionNano": 7831283,
+ "longestApexExecutionNano": 122827470
+ },
+ {
+ "batchNumber": 4397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152473172,
+ "shortestRoundTripNano": 61805116,
+ "longestRoundTripNano": 175738799,
+ "averageApexExecutionNano": 48634815,
+ "shortestApexExecutionNano": 6881551,
+ "longestApexExecutionNano": 125881922
+ },
+ {
+ "batchNumber": 4398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140174370,
+ "shortestRoundTripNano": 62138718,
+ "longestRoundTripNano": 177047741,
+ "averageApexExecutionNano": 58278846,
+ "shortestApexExecutionNano": 13409323,
+ "longestApexExecutionNano": 130458261
+ },
+ {
+ "batchNumber": 4399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153315488,
+ "shortestRoundTripNano": 77675437,
+ "longestRoundTripNano": 178659050,
+ "averageApexExecutionNano": 64639086,
+ "shortestApexExecutionNano": 11890235,
+ "longestApexExecutionNano": 122493429
+ },
+ {
+ "batchNumber": 4400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152348076,
+ "shortestRoundTripNano": 68301725,
+ "longestRoundTripNano": 189949966,
+ "averageApexExecutionNano": 73753137,
+ "shortestApexExecutionNano": 8617082,
+ "longestApexExecutionNano": 134511327
+ },
+ {
+ "batchNumber": 4401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148214379,
+ "shortestRoundTripNano": 51859131,
+ "longestRoundTripNano": 177215571,
+ "averageApexExecutionNano": 46031935,
+ "shortestApexExecutionNano": 6716790,
+ "longestApexExecutionNano": 115722914
+ },
+ {
+ "batchNumber": 4402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162534866,
+ "shortestRoundTripNano": 73822004,
+ "longestRoundTripNano": 193574771,
+ "averageApexExecutionNano": 77490557,
+ "shortestApexExecutionNano": 21953432,
+ "longestApexExecutionNano": 127075198
+ },
+ {
+ "batchNumber": 4403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160409813,
+ "shortestRoundTripNano": 36599986,
+ "longestRoundTripNano": 201398369,
+ "averageApexExecutionNano": 67832543,
+ "shortestApexExecutionNano": 10326930,
+ "longestApexExecutionNano": 145041180
+ },
+ {
+ "batchNumber": 4404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166418241,
+ "shortestRoundTripNano": 60667209,
+ "longestRoundTripNano": 197431796,
+ "averageApexExecutionNano": 61394880,
+ "shortestApexExecutionNano": 7258688,
+ "longestApexExecutionNano": 121449016
+ },
+ {
+ "batchNumber": 4405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140852779,
+ "shortestRoundTripNano": 74663469,
+ "longestRoundTripNano": 166806187,
+ "averageApexExecutionNano": 62602657,
+ "shortestApexExecutionNano": 10699222,
+ "longestApexExecutionNano": 124845477
+ },
+ {
+ "batchNumber": 4406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131758891,
+ "shortestRoundTripNano": 57812994,
+ "longestRoundTripNano": 162531958,
+ "averageApexExecutionNano": 42141998,
+ "shortestApexExecutionNano": 6300642,
+ "longestApexExecutionNano": 122130602
+ },
+ {
+ "batchNumber": 4407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139826343,
+ "shortestRoundTripNano": 74286152,
+ "longestRoundTripNano": 165960488,
+ "averageApexExecutionNano": 62182871,
+ "shortestApexExecutionNano": 7253692,
+ "longestApexExecutionNano": 115367771
+ },
+ {
+ "batchNumber": 4408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130843742,
+ "shortestRoundTripNano": 56962667,
+ "longestRoundTripNano": 153335635,
+ "averageApexExecutionNano": 55057140,
+ "shortestApexExecutionNano": 12625859,
+ "longestApexExecutionNano": 117115722
+ },
+ {
+ "batchNumber": 4409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125821044,
+ "shortestRoundTripNano": 64166540,
+ "longestRoundTripNano": 149290721,
+ "averageApexExecutionNano": 62386665,
+ "shortestApexExecutionNano": 15641305,
+ "longestApexExecutionNano": 102387799
+ },
+ {
+ "batchNumber": 4410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136264357,
+ "shortestRoundTripNano": 56111118,
+ "longestRoundTripNano": 170743005,
+ "averageApexExecutionNano": 48267392,
+ "shortestApexExecutionNano": 9728668,
+ "longestApexExecutionNano": 111394239
+ },
+ {
+ "batchNumber": 4411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144879744,
+ "shortestRoundTripNano": 51325394,
+ "longestRoundTripNano": 174354050,
+ "averageApexExecutionNano": 71003273,
+ "shortestApexExecutionNano": 11124551,
+ "longestApexExecutionNano": 125938968
+ },
+ {
+ "batchNumber": 4412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154070586,
+ "shortestRoundTripNano": 51592527,
+ "longestRoundTripNano": 186858170,
+ "averageApexExecutionNano": 67074671,
+ "shortestApexExecutionNano": 8128886,
+ "longestApexExecutionNano": 129852399
+ },
+ {
+ "batchNumber": 4413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130723375,
+ "shortestRoundTripNano": 49581941,
+ "longestRoundTripNano": 167658138,
+ "averageApexExecutionNano": 48933719,
+ "shortestApexExecutionNano": 8166132,
+ "longestApexExecutionNano": 112432635
+ },
+ {
+ "batchNumber": 4414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128304106,
+ "shortestRoundTripNano": 56530635,
+ "longestRoundTripNano": 155101825,
+ "averageApexExecutionNano": 45465234,
+ "shortestApexExecutionNano": 6556232,
+ "longestApexExecutionNano": 91201292
+ },
+ {
+ "batchNumber": 4415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148393840,
+ "shortestRoundTripNano": 55934118,
+ "longestRoundTripNano": 173412747,
+ "averageApexExecutionNano": 70513137,
+ "shortestApexExecutionNano": 10843538,
+ "longestApexExecutionNano": 128483942
+ },
+ {
+ "batchNumber": 4416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129731229,
+ "shortestRoundTripNano": 65983828,
+ "longestRoundTripNano": 156474541,
+ "averageApexExecutionNano": 48954224,
+ "shortestApexExecutionNano": 7079367,
+ "longestApexExecutionNano": 110279681
+ },
+ {
+ "batchNumber": 4417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129648325,
+ "shortestRoundTripNano": 44584661,
+ "longestRoundTripNano": 160501371,
+ "averageApexExecutionNano": 49117743,
+ "shortestApexExecutionNano": 8121186,
+ "longestApexExecutionNano": 104410146
+ },
+ {
+ "batchNumber": 4418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140044926,
+ "shortestRoundTripNano": 68053275,
+ "longestRoundTripNano": 167626647,
+ "averageApexExecutionNano": 41973645,
+ "shortestApexExecutionNano": 7875418,
+ "longestApexExecutionNano": 92596474
+ },
+ {
+ "batchNumber": 4419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36378",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144050697,
+ "shortestRoundTripNano": 60884264,
+ "longestRoundTripNano": 178813117,
+ "averageApexExecutionNano": 74102400,
+ "shortestApexExecutionNano": 14556550,
+ "longestApexExecutionNano": 128543169
+ },
+ {
+ "batchNumber": 4420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146592362,
+ "shortestRoundTripNano": 66825404,
+ "longestRoundTripNano": 172306664,
+ "averageApexExecutionNano": 71578985,
+ "shortestApexExecutionNano": 9271935,
+ "longestApexExecutionNano": 134986859
+ },
+ {
+ "batchNumber": 4421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132021763,
+ "shortestRoundTripNano": 61101152,
+ "longestRoundTripNano": 156839417,
+ "averageApexExecutionNano": 53194409,
+ "shortestApexExecutionNano": 7638882,
+ "longestApexExecutionNano": 109752205
+ },
+ {
+ "batchNumber": 4422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139658282,
+ "shortestRoundTripNano": 79458912,
+ "longestRoundTripNano": 170270424,
+ "averageApexExecutionNano": 65859093,
+ "shortestApexExecutionNano": 9711683,
+ "longestApexExecutionNano": 114267556
+ },
+ {
+ "batchNumber": 4423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137283439,
+ "shortestRoundTripNano": 71235775,
+ "longestRoundTripNano": 160297143,
+ "averageApexExecutionNano": 48674153,
+ "shortestApexExecutionNano": 7120948,
+ "longestApexExecutionNano": 105599462
+ },
+ {
+ "batchNumber": 4424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128358230,
+ "shortestRoundTripNano": 58609869,
+ "longestRoundTripNano": 156979255,
+ "averageApexExecutionNano": 56454561,
+ "shortestApexExecutionNano": 8573031,
+ "longestApexExecutionNano": 116883650
+ },
+ {
+ "batchNumber": 4425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151759073,
+ "shortestRoundTripNano": 59190408,
+ "longestRoundTripNano": 182892377,
+ "averageApexExecutionNano": 64805142,
+ "shortestApexExecutionNano": 13682915,
+ "longestApexExecutionNano": 127801541
+ },
+ {
+ "batchNumber": 4426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152099938,
+ "shortestRoundTripNano": 57732115,
+ "longestRoundTripNano": 186715046,
+ "averageApexExecutionNano": 66531932,
+ "shortestApexExecutionNano": 12897678,
+ "longestApexExecutionNano": 118038267
+ },
+ {
+ "batchNumber": 4427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150510907,
+ "shortestRoundTripNano": 75707844,
+ "longestRoundTripNano": 187071013,
+ "averageApexExecutionNano": 65359037,
+ "shortestApexExecutionNano": 7149167,
+ "longestApexExecutionNano": 138449112
+ },
+ {
+ "batchNumber": 4428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157678918,
+ "shortestRoundTripNano": 77025967,
+ "longestRoundTripNano": 190807269,
+ "averageApexExecutionNano": 60591543,
+ "shortestApexExecutionNano": 10751786,
+ "longestApexExecutionNano": 129183960
+ },
+ {
+ "batchNumber": 4429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137447002,
+ "shortestRoundTripNano": 67551787,
+ "longestRoundTripNano": 171093431,
+ "averageApexExecutionNano": 68850358,
+ "shortestApexExecutionNano": 5950758,
+ "longestApexExecutionNano": 129665118
+ },
+ {
+ "batchNumber": 4430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137846798,
+ "shortestRoundTripNano": 53952118,
+ "longestRoundTripNano": 165484680,
+ "averageApexExecutionNano": 53187134,
+ "shortestApexExecutionNano": 10698918,
+ "longestApexExecutionNano": 108479552
+ },
+ {
+ "batchNumber": 4431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36398",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130286864,
+ "shortestRoundTripNano": 50068275,
+ "longestRoundTripNano": 155812556,
+ "averageApexExecutionNano": 44537287,
+ "shortestApexExecutionNano": 5292159,
+ "longestApexExecutionNano": 111723344
+ },
+ {
+ "batchNumber": 4432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36398",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134845503,
+ "shortestRoundTripNano": 79572481,
+ "longestRoundTripNano": 160057170,
+ "averageApexExecutionNano": 49756957,
+ "shortestApexExecutionNano": 5128081,
+ "longestApexExecutionNano": 109994659
+ },
+ {
+ "batchNumber": 4433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36398",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169996869,
+ "shortestRoundTripNano": 90318132,
+ "longestRoundTripNano": 197372163,
+ "averageApexExecutionNano": 75654010,
+ "shortestApexExecutionNano": 5857749,
+ "longestApexExecutionNano": 142864930
+ },
+ {
+ "batchNumber": 4434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36398",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148979177,
+ "shortestRoundTripNano": 72938882,
+ "longestRoundTripNano": 178848799,
+ "averageApexExecutionNano": 56280863,
+ "shortestApexExecutionNano": 10363439,
+ "longestApexExecutionNano": 108799614
+ },
+ {
+ "batchNumber": 4435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36398",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158078282,
+ "shortestRoundTripNano": 43824471,
+ "longestRoundTripNano": 180464787,
+ "averageApexExecutionNano": 67543911,
+ "shortestApexExecutionNano": 11432761,
+ "longestApexExecutionNano": 125552593
+ },
+ {
+ "batchNumber": 4436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139621532,
+ "shortestRoundTripNano": 42552302,
+ "longestRoundTripNano": 182986522,
+ "averageApexExecutionNano": 52263615,
+ "shortestApexExecutionNano": 6296842,
+ "longestApexExecutionNano": 124035975
+ },
+ {
+ "batchNumber": 4437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147056348,
+ "shortestRoundTripNano": 81162689,
+ "longestRoundTripNano": 172162577,
+ "averageApexExecutionNano": 75474603,
+ "shortestApexExecutionNano": 6702960,
+ "longestApexExecutionNano": 126646894
+ },
+ {
+ "batchNumber": 4438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156185285,
+ "shortestRoundTripNano": 63789550,
+ "longestRoundTripNano": 189454706,
+ "averageApexExecutionNano": 62076470,
+ "shortestApexExecutionNano": 5087770,
+ "longestApexExecutionNano": 152598576
+ },
+ {
+ "batchNumber": 4439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154245150,
+ "shortestRoundTripNano": 50199194,
+ "longestRoundTripNano": 193402048,
+ "averageApexExecutionNano": 73122210,
+ "shortestApexExecutionNano": 7469376,
+ "longestApexExecutionNano": 149062538
+ },
+ {
+ "batchNumber": 4440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36402",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121056064,
+ "shortestRoundTripNano": 59274001,
+ "longestRoundTripNano": 142449738,
+ "averageApexExecutionNano": 58039772,
+ "shortestApexExecutionNano": 8056866,
+ "longestApexExecutionNano": 105995401
+ },
+ {
+ "batchNumber": 4441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136080788,
+ "shortestRoundTripNano": 62714239,
+ "longestRoundTripNano": 164551987,
+ "averageApexExecutionNano": 54897999,
+ "shortestApexExecutionNano": 7335098,
+ "longestApexExecutionNano": 112540197
+ },
+ {
+ "batchNumber": 4442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141207128,
+ "shortestRoundTripNano": 81281332,
+ "longestRoundTripNano": 166195788,
+ "averageApexExecutionNano": 52641205,
+ "shortestApexExecutionNano": 10036564,
+ "longestApexExecutionNano": 103521700
+ },
+ {
+ "batchNumber": 4443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147280157,
+ "shortestRoundTripNano": 70467046,
+ "longestRoundTripNano": 174609886,
+ "averageApexExecutionNano": 56652261,
+ "shortestApexExecutionNano": 8033548,
+ "longestApexExecutionNano": 106860691
+ },
+ {
+ "batchNumber": 4444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153662059,
+ "shortestRoundTripNano": 76889001,
+ "longestRoundTripNano": 185817094,
+ "averageApexExecutionNano": 70222006,
+ "shortestApexExecutionNano": 10637604,
+ "longestApexExecutionNano": 118938003
+ },
+ {
+ "batchNumber": 4445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149154397,
+ "shortestRoundTripNano": 60712300,
+ "longestRoundTripNano": 179308457,
+ "averageApexExecutionNano": 55770726,
+ "shortestApexExecutionNano": 9166266,
+ "longestApexExecutionNano": 131617667
+ },
+ {
+ "batchNumber": 4446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161524365,
+ "shortestRoundTripNano": 53830549,
+ "longestRoundTripNano": 190925681,
+ "averageApexExecutionNano": 58417395,
+ "shortestApexExecutionNano": 11868106,
+ "longestApexExecutionNano": 124541894
+ },
+ {
+ "batchNumber": 4447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127700899,
+ "shortestRoundTripNano": 62619599,
+ "longestRoundTripNano": 149198708,
+ "averageApexExecutionNano": 51071966,
+ "shortestApexExecutionNano": 7042178,
+ "longestApexExecutionNano": 94317877
+ },
+ {
+ "batchNumber": 4448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164805735,
+ "shortestRoundTripNano": 66521160,
+ "longestRoundTripNano": 193587018,
+ "averageApexExecutionNano": 64744591,
+ "shortestApexExecutionNano": 9549872,
+ "longestApexExecutionNano": 144746671
+ },
+ {
+ "batchNumber": 4449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121519072,
+ "shortestRoundTripNano": 68241672,
+ "longestRoundTripNano": 151314740,
+ "averageApexExecutionNano": 61703890,
+ "shortestApexExecutionNano": 7925957,
+ "longestApexExecutionNano": 110486306
+ },
+ {
+ "batchNumber": 4450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142203615,
+ "shortestRoundTripNano": 64202733,
+ "longestRoundTripNano": 166480180,
+ "averageApexExecutionNano": 54186886,
+ "shortestApexExecutionNano": 9041351,
+ "longestApexExecutionNano": 118645522
+ },
+ {
+ "batchNumber": 4451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144580470,
+ "shortestRoundTripNano": 58390962,
+ "longestRoundTripNano": 187542330,
+ "averageApexExecutionNano": 64172205,
+ "shortestApexExecutionNano": 5683628,
+ "longestApexExecutionNano": 134288603
+ },
+ {
+ "batchNumber": 4452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36406",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142593792,
+ "shortestRoundTripNano": 68188068,
+ "longestRoundTripNano": 175700484,
+ "averageApexExecutionNano": 49317022,
+ "shortestApexExecutionNano": 7133475,
+ "longestApexExecutionNano": 100684684
+ },
+ {
+ "batchNumber": 4453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36406",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132085786,
+ "shortestRoundTripNano": 72447758,
+ "longestRoundTripNano": 162199367,
+ "averageApexExecutionNano": 63814774,
+ "shortestApexExecutionNano": 10389096,
+ "longestApexExecutionNano": 112969404
+ },
+ {
+ "batchNumber": 4454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136627703,
+ "shortestRoundTripNano": 60787651,
+ "longestRoundTripNano": 169148687,
+ "averageApexExecutionNano": 52149645,
+ "shortestApexExecutionNano": 6739570,
+ "longestApexExecutionNano": 118896610
+ },
+ {
+ "batchNumber": 4455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143308674,
+ "shortestRoundTripNano": 64445015,
+ "longestRoundTripNano": 167717695,
+ "averageApexExecutionNano": 68551603,
+ "shortestApexExecutionNano": 7739692,
+ "longestApexExecutionNano": 125885338
+ },
+ {
+ "batchNumber": 4456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141913085,
+ "shortestRoundTripNano": 56852625,
+ "longestRoundTripNano": 174121918,
+ "averageApexExecutionNano": 71723077,
+ "shortestApexExecutionNano": 9898967,
+ "longestApexExecutionNano": 126524863
+ },
+ {
+ "batchNumber": 4457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136443557,
+ "shortestRoundTripNano": 73074210,
+ "longestRoundTripNano": 159461599,
+ "averageApexExecutionNano": 49431093,
+ "shortestApexExecutionNano": 5096308,
+ "longestApexExecutionNano": 95064056
+ },
+ {
+ "batchNumber": 4458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147883284,
+ "shortestRoundTripNano": 65769068,
+ "longestRoundTripNano": 175141121,
+ "averageApexExecutionNano": 52126427,
+ "shortestApexExecutionNano": 8210008,
+ "longestApexExecutionNano": 115885542
+ },
+ {
+ "batchNumber": 4459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144107701,
+ "shortestRoundTripNano": 60266831,
+ "longestRoundTripNano": 167002560,
+ "averageApexExecutionNano": 54282738,
+ "shortestApexExecutionNano": 7389034,
+ "longestApexExecutionNano": 119400826
+ },
+ {
+ "batchNumber": 4460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147728119,
+ "shortestRoundTripNano": 82691993,
+ "longestRoundTripNano": 172727110,
+ "averageApexExecutionNano": 65446731,
+ "shortestApexExecutionNano": 7726732,
+ "longestApexExecutionNano": 122918897
+ },
+ {
+ "batchNumber": 4461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126862255,
+ "shortestRoundTripNano": 60115264,
+ "longestRoundTripNano": 155259406,
+ "averageApexExecutionNano": 63494410,
+ "shortestApexExecutionNano": 8230372,
+ "longestApexExecutionNano": 103462830
+ },
+ {
+ "batchNumber": 4462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163853421,
+ "shortestRoundTripNano": 56032257,
+ "longestRoundTripNano": 196241911,
+ "averageApexExecutionNano": 73973812,
+ "shortestApexExecutionNano": 13250378,
+ "longestApexExecutionNano": 136282911
+ },
+ {
+ "batchNumber": 4463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126128486,
+ "shortestRoundTripNano": 53067365,
+ "longestRoundTripNano": 155558853,
+ "averageApexExecutionNano": 58475387,
+ "shortestApexExecutionNano": 6373408,
+ "longestApexExecutionNano": 104918378
+ },
+ {
+ "batchNumber": 4464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36410",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143945029,
+ "shortestRoundTripNano": 51908386,
+ "longestRoundTripNano": 175505606,
+ "averageApexExecutionNano": 56957854,
+ "shortestApexExecutionNano": 14519711,
+ "longestApexExecutionNano": 106721345
+ },
+ {
+ "batchNumber": 4465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134621743,
+ "shortestRoundTripNano": 65246410,
+ "longestRoundTripNano": 159751306,
+ "averageApexExecutionNano": 50147635,
+ "shortestApexExecutionNano": 10606792,
+ "longestApexExecutionNano": 94912457
+ },
+ {
+ "batchNumber": 4466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182802265,
+ "shortestRoundTripNano": 53704271,
+ "longestRoundTripNano": 218328436,
+ "averageApexExecutionNano": 84372790,
+ "shortestApexExecutionNano": 4371640,
+ "longestApexExecutionNano": 176658505
+ },
+ {
+ "batchNumber": 4467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131247232,
+ "shortestRoundTripNano": 60581736,
+ "longestRoundTripNano": 161593693,
+ "averageApexExecutionNano": 51902314,
+ "shortestApexExecutionNano": 8994390,
+ "longestApexExecutionNano": 118614915
+ },
+ {
+ "batchNumber": 4468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156611286,
+ "shortestRoundTripNano": 49129854,
+ "longestRoundTripNano": 193104385,
+ "averageApexExecutionNano": 56953696,
+ "shortestApexExecutionNano": 8513591,
+ "longestApexExecutionNano": 123684406
+ },
+ {
+ "batchNumber": 4469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141828218,
+ "shortestRoundTripNano": 50574950,
+ "longestRoundTripNano": 176034757,
+ "averageApexExecutionNano": 44916588,
+ "shortestApexExecutionNano": 8565524,
+ "longestApexExecutionNano": 122259509
+ },
+ {
+ "batchNumber": 4470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150196842,
+ "shortestRoundTripNano": 68735101,
+ "longestRoundTripNano": 177443786,
+ "averageApexExecutionNano": 64153351,
+ "shortestApexExecutionNano": 7929063,
+ "longestApexExecutionNano": 130457052
+ },
+ {
+ "batchNumber": 4471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129299039,
+ "shortestRoundTripNano": 60583873,
+ "longestRoundTripNano": 155521174,
+ "averageApexExecutionNano": 61250575,
+ "shortestApexExecutionNano": 10007686,
+ "longestApexExecutionNano": 121001862
+ },
+ {
+ "batchNumber": 4472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153058132,
+ "shortestRoundTripNano": 76827759,
+ "longestRoundTripNano": 189185232,
+ "averageApexExecutionNano": 71895300,
+ "shortestApexExecutionNano": 11177150,
+ "longestApexExecutionNano": 142712975
+ },
+ {
+ "batchNumber": 4473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157384847,
+ "shortestRoundTripNano": 82203133,
+ "longestRoundTripNano": 186481776,
+ "averageApexExecutionNano": 72129411,
+ "shortestApexExecutionNano": 8306822,
+ "longestApexExecutionNano": 146070926
+ },
+ {
+ "batchNumber": 4474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152166070,
+ "shortestRoundTripNano": 61741964,
+ "longestRoundTripNano": 190121789,
+ "averageApexExecutionNano": 65766471,
+ "shortestApexExecutionNano": 8459835,
+ "longestApexExecutionNano": 144586025
+ },
+ {
+ "batchNumber": 4475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141759293,
+ "shortestRoundTripNano": 80945639,
+ "longestRoundTripNano": 170081350,
+ "averageApexExecutionNano": 60256128,
+ "shortestApexExecutionNano": 9775113,
+ "longestApexExecutionNano": 116810387
+ },
+ {
+ "batchNumber": 4476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145664280,
+ "shortestRoundTripNano": 78050464,
+ "longestRoundTripNano": 171728863,
+ "averageApexExecutionNano": 43717652,
+ "shortestApexExecutionNano": 5994672,
+ "longestApexExecutionNano": 103719040
+ },
+ {
+ "batchNumber": 4477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159449435,
+ "shortestRoundTripNano": 92495466,
+ "longestRoundTripNano": 189896434,
+ "averageApexExecutionNano": 75242075,
+ "shortestApexExecutionNano": 18105448,
+ "longestApexExecutionNano": 139683794
+ },
+ {
+ "batchNumber": 4478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146299026,
+ "shortestRoundTripNano": 63496868,
+ "longestRoundTripNano": 174952418,
+ "averageApexExecutionNano": 56199452,
+ "shortestApexExecutionNano": 8461183,
+ "longestApexExecutionNano": 121058665
+ },
+ {
+ "batchNumber": 4479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164974576,
+ "shortestRoundTripNano": 74455343,
+ "longestRoundTripNano": 198439362,
+ "averageApexExecutionNano": 75092532,
+ "shortestApexExecutionNano": 9431095,
+ "longestApexExecutionNano": 143692576
+ },
+ {
+ "batchNumber": 4480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140240747,
+ "shortestRoundTripNano": 63317411,
+ "longestRoundTripNano": 178532716,
+ "averageApexExecutionNano": 46347565,
+ "shortestApexExecutionNano": 5566119,
+ "longestApexExecutionNano": 107063820
+ },
+ {
+ "batchNumber": 4481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151271798,
+ "shortestRoundTripNano": 43376107,
+ "longestRoundTripNano": 182469897,
+ "averageApexExecutionNano": 60080988,
+ "shortestApexExecutionNano": 8975143,
+ "longestApexExecutionNano": 135064956
+ },
+ {
+ "batchNumber": 4482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160731356,
+ "shortestRoundTripNano": 39572520,
+ "longestRoundTripNano": 188040696,
+ "averageApexExecutionNano": 67183259,
+ "shortestApexExecutionNano": 8126408,
+ "longestApexExecutionNano": 133324928
+ },
+ {
+ "batchNumber": 4483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147819892,
+ "shortestRoundTripNano": 64175396,
+ "longestRoundTripNano": 205055831,
+ "averageApexExecutionNano": 57858217,
+ "shortestApexExecutionNano": 7536421,
+ "longestApexExecutionNano": 124933074
+ },
+ {
+ "batchNumber": 4484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141710471,
+ "shortestRoundTripNano": 71784396,
+ "longestRoundTripNano": 167418492,
+ "averageApexExecutionNano": 66028686,
+ "shortestApexExecutionNano": 10374068,
+ "longestApexExecutionNano": 123381344
+ },
+ {
+ "batchNumber": 4485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149006549,
+ "shortestRoundTripNano": 60504834,
+ "longestRoundTripNano": 181843158,
+ "averageApexExecutionNano": 59368779,
+ "shortestApexExecutionNano": 7234214,
+ "longestApexExecutionNano": 123373715
+ },
+ {
+ "batchNumber": 4486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140288298,
+ "shortestRoundTripNano": 56711751,
+ "longestRoundTripNano": 168964318,
+ "averageApexExecutionNano": 57327503,
+ "shortestApexExecutionNano": 7421216,
+ "longestApexExecutionNano": 129862722
+ },
+ {
+ "batchNumber": 4487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143947427,
+ "shortestRoundTripNano": 68374053,
+ "longestRoundTripNano": 174684149,
+ "averageApexExecutionNano": 59091458,
+ "shortestApexExecutionNano": 8632922,
+ "longestApexExecutionNano": 119315333
+ },
+ {
+ "batchNumber": 4488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138108571,
+ "shortestRoundTripNano": 72154144,
+ "longestRoundTripNano": 167783509,
+ "averageApexExecutionNano": 74287934,
+ "shortestApexExecutionNano": 8865506,
+ "longestApexExecutionNano": 122890281
+ },
+ {
+ "batchNumber": 4489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144035830,
+ "shortestRoundTripNano": 72183722,
+ "longestRoundTripNano": 171359211,
+ "averageApexExecutionNano": 60413460,
+ "shortestApexExecutionNano": 7001193,
+ "longestApexExecutionNano": 122988997
+ },
+ {
+ "batchNumber": 4490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138383553,
+ "shortestRoundTripNano": 57695768,
+ "longestRoundTripNano": 169998957,
+ "averageApexExecutionNano": 43690742,
+ "shortestApexExecutionNano": 7730929,
+ "longestApexExecutionNano": 118527041
+ },
+ {
+ "batchNumber": 4491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156006856,
+ "shortestRoundTripNano": 51769994,
+ "longestRoundTripNano": 186392315,
+ "averageApexExecutionNano": 68858331,
+ "shortestApexExecutionNano": 9821449,
+ "longestApexExecutionNano": 127384771
+ },
+ {
+ "batchNumber": 4492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134921427,
+ "shortestRoundTripNano": 69265651,
+ "longestRoundTripNano": 168719711,
+ "averageApexExecutionNano": 53922116,
+ "shortestApexExecutionNano": 6163729,
+ "longestApexExecutionNano": 93719008
+ },
+ {
+ "batchNumber": 4493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129822883,
+ "shortestRoundTripNano": 68466086,
+ "longestRoundTripNano": 155046516,
+ "averageApexExecutionNano": 55553971,
+ "shortestApexExecutionNano": 9687679,
+ "longestApexExecutionNano": 103925524
+ },
+ {
+ "batchNumber": 4494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138642281,
+ "shortestRoundTripNano": 78630745,
+ "longestRoundTripNano": 169804180,
+ "averageApexExecutionNano": 54706992,
+ "shortestApexExecutionNano": 5096409,
+ "longestApexExecutionNano": 124054448
+ },
+ {
+ "batchNumber": 4495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168285562,
+ "shortestRoundTripNano": 87494642,
+ "longestRoundTripNano": 193747484,
+ "averageApexExecutionNano": 48669438,
+ "shortestApexExecutionNano": 10368587,
+ "longestApexExecutionNano": 96541001
+ },
+ {
+ "batchNumber": 4496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131134101,
+ "shortestRoundTripNano": 53316535,
+ "longestRoundTripNano": 166119945,
+ "averageApexExecutionNano": 51929543,
+ "shortestApexExecutionNano": 8142401,
+ "longestApexExecutionNano": 114598867
+ },
+ {
+ "batchNumber": 4497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147759180,
+ "shortestRoundTripNano": 63803395,
+ "longestRoundTripNano": 174691837,
+ "averageApexExecutionNano": 52647718,
+ "shortestApexExecutionNano": 9156217,
+ "longestApexExecutionNano": 117403281
+ },
+ {
+ "batchNumber": 4498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132343748,
+ "shortestRoundTripNano": 45436539,
+ "longestRoundTripNano": 157376259,
+ "averageApexExecutionNano": 60627515,
+ "shortestApexExecutionNano": 16262472,
+ "longestApexExecutionNano": 105808021
+ },
+ {
+ "batchNumber": 4499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134862455,
+ "shortestRoundTripNano": 56479085,
+ "longestRoundTripNano": 163589820,
+ "averageApexExecutionNano": 62300380,
+ "shortestApexExecutionNano": 8098588,
+ "longestApexExecutionNano": 107605032
+ },
+ {
+ "batchNumber": 4500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147449610,
+ "shortestRoundTripNano": 67947850,
+ "longestRoundTripNano": 172191079,
+ "averageApexExecutionNano": 53959237,
+ "shortestApexExecutionNano": 16393370,
+ "longestApexExecutionNano": 114216264
+ },
+ {
+ "batchNumber": 4501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122729263,
+ "shortestRoundTripNano": 40956618,
+ "longestRoundTripNano": 154084054,
+ "averageApexExecutionNano": 58439972,
+ "shortestApexExecutionNano": 10979333,
+ "longestApexExecutionNano": 114865226
+ },
+ {
+ "batchNumber": 4502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146552681,
+ "shortestRoundTripNano": 74206258,
+ "longestRoundTripNano": 179228512,
+ "averageApexExecutionNano": 62597939,
+ "shortestApexExecutionNano": 8163697,
+ "longestApexExecutionNano": 136920386
+ },
+ {
+ "batchNumber": 4503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139223421,
+ "shortestRoundTripNano": 62425872,
+ "longestRoundTripNano": 165373236,
+ "averageApexExecutionNano": 68966775,
+ "shortestApexExecutionNano": 11916480,
+ "longestApexExecutionNano": 115336757
+ },
+ {
+ "batchNumber": 4504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136624086,
+ "shortestRoundTripNano": 69361782,
+ "longestRoundTripNano": 173272107,
+ "averageApexExecutionNano": 58047179,
+ "shortestApexExecutionNano": 6692897,
+ "longestApexExecutionNano": 115557596
+ },
+ {
+ "batchNumber": 4505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129361228,
+ "shortestRoundTripNano": 39311534,
+ "longestRoundTripNano": 155579120,
+ "averageApexExecutionNano": 61301575,
+ "shortestApexExecutionNano": 8008529,
+ "longestApexExecutionNano": 109632478
+ },
+ {
+ "batchNumber": 4506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36428",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176367234,
+ "shortestRoundTripNano": 47474901,
+ "longestRoundTripNano": 204733321,
+ "averageApexExecutionNano": 81545990,
+ "shortestApexExecutionNano": 10622199,
+ "longestApexExecutionNano": 149456974
+ },
+ {
+ "batchNumber": 4507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150471687,
+ "shortestRoundTripNano": 79162937,
+ "longestRoundTripNano": 180113155,
+ "averageApexExecutionNano": 64581376,
+ "shortestApexExecutionNano": 11583744,
+ "longestApexExecutionNano": 130644141
+ },
+ {
+ "batchNumber": 4508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154810967,
+ "shortestRoundTripNano": 94423063,
+ "longestRoundTripNano": 184035702,
+ "averageApexExecutionNano": 73919399,
+ "shortestApexExecutionNano": 8881491,
+ "longestApexExecutionNano": 138282207
+ },
+ {
+ "batchNumber": 4509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139302407,
+ "shortestRoundTripNano": 31669743,
+ "longestRoundTripNano": 169705128,
+ "averageApexExecutionNano": 54949795,
+ "shortestApexExecutionNano": 9738268,
+ "longestApexExecutionNano": 120932162
+ },
+ {
+ "batchNumber": 4510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150530344,
+ "shortestRoundTripNano": 53464730,
+ "longestRoundTripNano": 176494059,
+ "averageApexExecutionNano": 66371383,
+ "shortestApexExecutionNano": 7985172,
+ "longestApexExecutionNano": 113205346
+ },
+ {
+ "batchNumber": 4511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36428",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137057396,
+ "shortestRoundTripNano": 36268707,
+ "longestRoundTripNano": 172563669,
+ "averageApexExecutionNano": 50141320,
+ "shortestApexExecutionNano": 9122823,
+ "longestApexExecutionNano": 124408393
+ },
+ {
+ "batchNumber": 4512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162409945,
+ "shortestRoundTripNano": 76398701,
+ "longestRoundTripNano": 193468828,
+ "averageApexExecutionNano": 79955636,
+ "shortestApexExecutionNano": 24016548,
+ "longestApexExecutionNano": 142108597
+ },
+ {
+ "batchNumber": 4513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145801823,
+ "shortestRoundTripNano": 44189219,
+ "longestRoundTripNano": 186636883,
+ "averageApexExecutionNano": 53117414,
+ "shortestApexExecutionNano": 7723558,
+ "longestApexExecutionNano": 150779651
+ },
+ {
+ "batchNumber": 4514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 193970731,
+ "shortestRoundTripNano": 106061829,
+ "longestRoundTripNano": 235035319,
+ "averageApexExecutionNano": 93707829,
+ "shortestApexExecutionNano": 20402172,
+ "longestApexExecutionNano": 154248602
+ },
+ {
+ "batchNumber": 4515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163032096,
+ "shortestRoundTripNano": 89016327,
+ "longestRoundTripNano": 191691164,
+ "averageApexExecutionNano": 71215809,
+ "shortestApexExecutionNano": 6201033,
+ "longestApexExecutionNano": 140543807
+ },
+ {
+ "batchNumber": 4516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150389106,
+ "shortestRoundTripNano": 65833387,
+ "longestRoundTripNano": 194189940,
+ "averageApexExecutionNano": 61377365,
+ "shortestApexExecutionNano": 6849408,
+ "longestApexExecutionNano": 132445323
+ },
+ {
+ "batchNumber": 4517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147465154,
+ "shortestRoundTripNano": 42330460,
+ "longestRoundTripNano": 181495611,
+ "averageApexExecutionNano": 75839858,
+ "shortestApexExecutionNano": 13148535,
+ "longestApexExecutionNano": 126160727
+ },
+ {
+ "batchNumber": 4518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162702732,
+ "shortestRoundTripNano": 69640521,
+ "longestRoundTripNano": 195406228,
+ "averageApexExecutionNano": 84144338,
+ "shortestApexExecutionNano": 11800003,
+ "longestApexExecutionNano": 156118321
+ },
+ {
+ "batchNumber": 4519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36434",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159183894,
+ "shortestRoundTripNano": 85833604,
+ "longestRoundTripNano": 185368483,
+ "averageApexExecutionNano": 53406962,
+ "shortestApexExecutionNano": 8373224,
+ "longestApexExecutionNano": 136900274
+ },
+ {
+ "batchNumber": 4520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36434",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140872068,
+ "shortestRoundTripNano": 61559622,
+ "longestRoundTripNano": 175988691,
+ "averageApexExecutionNano": 52852823,
+ "shortestApexExecutionNano": 6171563,
+ "longestApexExecutionNano": 136326935
+ },
+ {
+ "batchNumber": 4521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155654762,
+ "shortestRoundTripNano": 79887734,
+ "longestRoundTripNano": 187550040,
+ "averageApexExecutionNano": 65887095,
+ "shortestApexExecutionNano": 10814079,
+ "longestApexExecutionNano": 130013735
+ },
+ {
+ "batchNumber": 4522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171604961,
+ "shortestRoundTripNano": 68546127,
+ "longestRoundTripNano": 199268235,
+ "averageApexExecutionNano": 70014737,
+ "shortestApexExecutionNano": 10991554,
+ "longestApexExecutionNano": 153479560
+ },
+ {
+ "batchNumber": 4523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151789537,
+ "shortestRoundTripNano": 68384023,
+ "longestRoundTripNano": 180037736,
+ "averageApexExecutionNano": 68571325,
+ "shortestApexExecutionNano": 18287431,
+ "longestApexExecutionNano": 135875970
+ },
+ {
+ "batchNumber": 4524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149137456,
+ "shortestRoundTripNano": 78657378,
+ "longestRoundTripNano": 181031791,
+ "averageApexExecutionNano": 74187861,
+ "shortestApexExecutionNano": 8804618,
+ "longestApexExecutionNano": 131932312
+ },
+ {
+ "batchNumber": 4525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144184926,
+ "shortestRoundTripNano": 72872035,
+ "longestRoundTripNano": 170377327,
+ "averageApexExecutionNano": 48332469,
+ "shortestApexExecutionNano": 6623966,
+ "longestApexExecutionNano": 117439288
+ },
+ {
+ "batchNumber": 4526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36432",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143535751,
+ "shortestRoundTripNano": 62100100,
+ "longestRoundTripNano": 204189998,
+ "averageApexExecutionNano": 70466832,
+ "shortestApexExecutionNano": 15517359,
+ "longestApexExecutionNano": 134222823
+ },
+ {
+ "batchNumber": 4527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137732258,
+ "shortestRoundTripNano": 73648296,
+ "longestRoundTripNano": 162711370,
+ "averageApexExecutionNano": 57666415,
+ "shortestApexExecutionNano": 7562698,
+ "longestApexExecutionNano": 113013116
+ },
+ {
+ "batchNumber": 4528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144463495,
+ "shortestRoundTripNano": 56764660,
+ "longestRoundTripNano": 180929811,
+ "averageApexExecutionNano": 58645119,
+ "shortestApexExecutionNano": 6711928,
+ "longestApexExecutionNano": 117359881
+ },
+ {
+ "batchNumber": 4529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145831243,
+ "shortestRoundTripNano": 66654006,
+ "longestRoundTripNano": 176801798,
+ "averageApexExecutionNano": 50976075,
+ "shortestApexExecutionNano": 7214198,
+ "longestApexExecutionNano": 139168945
+ },
+ {
+ "batchNumber": 4530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 257104943,
+ "shortestRoundTripNano": 83475453,
+ "longestRoundTripNano": 291935406,
+ "averageApexExecutionNano": 121180765,
+ "shortestApexExecutionNano": 10698513,
+ "longestApexExecutionNano": 229682846
+ },
+ {
+ "batchNumber": 4531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160098695,
+ "shortestRoundTripNano": 84385788,
+ "longestRoundTripNano": 187217048,
+ "averageApexExecutionNano": 73872682,
+ "shortestApexExecutionNano": 13227581,
+ "longestApexExecutionNano": 132016576
+ },
+ {
+ "batchNumber": 4532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135016423,
+ "shortestRoundTripNano": 59324934,
+ "longestRoundTripNano": 159899635,
+ "averageApexExecutionNano": 51458219,
+ "shortestApexExecutionNano": 7283061,
+ "longestApexExecutionNano": 119131140
+ },
+ {
+ "batchNumber": 4533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156215878,
+ "shortestRoundTripNano": 77685558,
+ "longestRoundTripNano": 200906031,
+ "averageApexExecutionNano": 55241505,
+ "shortestApexExecutionNano": 7608658,
+ "longestApexExecutionNano": 94751711
+ },
+ {
+ "batchNumber": 4534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145537816,
+ "shortestRoundTripNano": 74627863,
+ "longestRoundTripNano": 182069842,
+ "averageApexExecutionNano": 63724875,
+ "shortestApexExecutionNano": 5252369,
+ "longestApexExecutionNano": 131993610
+ },
+ {
+ "batchNumber": 4535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145658197,
+ "shortestRoundTripNano": 60926691,
+ "longestRoundTripNano": 170931582,
+ "averageApexExecutionNano": 59292810,
+ "shortestApexExecutionNano": 6667797,
+ "longestApexExecutionNano": 127273834
+ },
+ {
+ "batchNumber": 4536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145237555,
+ "shortestRoundTripNano": 74967449,
+ "longestRoundTripNano": 180668846,
+ "averageApexExecutionNano": 60925850,
+ "shortestApexExecutionNano": 10650286,
+ "longestApexExecutionNano": 128379725
+ },
+ {
+ "batchNumber": 4537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119011689,
+ "shortestRoundTripNano": 69886399,
+ "longestRoundTripNano": 143060402,
+ "averageApexExecutionNano": 49438829,
+ "shortestApexExecutionNano": 9538595,
+ "longestApexExecutionNano": 91039499
+ },
+ {
+ "batchNumber": 4538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135306015,
+ "shortestRoundTripNano": 72856435,
+ "longestRoundTripNano": 162546704,
+ "averageApexExecutionNano": 67595140,
+ "shortestApexExecutionNano": 9101152,
+ "longestApexExecutionNano": 117991026
+ },
+ {
+ "batchNumber": 4539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126734011,
+ "shortestRoundTripNano": 61635695,
+ "longestRoundTripNano": 151058251,
+ "averageApexExecutionNano": 49765921,
+ "shortestApexExecutionNano": 9377097,
+ "longestApexExecutionNano": 108726998
+ },
+ {
+ "batchNumber": 4540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147178554,
+ "shortestRoundTripNano": 64401982,
+ "longestRoundTripNano": 174803077,
+ "averageApexExecutionNano": 63755526,
+ "shortestApexExecutionNano": 14174003,
+ "longestApexExecutionNano": 125207831
+ },
+ {
+ "batchNumber": 4541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154841725,
+ "shortestRoundTripNano": 55740092,
+ "longestRoundTripNano": 180328893,
+ "averageApexExecutionNano": 74587579,
+ "shortestApexExecutionNano": 9422420,
+ "longestApexExecutionNano": 141327408
+ },
+ {
+ "batchNumber": 4542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136270296,
+ "shortestRoundTripNano": 57089072,
+ "longestRoundTripNano": 174861405,
+ "averageApexExecutionNano": 49780879,
+ "shortestApexExecutionNano": 6393001,
+ "longestApexExecutionNano": 102575761
+ },
+ {
+ "batchNumber": 4543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145505004,
+ "shortestRoundTripNano": 76544334,
+ "longestRoundTripNano": 184004049,
+ "averageApexExecutionNano": 65334987,
+ "shortestApexExecutionNano": 10714168,
+ "longestApexExecutionNano": 131308375
+ },
+ {
+ "batchNumber": 4544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150860491,
+ "shortestRoundTripNano": 57643674,
+ "longestRoundTripNano": 189345940,
+ "averageApexExecutionNano": 57237470,
+ "shortestApexExecutionNano": 9070035,
+ "longestApexExecutionNano": 119270489
+ },
+ {
+ "batchNumber": 4545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132623863,
+ "shortestRoundTripNano": 36987958,
+ "longestRoundTripNano": 172358278,
+ "averageApexExecutionNano": 58490156,
+ "shortestApexExecutionNano": 6012270,
+ "longestApexExecutionNano": 121608178
+ },
+ {
+ "batchNumber": 4546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36442",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148495563,
+ "shortestRoundTripNano": 44584722,
+ "longestRoundTripNano": 189882404,
+ "averageApexExecutionNano": 55180739,
+ "shortestApexExecutionNano": 8268743,
+ "longestApexExecutionNano": 120740319
+ },
+ {
+ "batchNumber": 4547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153079558,
+ "shortestRoundTripNano": 49578931,
+ "longestRoundTripNano": 176891597,
+ "averageApexExecutionNano": 55118208,
+ "shortestApexExecutionNano": 9271750,
+ "longestApexExecutionNano": 123172049
+ },
+ {
+ "batchNumber": 4548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129751351,
+ "shortestRoundTripNano": 61918961,
+ "longestRoundTripNano": 152784949,
+ "averageApexExecutionNano": 46207460,
+ "shortestApexExecutionNano": 6037956,
+ "longestApexExecutionNano": 100117465
+ },
+ {
+ "batchNumber": 4549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135288430,
+ "shortestRoundTripNano": 61810242,
+ "longestRoundTripNano": 167445637,
+ "averageApexExecutionNano": 49977920,
+ "shortestApexExecutionNano": 12276439,
+ "longestApexExecutionNano": 118493604
+ },
+ {
+ "batchNumber": 4550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162249301,
+ "shortestRoundTripNano": 89684759,
+ "longestRoundTripNano": 190430862,
+ "averageApexExecutionNano": 68613601,
+ "shortestApexExecutionNano": 8492031,
+ "longestApexExecutionNano": 135125685
+ },
+ {
+ "batchNumber": 4551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164985185,
+ "shortestRoundTripNano": 56808425,
+ "longestRoundTripNano": 196840711,
+ "averageApexExecutionNano": 59688774,
+ "shortestApexExecutionNano": 12183653,
+ "longestApexExecutionNano": 128506654
+ },
+ {
+ "batchNumber": 4552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134150919,
+ "shortestRoundTripNano": 64858157,
+ "longestRoundTripNano": 163811789,
+ "averageApexExecutionNano": 46954339,
+ "shortestApexExecutionNano": 4657903,
+ "longestApexExecutionNano": 109242349
+ },
+ {
+ "batchNumber": 4553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149000124,
+ "shortestRoundTripNano": 59970996,
+ "longestRoundTripNano": 177703617,
+ "averageApexExecutionNano": 54213300,
+ "shortestApexExecutionNano": 8788339,
+ "longestApexExecutionNano": 109800778
+ },
+ {
+ "batchNumber": 4554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148239014,
+ "shortestRoundTripNano": 78014746,
+ "longestRoundTripNano": 178000293,
+ "averageApexExecutionNano": 57075532,
+ "shortestApexExecutionNano": 7647335,
+ "longestApexExecutionNano": 109808837
+ },
+ {
+ "batchNumber": 4555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140103437,
+ "shortestRoundTripNano": 73185932,
+ "longestRoundTripNano": 166772082,
+ "averageApexExecutionNano": 60063868,
+ "shortestApexExecutionNano": 8509452,
+ "longestApexExecutionNano": 111655252
+ },
+ {
+ "batchNumber": 4556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164626643,
+ "shortestRoundTripNano": 84474746,
+ "longestRoundTripNano": 193404062,
+ "averageApexExecutionNano": 64637682,
+ "shortestApexExecutionNano": 8033947,
+ "longestApexExecutionNano": 129145522
+ },
+ {
+ "batchNumber": 4557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149657894,
+ "shortestRoundTripNano": 67587761,
+ "longestRoundTripNano": 187073700,
+ "averageApexExecutionNano": 66408234,
+ "shortestApexExecutionNano": 7971363,
+ "longestApexExecutionNano": 119025844
+ },
+ {
+ "batchNumber": 4558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144890493,
+ "shortestRoundTripNano": 74033774,
+ "longestRoundTripNano": 190802625,
+ "averageApexExecutionNano": 62246963,
+ "shortestApexExecutionNano": 8226652,
+ "longestApexExecutionNano": 106751680
+ },
+ {
+ "batchNumber": 4559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150877664,
+ "shortestRoundTripNano": 81174039,
+ "longestRoundTripNano": 185717663,
+ "averageApexExecutionNano": 62413600,
+ "shortestApexExecutionNano": 8077638,
+ "longestApexExecutionNano": 135462936
+ },
+ {
+ "batchNumber": 4560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155879295,
+ "shortestRoundTripNano": 54469076,
+ "longestRoundTripNano": 193236975,
+ "averageApexExecutionNano": 60171350,
+ "shortestApexExecutionNano": 9219861,
+ "longestApexExecutionNano": 136079190
+ },
+ {
+ "batchNumber": 4561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129655401,
+ "shortestRoundTripNano": 61105112,
+ "longestRoundTripNano": 155169512,
+ "averageApexExecutionNano": 52383131,
+ "shortestApexExecutionNano": 4362932,
+ "longestApexExecutionNano": 120068757
+ },
+ {
+ "batchNumber": 4562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143190552,
+ "shortestRoundTripNano": 64215054,
+ "longestRoundTripNano": 170410091,
+ "averageApexExecutionNano": 57628769,
+ "shortestApexExecutionNano": 5857865,
+ "longestApexExecutionNano": 116325979
+ },
+ {
+ "batchNumber": 4563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145909612,
+ "shortestRoundTripNano": 68052723,
+ "longestRoundTripNano": 176576403,
+ "averageApexExecutionNano": 42372064,
+ "shortestApexExecutionNano": 7952575,
+ "longestApexExecutionNano": 128612992
+ },
+ {
+ "batchNumber": 4564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139664155,
+ "shortestRoundTripNano": 40689345,
+ "longestRoundTripNano": 179575866,
+ "averageApexExecutionNano": 59965597,
+ "shortestApexExecutionNano": 7830268,
+ "longestApexExecutionNano": 119707714
+ },
+ {
+ "batchNumber": 4565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140204258,
+ "shortestRoundTripNano": 35325472,
+ "longestRoundTripNano": 172134808,
+ "averageApexExecutionNano": 60015660,
+ "shortestApexExecutionNano": 10521012,
+ "longestApexExecutionNano": 132241007
+ },
+ {
+ "batchNumber": 4566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130736817,
+ "shortestRoundTripNano": 51318886,
+ "longestRoundTripNano": 161243699,
+ "averageApexExecutionNano": 49816345,
+ "shortestApexExecutionNano": 7323625,
+ "longestApexExecutionNano": 104851414
+ },
+ {
+ "batchNumber": 4567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137714281,
+ "shortestRoundTripNano": 74303670,
+ "longestRoundTripNano": 167807801,
+ "averageApexExecutionNano": 45850655,
+ "shortestApexExecutionNano": 6729783,
+ "longestApexExecutionNano": 123489208
+ },
+ {
+ "batchNumber": 4568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136599949,
+ "shortestRoundTripNano": 49663036,
+ "longestRoundTripNano": 169779524,
+ "averageApexExecutionNano": 48358343,
+ "shortestApexExecutionNano": 8695188,
+ "longestApexExecutionNano": 110396141
+ },
+ {
+ "batchNumber": 4569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146200301,
+ "shortestRoundTripNano": 35265017,
+ "longestRoundTripNano": 176737745,
+ "averageApexExecutionNano": 76447533,
+ "shortestApexExecutionNano": 8439439,
+ "longestApexExecutionNano": 140707356
+ },
+ {
+ "batchNumber": 4570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142986805,
+ "shortestRoundTripNano": 68316557,
+ "longestRoundTripNano": 171692828,
+ "averageApexExecutionNano": 53093968,
+ "shortestApexExecutionNano": 10305529,
+ "longestApexExecutionNano": 131215662
+ },
+ {
+ "batchNumber": 4571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144629655,
+ "shortestRoundTripNano": 44062426,
+ "longestRoundTripNano": 180675329,
+ "averageApexExecutionNano": 57393951,
+ "shortestApexExecutionNano": 7719462,
+ "longestApexExecutionNano": 112125130
+ },
+ {
+ "batchNumber": 4572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164109903,
+ "shortestRoundTripNano": 89984925,
+ "longestRoundTripNano": 192176027,
+ "averageApexExecutionNano": 65222197,
+ "shortestApexExecutionNano": 7274785,
+ "longestApexExecutionNano": 134099718
+ },
+ {
+ "batchNumber": 4573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130403472,
+ "shortestRoundTripNano": 71494115,
+ "longestRoundTripNano": 153525649,
+ "averageApexExecutionNano": 55653585,
+ "shortestApexExecutionNano": 10048270,
+ "longestApexExecutionNano": 120544408
+ },
+ {
+ "batchNumber": 4574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140882283,
+ "shortestRoundTripNano": 62061494,
+ "longestRoundTripNano": 171698639,
+ "averageApexExecutionNano": 53754778,
+ "shortestApexExecutionNano": 8001716,
+ "longestApexExecutionNano": 108718086
+ },
+ {
+ "batchNumber": 4575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144492135,
+ "shortestRoundTripNano": 42630876,
+ "longestRoundTripNano": 176950195,
+ "averageApexExecutionNano": 69274877,
+ "shortestApexExecutionNano": 7443025,
+ "longestApexExecutionNano": 131250728
+ },
+ {
+ "batchNumber": 4576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149807755,
+ "shortestRoundTripNano": 60171676,
+ "longestRoundTripNano": 200219415,
+ "averageApexExecutionNano": 62038046,
+ "shortestApexExecutionNano": 8653059,
+ "longestApexExecutionNano": 136288693
+ },
+ {
+ "batchNumber": 4577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143644816,
+ "shortestRoundTripNano": 64886972,
+ "longestRoundTripNano": 184017274,
+ "averageApexExecutionNano": 56441491,
+ "shortestApexExecutionNano": 11941316,
+ "longestApexExecutionNano": 123714189
+ },
+ {
+ "batchNumber": 4578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150833814,
+ "shortestRoundTripNano": 81755666,
+ "longestRoundTripNano": 179949447,
+ "averageApexExecutionNano": 70753816,
+ "shortestApexExecutionNano": 9292520,
+ "longestApexExecutionNano": 123958093
+ },
+ {
+ "batchNumber": 4579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130870078,
+ "shortestRoundTripNano": 63065767,
+ "longestRoundTripNano": 161205481,
+ "averageApexExecutionNano": 60168677,
+ "shortestApexExecutionNano": 10159926,
+ "longestApexExecutionNano": 105682474
+ },
+ {
+ "batchNumber": 4580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137794544,
+ "shortestRoundTripNano": 56076515,
+ "longestRoundTripNano": 169323481,
+ "averageApexExecutionNano": 53693704,
+ "shortestApexExecutionNano": 7455536,
+ "longestApexExecutionNano": 103833419
+ },
+ {
+ "batchNumber": 4581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141030945,
+ "shortestRoundTripNano": 63980426,
+ "longestRoundTripNano": 170326207,
+ "averageApexExecutionNano": 67097435,
+ "shortestApexExecutionNano": 6950660,
+ "longestApexExecutionNano": 116211688
+ },
+ {
+ "batchNumber": 4582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136450630,
+ "shortestRoundTripNano": 63275112,
+ "longestRoundTripNano": 168028025,
+ "averageApexExecutionNano": 56094260,
+ "shortestApexExecutionNano": 8272785,
+ "longestApexExecutionNano": 116201086
+ },
+ {
+ "batchNumber": 4583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127211064,
+ "shortestRoundTripNano": 69480299,
+ "longestRoundTripNano": 152386459,
+ "averageApexExecutionNano": 49093476,
+ "shortestApexExecutionNano": 7965520,
+ "longestApexExecutionNano": 111516961
+ },
+ {
+ "batchNumber": 4584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36458",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157262270,
+ "shortestRoundTripNano": 54604813,
+ "longestRoundTripNano": 181798579,
+ "averageApexExecutionNano": 61032711,
+ "shortestApexExecutionNano": 15836068,
+ "longestApexExecutionNano": 130668373
+ },
+ {
+ "batchNumber": 4585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151053087,
+ "shortestRoundTripNano": 75839903,
+ "longestRoundTripNano": 182306342,
+ "averageApexExecutionNano": 70801361,
+ "shortestApexExecutionNano": 9379054,
+ "longestApexExecutionNano": 126641961
+ },
+ {
+ "batchNumber": 4586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174103908,
+ "shortestRoundTripNano": 55687752,
+ "longestRoundTripNano": 208263815,
+ "averageApexExecutionNano": 57498737,
+ "shortestApexExecutionNano": 8148962,
+ "longestApexExecutionNano": 136516360
+ },
+ {
+ "batchNumber": 4587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178953126,
+ "shortestRoundTripNano": 81574662,
+ "longestRoundTripNano": 219626253,
+ "averageApexExecutionNano": 60902763,
+ "shortestApexExecutionNano": 10021834,
+ "longestApexExecutionNano": 123675271
+ },
+ {
+ "batchNumber": 4588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144307287,
+ "shortestRoundTripNano": 88817313,
+ "longestRoundTripNano": 185071191,
+ "averageApexExecutionNano": 62726220,
+ "shortestApexExecutionNano": 7935421,
+ "longestApexExecutionNano": 118426812
+ },
+ {
+ "batchNumber": 4589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145355989,
+ "shortestRoundTripNano": 66283456,
+ "longestRoundTripNano": 175612002,
+ "averageApexExecutionNano": 47547992,
+ "shortestApexExecutionNano": 8019322,
+ "longestApexExecutionNano": 117012164
+ },
+ {
+ "batchNumber": 4590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148668073,
+ "shortestRoundTripNano": 81122311,
+ "longestRoundTripNano": 174693528,
+ "averageApexExecutionNano": 41338788,
+ "shortestApexExecutionNano": 5419991,
+ "longestApexExecutionNano": 101769189
+ },
+ {
+ "batchNumber": 4591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149462791,
+ "shortestRoundTripNano": 46114003,
+ "longestRoundTripNano": 181240262,
+ "averageApexExecutionNano": 63964335,
+ "shortestApexExecutionNano": 14882459,
+ "longestApexExecutionNano": 129412508
+ },
+ {
+ "batchNumber": 4592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141401352,
+ "shortestRoundTripNano": 56983848,
+ "longestRoundTripNano": 190393553,
+ "averageApexExecutionNano": 58880377,
+ "shortestApexExecutionNano": 9260200,
+ "longestApexExecutionNano": 107289014
+ },
+ {
+ "batchNumber": 4593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138852222,
+ "shortestRoundTripNano": 76770114,
+ "longestRoundTripNano": 169013570,
+ "averageApexExecutionNano": 70043150,
+ "shortestApexExecutionNano": 9018626,
+ "longestApexExecutionNano": 126861139
+ },
+ {
+ "batchNumber": 4594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124196857,
+ "shortestRoundTripNano": 52048121,
+ "longestRoundTripNano": 153462511,
+ "averageApexExecutionNano": 51899120,
+ "shortestApexExecutionNano": 6497361,
+ "longestApexExecutionNano": 112228002
+ },
+ {
+ "batchNumber": 4595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145706610,
+ "shortestRoundTripNano": 71137335,
+ "longestRoundTripNano": 176178859,
+ "averageApexExecutionNano": 56094840,
+ "shortestApexExecutionNano": 6876353,
+ "longestApexExecutionNano": 130753124
+ },
+ {
+ "batchNumber": 4596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36460",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157577125,
+ "shortestRoundTripNano": 55965369,
+ "longestRoundTripNano": 189784054,
+ "averageApexExecutionNano": 71690795,
+ "shortestApexExecutionNano": 6396130,
+ "longestApexExecutionNano": 150940639
+ },
+ {
+ "batchNumber": 4597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140132622,
+ "shortestRoundTripNano": 40331683,
+ "longestRoundTripNano": 167998707,
+ "averageApexExecutionNano": 54480198,
+ "shortestApexExecutionNano": 8485873,
+ "longestApexExecutionNano": 125515283
+ },
+ {
+ "batchNumber": 4598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158789105,
+ "shortestRoundTripNano": 99682814,
+ "longestRoundTripNano": 184686967,
+ "averageApexExecutionNano": 62310217,
+ "shortestApexExecutionNano": 13050528,
+ "longestApexExecutionNano": 116820668
+ },
+ {
+ "batchNumber": 4599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154506461,
+ "shortestRoundTripNano": 88844956,
+ "longestRoundTripNano": 184901649,
+ "averageApexExecutionNano": 71339205,
+ "shortestApexExecutionNano": 8527111,
+ "longestApexExecutionNano": 132918645
+ },
+ {
+ "batchNumber": 4600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137644865,
+ "shortestRoundTripNano": 65329939,
+ "longestRoundTripNano": 169317351,
+ "averageApexExecutionNano": 49338095,
+ "shortestApexExecutionNano": 7980500,
+ "longestApexExecutionNano": 106523095
+ },
+ {
+ "batchNumber": 4601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36464",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144289338,
+ "shortestRoundTripNano": 41382234,
+ "longestRoundTripNano": 178291299,
+ "averageApexExecutionNano": 82932133,
+ "shortestApexExecutionNano": 15197077,
+ "longestApexExecutionNano": 133361219
+ },
+ {
+ "batchNumber": 4602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148993443,
+ "shortestRoundTripNano": 66840114,
+ "longestRoundTripNano": 176322299,
+ "averageApexExecutionNano": 60903097,
+ "shortestApexExecutionNano": 8369871,
+ "longestApexExecutionNano": 125958696
+ },
+ {
+ "batchNumber": 4603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188180340,
+ "shortestRoundTripNano": 39136886,
+ "longestRoundTripNano": 221206391,
+ "averageApexExecutionNano": 72917342,
+ "shortestApexExecutionNano": 7525498,
+ "longestApexExecutionNano": 148005445
+ },
+ {
+ "batchNumber": 4604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 212619311,
+ "shortestRoundTripNano": 72149659,
+ "longestRoundTripNano": 248561229,
+ "averageApexExecutionNano": 110241726,
+ "shortestApexExecutionNano": 9350634,
+ "longestApexExecutionNano": 185734605
+ },
+ {
+ "batchNumber": 4605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140667911,
+ "shortestRoundTripNano": 79452916,
+ "longestRoundTripNano": 166131408,
+ "averageApexExecutionNano": 50394921,
+ "shortestApexExecutionNano": 6533637,
+ "longestApexExecutionNano": 122167682
+ },
+ {
+ "batchNumber": 4606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131536686,
+ "shortestRoundTripNano": 60214768,
+ "longestRoundTripNano": 170467319,
+ "averageApexExecutionNano": 47184105,
+ "shortestApexExecutionNano": 8115778,
+ "longestApexExecutionNano": 109276692
+ },
+ {
+ "batchNumber": 4607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144589970,
+ "shortestRoundTripNano": 81178436,
+ "longestRoundTripNano": 174173029,
+ "averageApexExecutionNano": 69054077,
+ "shortestApexExecutionNano": 9874524,
+ "longestApexExecutionNano": 119673416
+ },
+ {
+ "batchNumber": 4608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164147276,
+ "shortestRoundTripNano": 71950053,
+ "longestRoundTripNano": 192483872,
+ "averageApexExecutionNano": 65050232,
+ "shortestApexExecutionNano": 11071864,
+ "longestApexExecutionNano": 126175649
+ },
+ {
+ "batchNumber": 4609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155891694,
+ "shortestRoundTripNano": 77286765,
+ "longestRoundTripNano": 187831020,
+ "averageApexExecutionNano": 80412297,
+ "shortestApexExecutionNano": 10414734,
+ "longestApexExecutionNano": 146873703
+ },
+ {
+ "batchNumber": 4610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152074632,
+ "shortestRoundTripNano": 56143320,
+ "longestRoundTripNano": 179478476,
+ "averageApexExecutionNano": 51026734,
+ "shortestApexExecutionNano": 6684435,
+ "longestApexExecutionNano": 122284831
+ },
+ {
+ "batchNumber": 4611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137774324,
+ "shortestRoundTripNano": 68575443,
+ "longestRoundTripNano": 163132429,
+ "averageApexExecutionNano": 57071779,
+ "shortestApexExecutionNano": 10841798,
+ "longestApexExecutionNano": 116698442
+ },
+ {
+ "batchNumber": 4612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154040649,
+ "shortestRoundTripNano": 50033210,
+ "longestRoundTripNano": 189633790,
+ "averageApexExecutionNano": 70865975,
+ "shortestApexExecutionNano": 7983287,
+ "longestApexExecutionNano": 123044661
+ },
+ {
+ "batchNumber": 4613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183129245,
+ "shortestRoundTripNano": 87243739,
+ "longestRoundTripNano": 211172746,
+ "averageApexExecutionNano": 82135462,
+ "shortestApexExecutionNano": 14284958,
+ "longestApexExecutionNano": 145907222
+ },
+ {
+ "batchNumber": 4614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142243698,
+ "shortestRoundTripNano": 68866949,
+ "longestRoundTripNano": 179224142,
+ "averageApexExecutionNano": 56540997,
+ "shortestApexExecutionNano": 6313318,
+ "longestApexExecutionNano": 135574811
+ },
+ {
+ "batchNumber": 4615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179279539,
+ "shortestRoundTripNano": 94456392,
+ "longestRoundTripNano": 211268105,
+ "averageApexExecutionNano": 74564699,
+ "shortestApexExecutionNano": 13041062,
+ "longestApexExecutionNano": 126523691
+ },
+ {
+ "batchNumber": 4616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151037888,
+ "shortestRoundTripNano": 76499024,
+ "longestRoundTripNano": 190521968,
+ "averageApexExecutionNano": 66457474,
+ "shortestApexExecutionNano": 11860912,
+ "longestApexExecutionNano": 117298682
+ },
+ {
+ "batchNumber": 4617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155273859,
+ "shortestRoundTripNano": 73973195,
+ "longestRoundTripNano": 182582034,
+ "averageApexExecutionNano": 54777458,
+ "shortestApexExecutionNano": 7793932,
+ "longestApexExecutionNano": 123365620
+ },
+ {
+ "batchNumber": 4618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163801915,
+ "shortestRoundTripNano": 60930586,
+ "longestRoundTripNano": 199115006,
+ "averageApexExecutionNano": 81657166,
+ "shortestApexExecutionNano": 11319260,
+ "longestApexExecutionNano": 137249432
+ },
+ {
+ "batchNumber": 4619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142353747,
+ "shortestRoundTripNano": 31823724,
+ "longestRoundTripNano": 171943431,
+ "averageApexExecutionNano": 59246731,
+ "shortestApexExecutionNano": 7308273,
+ "longestApexExecutionNano": 130207578
+ },
+ {
+ "batchNumber": 4620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172285787,
+ "shortestRoundTripNano": 60703050,
+ "longestRoundTripNano": 222284332,
+ "averageApexExecutionNano": 89319825,
+ "shortestApexExecutionNano": 8069924,
+ "longestApexExecutionNano": 187194077
+ },
+ {
+ "batchNumber": 4621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133577464,
+ "shortestRoundTripNano": 20723990,
+ "longestRoundTripNano": 169246677,
+ "averageApexExecutionNano": 60891340,
+ "shortestApexExecutionNano": 5075873,
+ "longestApexExecutionNano": 132420694
+ },
+ {
+ "batchNumber": 4622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36468",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153190301,
+ "shortestRoundTripNano": 47637999,
+ "longestRoundTripNano": 186747161,
+ "averageApexExecutionNano": 71836042,
+ "shortestApexExecutionNano": 7676232,
+ "longestApexExecutionNano": 122686897
+ },
+ {
+ "batchNumber": 4623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132204438,
+ "shortestRoundTripNano": 36083718,
+ "longestRoundTripNano": 167277820,
+ "averageApexExecutionNano": 50873784,
+ "shortestApexExecutionNano": 8847259,
+ "longestApexExecutionNano": 122017922
+ },
+ {
+ "batchNumber": 4624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144226947,
+ "shortestRoundTripNano": 52990911,
+ "longestRoundTripNano": 177425449,
+ "averageApexExecutionNano": 58314169,
+ "shortestApexExecutionNano": 9439139,
+ "longestApexExecutionNano": 111806176
+ },
+ {
+ "batchNumber": 4625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134472648,
+ "shortestRoundTripNano": 43988924,
+ "longestRoundTripNano": 163277443,
+ "averageApexExecutionNano": 61982982,
+ "shortestApexExecutionNano": 10075977,
+ "longestApexExecutionNano": 118760658
+ },
+ {
+ "batchNumber": 4626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145888310,
+ "shortestRoundTripNano": 83412298,
+ "longestRoundTripNano": 180656374,
+ "averageApexExecutionNano": 60599351,
+ "shortestApexExecutionNano": 10396980,
+ "longestApexExecutionNano": 105653278
+ },
+ {
+ "batchNumber": 4627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156150222,
+ "shortestRoundTripNano": 49083623,
+ "longestRoundTripNano": 182383060,
+ "averageApexExecutionNano": 77525515,
+ "shortestApexExecutionNano": 9585261,
+ "longestApexExecutionNano": 130862437
+ },
+ {
+ "batchNumber": 4628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127477831,
+ "shortestRoundTripNano": 58737368,
+ "longestRoundTripNano": 156696821,
+ "averageApexExecutionNano": 58980767,
+ "shortestApexExecutionNano": 7955761,
+ "longestApexExecutionNano": 108811000
+ },
+ {
+ "batchNumber": 4629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158005991,
+ "shortestRoundTripNano": 62231704,
+ "longestRoundTripNano": 183155101,
+ "averageApexExecutionNano": 55553214,
+ "shortestApexExecutionNano": 7969214,
+ "longestApexExecutionNano": 133156474
+ },
+ {
+ "batchNumber": 4630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36474",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148822838,
+ "shortestRoundTripNano": 50374935,
+ "longestRoundTripNano": 183006084,
+ "averageApexExecutionNano": 61611669,
+ "shortestApexExecutionNano": 7945307,
+ "longestApexExecutionNano": 124182464
+ },
+ {
+ "batchNumber": 4631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165725773,
+ "shortestRoundTripNano": 87608361,
+ "longestRoundTripNano": 196803789,
+ "averageApexExecutionNano": 81087770,
+ "shortestApexExecutionNano": 8026896,
+ "longestApexExecutionNano": 152369414
+ },
+ {
+ "batchNumber": 4632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157990949,
+ "shortestRoundTripNano": 80230191,
+ "longestRoundTripNano": 180831291,
+ "averageApexExecutionNano": 62546747,
+ "shortestApexExecutionNano": 10320278,
+ "longestApexExecutionNano": 124444669
+ },
+ {
+ "batchNumber": 4633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152659983,
+ "shortestRoundTripNano": 72945402,
+ "longestRoundTripNano": 184954388,
+ "averageApexExecutionNano": 60782748,
+ "shortestApexExecutionNano": 6648759,
+ "longestApexExecutionNano": 119865692
+ },
+ {
+ "batchNumber": 4634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172759743,
+ "shortestRoundTripNano": 96738636,
+ "longestRoundTripNano": 216034682,
+ "averageApexExecutionNano": 85412754,
+ "shortestApexExecutionNano": 6355153,
+ "longestApexExecutionNano": 153041362
+ },
+ {
+ "batchNumber": 4635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36480",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139001134,
+ "shortestRoundTripNano": 76151996,
+ "longestRoundTripNano": 163703750,
+ "averageApexExecutionNano": 66036634,
+ "shortestApexExecutionNano": 12414508,
+ "longestApexExecutionNano": 123367752
+ },
+ {
+ "batchNumber": 4636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36480",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133041720,
+ "shortestRoundTripNano": 56562869,
+ "longestRoundTripNano": 170076600,
+ "averageApexExecutionNano": 54804417,
+ "shortestApexExecutionNano": 6805242,
+ "longestApexExecutionNano": 128757815
+ },
+ {
+ "batchNumber": 4637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155579389,
+ "shortestRoundTripNano": 78948279,
+ "longestRoundTripNano": 186436297,
+ "averageApexExecutionNano": 67539349,
+ "shortestApexExecutionNano": 7843939,
+ "longestApexExecutionNano": 132006488
+ },
+ {
+ "batchNumber": 4638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157049799,
+ "shortestRoundTripNano": 69280928,
+ "longestRoundTripNano": 186375145,
+ "averageApexExecutionNano": 63694636,
+ "shortestApexExecutionNano": 11010789,
+ "longestApexExecutionNano": 110370655
+ },
+ {
+ "batchNumber": 4639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167691459,
+ "shortestRoundTripNano": 96486682,
+ "longestRoundTripNano": 195877788,
+ "averageApexExecutionNano": 81650082,
+ "shortestApexExecutionNano": 8096024,
+ "longestApexExecutionNano": 148456027
+ },
+ {
+ "batchNumber": 4640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36478",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175796502,
+ "shortestRoundTripNano": 48647545,
+ "longestRoundTripNano": 209432817,
+ "averageApexExecutionNano": 70951243,
+ "shortestApexExecutionNano": 11189293,
+ "longestApexExecutionNano": 144054824
+ },
+ {
+ "batchNumber": 4641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137300759,
+ "shortestRoundTripNano": 73896134,
+ "longestRoundTripNano": 167012328,
+ "averageApexExecutionNano": 56582475,
+ "shortestApexExecutionNano": 7431846,
+ "longestApexExecutionNano": 124498454
+ },
+ {
+ "batchNumber": 4642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146188032,
+ "shortestRoundTripNano": 81611971,
+ "longestRoundTripNano": 174846204,
+ "averageApexExecutionNano": 71086057,
+ "shortestApexExecutionNano": 7604218,
+ "longestApexExecutionNano": 127922533
+ },
+ {
+ "batchNumber": 4643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158547848,
+ "shortestRoundTripNano": 82057682,
+ "longestRoundTripNano": 190624416,
+ "averageApexExecutionNano": 61473857,
+ "shortestApexExecutionNano": 5954844,
+ "longestApexExecutionNano": 143932472
+ },
+ {
+ "batchNumber": 4644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155842275,
+ "shortestRoundTripNano": 58420861,
+ "longestRoundTripNano": 186622564,
+ "averageApexExecutionNano": 69280509,
+ "shortestApexExecutionNano": 11164046,
+ "longestApexExecutionNano": 132720368
+ },
+ {
+ "batchNumber": 4645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146162784,
+ "shortestRoundTripNano": 75102493,
+ "longestRoundTripNano": 172907056,
+ "averageApexExecutionNano": 66119991,
+ "shortestApexExecutionNano": 6784850,
+ "longestApexExecutionNano": 111095595
+ },
+ {
+ "batchNumber": 4646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36484",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143825506,
+ "shortestRoundTripNano": 48708758,
+ "longestRoundTripNano": 174433169,
+ "averageApexExecutionNano": 53561158,
+ "shortestApexExecutionNano": 9114418,
+ "longestApexExecutionNano": 109611524
+ },
+ {
+ "batchNumber": 4647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149761110,
+ "shortestRoundTripNano": 66041295,
+ "longestRoundTripNano": 177239578,
+ "averageApexExecutionNano": 50727994,
+ "shortestApexExecutionNano": 10365086,
+ "longestApexExecutionNano": 96966283
+ },
+ {
+ "batchNumber": 4648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162572339,
+ "shortestRoundTripNano": 68285354,
+ "longestRoundTripNano": 210058387,
+ "averageApexExecutionNano": 61013049,
+ "shortestApexExecutionNano": 10021512,
+ "longestApexExecutionNano": 124075552
+ },
+ {
+ "batchNumber": 4649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160226448,
+ "shortestRoundTripNano": 83434548,
+ "longestRoundTripNano": 187420236,
+ "averageApexExecutionNano": 64585015,
+ "shortestApexExecutionNano": 8914498,
+ "longestApexExecutionNano": 136420050
+ },
+ {
+ "batchNumber": 4650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146885498,
+ "shortestRoundTripNano": 96346979,
+ "longestRoundTripNano": 170005317,
+ "averageApexExecutionNano": 62952216,
+ "shortestApexExecutionNano": 11006768,
+ "longestApexExecutionNano": 110302886
+ },
+ {
+ "batchNumber": 4651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128138588,
+ "shortestRoundTripNano": 41766632,
+ "longestRoundTripNano": 149769909,
+ "averageApexExecutionNano": 49591827,
+ "shortestApexExecutionNano": 5333247,
+ "longestApexExecutionNano": 112163156
+ },
+ {
+ "batchNumber": 4652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133843572,
+ "shortestRoundTripNano": 71680480,
+ "longestRoundTripNano": 161293305,
+ "averageApexExecutionNano": 55487344,
+ "shortestApexExecutionNano": 4842734,
+ "longestApexExecutionNano": 111621918
+ },
+ {
+ "batchNumber": 4653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139251438,
+ "shortestRoundTripNano": 68830503,
+ "longestRoundTripNano": 163403101,
+ "averageApexExecutionNano": 53328444,
+ "shortestApexExecutionNano": 4931292,
+ "longestApexExecutionNano": 117492104
+ },
+ {
+ "batchNumber": 4654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133287599,
+ "shortestRoundTripNano": 57553361,
+ "longestRoundTripNano": 156934741,
+ "averageApexExecutionNano": 47174797,
+ "shortestApexExecutionNano": 6874831,
+ "longestApexExecutionNano": 99339346
+ },
+ {
+ "batchNumber": 4655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123059537,
+ "shortestRoundTripNano": 35100762,
+ "longestRoundTripNano": 155647053,
+ "averageApexExecutionNano": 45206016,
+ "shortestApexExecutionNano": 6187731,
+ "longestApexExecutionNano": 100362751
+ },
+ {
+ "batchNumber": 4656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138972991,
+ "shortestRoundTripNano": 59986871,
+ "longestRoundTripNano": 163810964,
+ "averageApexExecutionNano": 58971319,
+ "shortestApexExecutionNano": 8898131,
+ "longestApexExecutionNano": 108960654
+ },
+ {
+ "batchNumber": 4657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169892071,
+ "shortestRoundTripNano": 69912531,
+ "longestRoundTripNano": 210102352,
+ "averageApexExecutionNano": 65685889,
+ "shortestApexExecutionNano": 7445549,
+ "longestApexExecutionNano": 134600917
+ },
+ {
+ "batchNumber": 4658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122145256,
+ "shortestRoundTripNano": 63035089,
+ "longestRoundTripNano": 154410040,
+ "averageApexExecutionNano": 56585039,
+ "shortestApexExecutionNano": 7273124,
+ "longestApexExecutionNano": 112086653
+ },
+ {
+ "batchNumber": 4659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130754219,
+ "shortestRoundTripNano": 67353868,
+ "longestRoundTripNano": 152587365,
+ "averageApexExecutionNano": 46635005,
+ "shortestApexExecutionNano": 9683375,
+ "longestApexExecutionNano": 102535770
+ },
+ {
+ "batchNumber": 4660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150199312,
+ "shortestRoundTripNano": 67210132,
+ "longestRoundTripNano": 182419585,
+ "averageApexExecutionNano": 50877946,
+ "shortestApexExecutionNano": 9570197,
+ "longestApexExecutionNano": 114436502
+ },
+ {
+ "batchNumber": 4661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120213605,
+ "shortestRoundTripNano": 61475809,
+ "longestRoundTripNano": 146850607,
+ "averageApexExecutionNano": 58397669,
+ "shortestApexExecutionNano": 10089482,
+ "longestApexExecutionNano": 103283997
+ },
+ {
+ "batchNumber": 4662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148487526,
+ "shortestRoundTripNano": 75571730,
+ "longestRoundTripNano": 178415547,
+ "averageApexExecutionNano": 70667981,
+ "shortestApexExecutionNano": 9504607,
+ "longestApexExecutionNano": 126924948
+ },
+ {
+ "batchNumber": 4663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132844531,
+ "shortestRoundTripNano": 59713019,
+ "longestRoundTripNano": 171752107,
+ "averageApexExecutionNano": 49556407,
+ "shortestApexExecutionNano": 7645224,
+ "longestApexExecutionNano": 102017041
+ },
+ {
+ "batchNumber": 4664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118587534,
+ "shortestRoundTripNano": 52097681,
+ "longestRoundTripNano": 143697835,
+ "averageApexExecutionNano": 40834766,
+ "shortestApexExecutionNano": 5443304,
+ "longestApexExecutionNano": 96630781
+ },
+ {
+ "batchNumber": 4665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149834324,
+ "shortestRoundTripNano": 52811165,
+ "longestRoundTripNano": 181806351,
+ "averageApexExecutionNano": 54730560,
+ "shortestApexExecutionNano": 8893539,
+ "longestApexExecutionNano": 127571722
+ },
+ {
+ "batchNumber": 4666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148767661,
+ "shortestRoundTripNano": 62526511,
+ "longestRoundTripNano": 175927465,
+ "averageApexExecutionNano": 62351822,
+ "shortestApexExecutionNano": 11762721,
+ "longestApexExecutionNano": 125602274
+ },
+ {
+ "batchNumber": 4667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133412443,
+ "shortestRoundTripNano": 48839991,
+ "longestRoundTripNano": 165328012,
+ "averageApexExecutionNano": 48130346,
+ "shortestApexExecutionNano": 9330161,
+ "longestApexExecutionNano": 100141678
+ },
+ {
+ "batchNumber": 4668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141401631,
+ "shortestRoundTripNano": 77616883,
+ "longestRoundTripNano": 165351945,
+ "averageApexExecutionNano": 67807339,
+ "shortestApexExecutionNano": 19110499,
+ "longestApexExecutionNano": 112476393
+ },
+ {
+ "batchNumber": 4669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36490",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156912415,
+ "shortestRoundTripNano": 61616325,
+ "longestRoundTripNano": 185892329,
+ "averageApexExecutionNano": 58383442,
+ "shortestApexExecutionNano": 7025736,
+ "longestApexExecutionNano": 121890824
+ },
+ {
+ "batchNumber": 4670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144546027,
+ "shortestRoundTripNano": 72020534,
+ "longestRoundTripNano": 172681735,
+ "averageApexExecutionNano": 61973289,
+ "shortestApexExecutionNano": 9539878,
+ "longestApexExecutionNano": 109826958
+ },
+ {
+ "batchNumber": 4671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36492",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143477820,
+ "shortestRoundTripNano": 57331697,
+ "longestRoundTripNano": 173572521,
+ "averageApexExecutionNano": 61560754,
+ "shortestApexExecutionNano": 7810182,
+ "longestApexExecutionNano": 130225682
+ },
+ {
+ "batchNumber": 4672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130779910,
+ "shortestRoundTripNano": 37333710,
+ "longestRoundTripNano": 156059964,
+ "averageApexExecutionNano": 57338690,
+ "shortestApexExecutionNano": 9858269,
+ "longestApexExecutionNano": 112549735
+ },
+ {
+ "batchNumber": 4673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144367136,
+ "shortestRoundTripNano": 57316579,
+ "longestRoundTripNano": 171469994,
+ "averageApexExecutionNano": 67806093,
+ "shortestApexExecutionNano": 16017266,
+ "longestApexExecutionNano": 110202647
+ },
+ {
+ "batchNumber": 4674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 235661264,
+ "shortestRoundTripNano": 64122005,
+ "longestRoundTripNano": 429339393,
+ "averageApexExecutionNano": 119892709,
+ "shortestApexExecutionNano": 10469496,
+ "longestApexExecutionNano": 354528579
+ },
+ {
+ "batchNumber": 4675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133846518,
+ "shortestRoundTripNano": 77295077,
+ "longestRoundTripNano": 160424997,
+ "averageApexExecutionNano": 55546832,
+ "shortestApexExecutionNano": 15325964,
+ "longestApexExecutionNano": 105268239
+ },
+ {
+ "batchNumber": 4676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143906594,
+ "shortestRoundTripNano": 60267153,
+ "longestRoundTripNano": 172385809,
+ "averageApexExecutionNano": 60722605,
+ "shortestApexExecutionNano": 6970124,
+ "longestApexExecutionNano": 123466368
+ },
+ {
+ "batchNumber": 4677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146977751,
+ "shortestRoundTripNano": 62148328,
+ "longestRoundTripNano": 175190433,
+ "averageApexExecutionNano": 73907963,
+ "shortestApexExecutionNano": 12434458,
+ "longestApexExecutionNano": 132550312
+ },
+ {
+ "batchNumber": 4678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 260338211,
+ "shortestRoundTripNano": 60106684,
+ "longestRoundTripNano": 297991788,
+ "averageApexExecutionNano": 118876394,
+ "shortestApexExecutionNano": 9549043,
+ "longestApexExecutionNano": 232638006
+ },
+ {
+ "batchNumber": 4679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146808639,
+ "shortestRoundTripNano": 71036609,
+ "longestRoundTripNano": 169951784,
+ "averageApexExecutionNano": 65657632,
+ "shortestApexExecutionNano": 8484152,
+ "longestApexExecutionNano": 129812707
+ },
+ {
+ "batchNumber": 4680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148286280,
+ "shortestRoundTripNano": 60582662,
+ "longestRoundTripNano": 184009101,
+ "averageApexExecutionNano": 59531562,
+ "shortestApexExecutionNano": 7091430,
+ "longestApexExecutionNano": 120944794
+ },
+ {
+ "batchNumber": 4681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176298552,
+ "shortestRoundTripNano": 88298364,
+ "longestRoundTripNano": 206103912,
+ "averageApexExecutionNano": 72344095,
+ "shortestApexExecutionNano": 6848067,
+ "longestApexExecutionNano": 143366375
+ },
+ {
+ "batchNumber": 4682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154866018,
+ "shortestRoundTripNano": 58637600,
+ "longestRoundTripNano": 185981128,
+ "averageApexExecutionNano": 60590911,
+ "shortestApexExecutionNano": 10528086,
+ "longestApexExecutionNano": 124481209
+ },
+ {
+ "batchNumber": 4683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141293584,
+ "shortestRoundTripNano": 73928963,
+ "longestRoundTripNano": 164088892,
+ "averageApexExecutionNano": 62425758,
+ "shortestApexExecutionNano": 12774138,
+ "longestApexExecutionNano": 122281571
+ },
+ {
+ "batchNumber": 4684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148689527,
+ "shortestRoundTripNano": 61956488,
+ "longestRoundTripNano": 182390387,
+ "averageApexExecutionNano": 63157999,
+ "shortestApexExecutionNano": 12418369,
+ "longestApexExecutionNano": 128548375
+ },
+ {
+ "batchNumber": 4685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149159134,
+ "shortestRoundTripNano": 77838380,
+ "longestRoundTripNano": 174962838,
+ "averageApexExecutionNano": 48932214,
+ "shortestApexExecutionNano": 9223016,
+ "longestApexExecutionNano": 104046254
+ },
+ {
+ "batchNumber": 4686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126373562,
+ "shortestRoundTripNano": 71970002,
+ "longestRoundTripNano": 156534152,
+ "averageApexExecutionNano": 59969293,
+ "shortestApexExecutionNano": 9821674,
+ "longestApexExecutionNano": 111417634
+ },
+ {
+ "batchNumber": 4687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135163995,
+ "shortestRoundTripNano": 65131082,
+ "longestRoundTripNano": 179698738,
+ "averageApexExecutionNano": 61116825,
+ "shortestApexExecutionNano": 5118042,
+ "longestApexExecutionNano": 127370743
+ },
+ {
+ "batchNumber": 4688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36494",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155374891,
+ "shortestRoundTripNano": 67188570,
+ "longestRoundTripNano": 187018113,
+ "averageApexExecutionNano": 57955890,
+ "shortestApexExecutionNano": 7254631,
+ "longestApexExecutionNano": 113343894
+ },
+ {
+ "batchNumber": 4689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147488271,
+ "shortestRoundTripNano": 58805794,
+ "longestRoundTripNano": 175979486,
+ "averageApexExecutionNano": 54468998,
+ "shortestApexExecutionNano": 13082585,
+ "longestApexExecutionNano": 125458446
+ },
+ {
+ "batchNumber": 4690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127038766,
+ "shortestRoundTripNano": 68902919,
+ "longestRoundTripNano": 153046073,
+ "averageApexExecutionNano": 58358287,
+ "shortestApexExecutionNano": 12287278,
+ "longestApexExecutionNano": 98962117
+ },
+ {
+ "batchNumber": 4691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154196918,
+ "shortestRoundTripNano": 48577701,
+ "longestRoundTripNano": 189349934,
+ "averageApexExecutionNano": 72101191,
+ "shortestApexExecutionNano": 8251556,
+ "longestApexExecutionNano": 145237112
+ },
+ {
+ "batchNumber": 4692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130175103,
+ "shortestRoundTripNano": 51844342,
+ "longestRoundTripNano": 160595026,
+ "averageApexExecutionNano": 51241683,
+ "shortestApexExecutionNano": 10231177,
+ "longestApexExecutionNano": 98191278
+ },
+ {
+ "batchNumber": 4693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36502",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126337407,
+ "shortestRoundTripNano": 59744017,
+ "longestRoundTripNano": 157420851,
+ "averageApexExecutionNano": 55392055,
+ "shortestApexExecutionNano": 11820377,
+ "longestApexExecutionNano": 109200982
+ },
+ {
+ "batchNumber": 4694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132572768,
+ "shortestRoundTripNano": 72565323,
+ "longestRoundTripNano": 160585489,
+ "averageApexExecutionNano": 55544555,
+ "shortestApexExecutionNano": 5153182,
+ "longestApexExecutionNano": 105834304
+ },
+ {
+ "batchNumber": 4695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146351903,
+ "shortestRoundTripNano": 64987757,
+ "longestRoundTripNano": 170236732,
+ "averageApexExecutionNano": 52034388,
+ "shortestApexExecutionNano": 5523075,
+ "longestApexExecutionNano": 117526878
+ },
+ {
+ "batchNumber": 4696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139758973,
+ "shortestRoundTripNano": 71476265,
+ "longestRoundTripNano": 166404231,
+ "averageApexExecutionNano": 60392059,
+ "shortestApexExecutionNano": 6581588,
+ "longestApexExecutionNano": 129012786
+ },
+ {
+ "batchNumber": 4697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143656059,
+ "shortestRoundTripNano": 44495810,
+ "longestRoundTripNano": 180133868,
+ "averageApexExecutionNano": 61100277,
+ "shortestApexExecutionNano": 10194891,
+ "longestApexExecutionNano": 127819737
+ },
+ {
+ "batchNumber": 4698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157717315,
+ "shortestRoundTripNano": 48363802,
+ "longestRoundTripNano": 196473034,
+ "averageApexExecutionNano": 69963291,
+ "shortestApexExecutionNano": 8312219,
+ "longestApexExecutionNano": 132220025
+ },
+ {
+ "batchNumber": 4699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151643798,
+ "shortestRoundTripNano": 84149445,
+ "longestRoundTripNano": 172467894,
+ "averageApexExecutionNano": 70167819,
+ "shortestApexExecutionNano": 6422404,
+ "longestApexExecutionNano": 115416313
+ },
+ {
+ "batchNumber": 4700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142302020,
+ "shortestRoundTripNano": 54699889,
+ "longestRoundTripNano": 176672454,
+ "averageApexExecutionNano": 57330753,
+ "shortestApexExecutionNano": 9245495,
+ "longestApexExecutionNano": 124343449
+ },
+ {
+ "batchNumber": 4701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134965884,
+ "shortestRoundTripNano": 70201622,
+ "longestRoundTripNano": 166028607,
+ "averageApexExecutionNano": 45039891,
+ "shortestApexExecutionNano": 6545437,
+ "longestApexExecutionNano": 112408164
+ },
+ {
+ "batchNumber": 4702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120771283,
+ "shortestRoundTripNano": 51298349,
+ "longestRoundTripNano": 147486008,
+ "averageApexExecutionNano": 48490379,
+ "shortestApexExecutionNano": 8665178,
+ "longestApexExecutionNano": 86680782
+ },
+ {
+ "batchNumber": 4703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142986272,
+ "shortestRoundTripNano": 62827734,
+ "longestRoundTripNano": 177533318,
+ "averageApexExecutionNano": 49266529,
+ "shortestApexExecutionNano": 4936641,
+ "longestApexExecutionNano": 99740661
+ },
+ {
+ "batchNumber": 4704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134197892,
+ "shortestRoundTripNano": 58655876,
+ "longestRoundTripNano": 169874194,
+ "averageApexExecutionNano": 55048682,
+ "shortestApexExecutionNano": 7229575,
+ "longestApexExecutionNano": 112499346
+ },
+ {
+ "batchNumber": 4705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153740078,
+ "shortestRoundTripNano": 38765532,
+ "longestRoundTripNano": 181846133,
+ "averageApexExecutionNano": 67210774,
+ "shortestApexExecutionNano": 6171573,
+ "longestApexExecutionNano": 129405862
+ },
+ {
+ "batchNumber": 4706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128868756,
+ "shortestRoundTripNano": 64964454,
+ "longestRoundTripNano": 156463116,
+ "averageApexExecutionNano": 55171035,
+ "shortestApexExecutionNano": 5216633,
+ "longestApexExecutionNano": 101706573
+ },
+ {
+ "batchNumber": 4707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140843692,
+ "shortestRoundTripNano": 58413138,
+ "longestRoundTripNano": 170741342,
+ "averageApexExecutionNano": 64699834,
+ "shortestApexExecutionNano": 14493811,
+ "longestApexExecutionNano": 120389392
+ },
+ {
+ "batchNumber": 4708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36506",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 198217276,
+ "shortestRoundTripNano": 64308013,
+ "longestRoundTripNano": 239275713,
+ "averageApexExecutionNano": 92325789,
+ "shortestApexExecutionNano": 9942821,
+ "longestApexExecutionNano": 195022269
+ },
+ {
+ "batchNumber": 4709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138453818,
+ "shortestRoundTripNano": 76220204,
+ "longestRoundTripNano": 164604447,
+ "averageApexExecutionNano": 61809461,
+ "shortestApexExecutionNano": 9952386,
+ "longestApexExecutionNano": 118738863
+ },
+ {
+ "batchNumber": 4710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143104626,
+ "shortestRoundTripNano": 74796908,
+ "longestRoundTripNano": 168208120,
+ "averageApexExecutionNano": 49633752,
+ "shortestApexExecutionNano": 8872603,
+ "longestApexExecutionNano": 121823597
+ },
+ {
+ "batchNumber": 4711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165373689,
+ "shortestRoundTripNano": 54373137,
+ "longestRoundTripNano": 208151596,
+ "averageApexExecutionNano": 71304826,
+ "shortestApexExecutionNano": 11227856,
+ "longestApexExecutionNano": 141875465
+ },
+ {
+ "batchNumber": 4712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36510",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135743482,
+ "shortestRoundTripNano": 64800939,
+ "longestRoundTripNano": 167374629,
+ "averageApexExecutionNano": 49461621,
+ "shortestApexExecutionNano": 5143344,
+ "longestApexExecutionNano": 97763657
+ },
+ {
+ "batchNumber": 4713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36510",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144962575,
+ "shortestRoundTripNano": 57603902,
+ "longestRoundTripNano": 173738691,
+ "averageApexExecutionNano": 73694747,
+ "shortestApexExecutionNano": 11176260,
+ "longestApexExecutionNano": 130434208
+ },
+ {
+ "batchNumber": 4714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154593367,
+ "shortestRoundTripNano": 48808296,
+ "longestRoundTripNano": 196490861,
+ "averageApexExecutionNano": 68291294,
+ "shortestApexExecutionNano": 8902279,
+ "longestApexExecutionNano": 125816047
+ },
+ {
+ "batchNumber": 4715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191915639,
+ "shortestRoundTripNano": 82948839,
+ "longestRoundTripNano": 220783859,
+ "averageApexExecutionNano": 77443975,
+ "shortestApexExecutionNano": 11136275,
+ "longestApexExecutionNano": 145451057
+ },
+ {
+ "batchNumber": 4716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135554028,
+ "shortestRoundTripNano": 54323799,
+ "longestRoundTripNano": 167483248,
+ "averageApexExecutionNano": 47949434,
+ "shortestApexExecutionNano": 5151638,
+ "longestApexExecutionNano": 122781674
+ },
+ {
+ "batchNumber": 4717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133234536,
+ "shortestRoundTripNano": 40818667,
+ "longestRoundTripNano": 157627328,
+ "averageApexExecutionNano": 50249315,
+ "shortestApexExecutionNano": 8835185,
+ "longestApexExecutionNano": 94867727
+ },
+ {
+ "batchNumber": 4718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36510",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144323647,
+ "shortestRoundTripNano": 75404872,
+ "longestRoundTripNano": 176123058,
+ "averageApexExecutionNano": 65828682,
+ "shortestApexExecutionNano": 9120446,
+ "longestApexExecutionNano": 121503998
+ },
+ {
+ "batchNumber": 4719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36510",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159685905,
+ "shortestRoundTripNano": 52200153,
+ "longestRoundTripNano": 189911616,
+ "averageApexExecutionNano": 64920630,
+ "shortestApexExecutionNano": 12407478,
+ "longestApexExecutionNano": 124944989
+ },
+ {
+ "batchNumber": 4720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147811097,
+ "shortestRoundTripNano": 92990423,
+ "longestRoundTripNano": 169914967,
+ "averageApexExecutionNano": 73566198,
+ "shortestApexExecutionNano": 15878270,
+ "longestApexExecutionNano": 128243434
+ },
+ {
+ "batchNumber": 4721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144867840,
+ "shortestRoundTripNano": 35009610,
+ "longestRoundTripNano": 175359324,
+ "averageApexExecutionNano": 56983526,
+ "shortestApexExecutionNano": 9674730,
+ "longestApexExecutionNano": 124786407
+ },
+ {
+ "batchNumber": 4722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148066590,
+ "shortestRoundTripNano": 98386511,
+ "longestRoundTripNano": 169469152,
+ "averageApexExecutionNano": 63810386,
+ "shortestApexExecutionNano": 6920196,
+ "longestApexExecutionNano": 108951157
+ },
+ {
+ "batchNumber": 4723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156155888,
+ "shortestRoundTripNano": 32490175,
+ "longestRoundTripNano": 199919344,
+ "averageApexExecutionNano": 59025586,
+ "shortestApexExecutionNano": 9482621,
+ "longestApexExecutionNano": 127474700
+ },
+ {
+ "batchNumber": 4724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171284801,
+ "shortestRoundTripNano": 80163104,
+ "longestRoundTripNano": 209937313,
+ "averageApexExecutionNano": 85220013,
+ "shortestApexExecutionNano": 12861287,
+ "longestApexExecutionNano": 161120239
+ },
+ {
+ "batchNumber": 4725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139929171,
+ "shortestRoundTripNano": 50406993,
+ "longestRoundTripNano": 166747800,
+ "averageApexExecutionNano": 53017579,
+ "shortestApexExecutionNano": 7315777,
+ "longestApexExecutionNano": 110146556
+ },
+ {
+ "batchNumber": 4726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137771869,
+ "shortestRoundTripNano": 59392810,
+ "longestRoundTripNano": 163385517,
+ "averageApexExecutionNano": 55097754,
+ "shortestApexExecutionNano": 6165068,
+ "longestApexExecutionNano": 108092182
+ },
+ {
+ "batchNumber": 4727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151081646,
+ "shortestRoundTripNano": 84462317,
+ "longestRoundTripNano": 176665693,
+ "averageApexExecutionNano": 65418178,
+ "shortestApexExecutionNano": 11139532,
+ "longestApexExecutionNano": 130335607
+ },
+ {
+ "batchNumber": 4728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136516659,
+ "shortestRoundTripNano": 63673282,
+ "longestRoundTripNano": 170074261,
+ "averageApexExecutionNano": 60010551,
+ "shortestApexExecutionNano": 8263064,
+ "longestApexExecutionNano": 107869698
+ },
+ {
+ "batchNumber": 4729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152604935,
+ "shortestRoundTripNano": 80570801,
+ "longestRoundTripNano": 183413218,
+ "averageApexExecutionNano": 76642252,
+ "shortestApexExecutionNano": 15425021,
+ "longestApexExecutionNano": 135559751
+ },
+ {
+ "batchNumber": 4730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139416407,
+ "shortestRoundTripNano": 51830638,
+ "longestRoundTripNano": 176820011,
+ "averageApexExecutionNano": 60863647,
+ "shortestApexExecutionNano": 8491334,
+ "longestApexExecutionNano": 137294315
+ },
+ {
+ "batchNumber": 4731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136263711,
+ "shortestRoundTripNano": 65432150,
+ "longestRoundTripNano": 170089994,
+ "averageApexExecutionNano": 48643466,
+ "shortestApexExecutionNano": 7089780,
+ "longestApexExecutionNano": 91149218
+ },
+ {
+ "batchNumber": 4732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136191105,
+ "shortestRoundTripNano": 61075779,
+ "longestRoundTripNano": 164339904,
+ "averageApexExecutionNano": 57537107,
+ "shortestApexExecutionNano": 15562242,
+ "longestApexExecutionNano": 116773864
+ },
+ {
+ "batchNumber": 4733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155167173,
+ "shortestRoundTripNano": 66173192,
+ "longestRoundTripNano": 188508759,
+ "averageApexExecutionNano": 79746352,
+ "shortestApexExecutionNano": 10007957,
+ "longestApexExecutionNano": 146764350
+ },
+ {
+ "batchNumber": 4734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134580046,
+ "shortestRoundTripNano": 55010456,
+ "longestRoundTripNano": 160245901,
+ "averageApexExecutionNano": 58634948,
+ "shortestApexExecutionNano": 6665685,
+ "longestApexExecutionNano": 119684892
+ },
+ {
+ "batchNumber": 4735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160544551,
+ "shortestRoundTripNano": 68173446,
+ "longestRoundTripNano": 196010800,
+ "averageApexExecutionNano": 69566524,
+ "shortestApexExecutionNano": 7050017,
+ "longestApexExecutionNano": 114631621
+ },
+ {
+ "batchNumber": 4736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141961856,
+ "shortestRoundTripNano": 69895848,
+ "longestRoundTripNano": 165510652,
+ "averageApexExecutionNano": 69091991,
+ "shortestApexExecutionNano": 12865826,
+ "longestApexExecutionNano": 116881191
+ },
+ {
+ "batchNumber": 4737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156871725,
+ "shortestRoundTripNano": 65389589,
+ "longestRoundTripNano": 186782745,
+ "averageApexExecutionNano": 70467073,
+ "shortestApexExecutionNano": 8729497,
+ "longestApexExecutionNano": 137267723
+ },
+ {
+ "batchNumber": 4738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140215127,
+ "shortestRoundTripNano": 64205195,
+ "longestRoundTripNano": 178602707,
+ "averageApexExecutionNano": 45807417,
+ "shortestApexExecutionNano": 6268317,
+ "longestApexExecutionNano": 112690437
+ },
+ {
+ "batchNumber": 4739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147320246,
+ "shortestRoundTripNano": 81188922,
+ "longestRoundTripNano": 174332714,
+ "averageApexExecutionNano": 79771383,
+ "shortestApexExecutionNano": 8858665,
+ "longestApexExecutionNano": 129430832
+ },
+ {
+ "batchNumber": 4740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154470945,
+ "shortestRoundTripNano": 61402968,
+ "longestRoundTripNano": 193980266,
+ "averageApexExecutionNano": 64631941,
+ "shortestApexExecutionNano": 7417104,
+ "longestApexExecutionNano": 118140845
+ },
+ {
+ "batchNumber": 4741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155042760,
+ "shortestRoundTripNano": 86867254,
+ "longestRoundTripNano": 178312967,
+ "averageApexExecutionNano": 85901886,
+ "shortestApexExecutionNano": 7707510,
+ "longestApexExecutionNano": 130863955
+ },
+ {
+ "batchNumber": 4742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169572369,
+ "shortestRoundTripNano": 83400054,
+ "longestRoundTripNano": 198889053,
+ "averageApexExecutionNano": 65757218,
+ "shortestApexExecutionNano": 13648543,
+ "longestApexExecutionNano": 138439902
+ },
+ {
+ "batchNumber": 4743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155506506,
+ "shortestRoundTripNano": 76360434,
+ "longestRoundTripNano": 190858060,
+ "averageApexExecutionNano": 46680808,
+ "shortestApexExecutionNano": 11975069,
+ "longestApexExecutionNano": 94590701
+ },
+ {
+ "batchNumber": 4744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129230375,
+ "shortestRoundTripNano": 64717038,
+ "longestRoundTripNano": 159441594,
+ "averageApexExecutionNano": 55543906,
+ "shortestApexExecutionNano": 7374045,
+ "longestApexExecutionNano": 108832976
+ },
+ {
+ "batchNumber": 4745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153036338,
+ "shortestRoundTripNano": 77590927,
+ "longestRoundTripNano": 184139268,
+ "averageApexExecutionNano": 65184470,
+ "shortestApexExecutionNano": 8946943,
+ "longestApexExecutionNano": 135269019
+ },
+ {
+ "batchNumber": 4746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139350139,
+ "shortestRoundTripNano": 55649119,
+ "longestRoundTripNano": 166851027,
+ "averageApexExecutionNano": 47559233,
+ "shortestApexExecutionNano": 9879491,
+ "longestApexExecutionNano": 109162157
+ },
+ {
+ "batchNumber": 4747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149766648,
+ "shortestRoundTripNano": 67055784,
+ "longestRoundTripNano": 183094474,
+ "averageApexExecutionNano": 54922784,
+ "shortestApexExecutionNano": 8865945,
+ "longestApexExecutionNano": 107348128
+ },
+ {
+ "batchNumber": 4748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156875349,
+ "shortestRoundTripNano": 74728955,
+ "longestRoundTripNano": 181110669,
+ "averageApexExecutionNano": 67534780,
+ "shortestApexExecutionNano": 6548620,
+ "longestApexExecutionNano": 123147389
+ },
+ {
+ "batchNumber": 4749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149725785,
+ "shortestRoundTripNano": 70120286,
+ "longestRoundTripNano": 172067054,
+ "averageApexExecutionNano": 67514047,
+ "shortestApexExecutionNano": 6667385,
+ "longestApexExecutionNano": 120595337
+ },
+ {
+ "batchNumber": 4750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131489632,
+ "shortestRoundTripNano": 49804043,
+ "longestRoundTripNano": 161532340,
+ "averageApexExecutionNano": 60521478,
+ "shortestApexExecutionNano": 8204635,
+ "longestApexExecutionNano": 117958373
+ },
+ {
+ "batchNumber": 4751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168261134,
+ "shortestRoundTripNano": 78092857,
+ "longestRoundTripNano": 197428917,
+ "averageApexExecutionNano": 61537346,
+ "shortestApexExecutionNano": 8863448,
+ "longestApexExecutionNano": 106240715
+ },
+ {
+ "batchNumber": 4752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138013556,
+ "shortestRoundTripNano": 59897894,
+ "longestRoundTripNano": 171313089,
+ "averageApexExecutionNano": 60959141,
+ "shortestApexExecutionNano": 9404862,
+ "longestApexExecutionNano": 116897844
+ },
+ {
+ "batchNumber": 4753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134202457,
+ "shortestRoundTripNano": 66176469,
+ "longestRoundTripNano": 159533787,
+ "averageApexExecutionNano": 46160298,
+ "shortestApexExecutionNano": 9280433,
+ "longestApexExecutionNano": 99274910
+ },
+ {
+ "batchNumber": 4754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145317503,
+ "shortestRoundTripNano": 57893424,
+ "longestRoundTripNano": 174638415,
+ "averageApexExecutionNano": 42278885,
+ "shortestApexExecutionNano": 6854793,
+ "longestApexExecutionNano": 119506129
+ },
+ {
+ "batchNumber": 4755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 201828976,
+ "shortestRoundTripNano": 103873742,
+ "longestRoundTripNano": 228697314,
+ "averageApexExecutionNano": 98206147,
+ "shortestApexExecutionNano": 21924861,
+ "longestApexExecutionNano": 160483961
+ },
+ {
+ "batchNumber": 4756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157714143,
+ "shortestRoundTripNano": 83326576,
+ "longestRoundTripNano": 184288243,
+ "averageApexExecutionNano": 73394274,
+ "shortestApexExecutionNano": 13912948,
+ "longestApexExecutionNano": 122105410
+ },
+ {
+ "batchNumber": 4757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162037021,
+ "shortestRoundTripNano": 86029028,
+ "longestRoundTripNano": 193884423,
+ "averageApexExecutionNano": 75797875,
+ "shortestApexExecutionNano": 8828503,
+ "longestApexExecutionNano": 138567214
+ },
+ {
+ "batchNumber": 4758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132283895,
+ "shortestRoundTripNano": 49528914,
+ "longestRoundTripNano": 158924801,
+ "averageApexExecutionNano": 46217489,
+ "shortestApexExecutionNano": 8208345,
+ "longestApexExecutionNano": 108211209
+ },
+ {
+ "batchNumber": 4759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149273111,
+ "shortestRoundTripNano": 59763377,
+ "longestRoundTripNano": 183770110,
+ "averageApexExecutionNano": 74412496,
+ "shortestApexExecutionNano": 21599737,
+ "longestApexExecutionNano": 132379072
+ },
+ {
+ "batchNumber": 4760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132995205,
+ "shortestRoundTripNano": 50311870,
+ "longestRoundTripNano": 168091102,
+ "averageApexExecutionNano": 52488295,
+ "shortestApexExecutionNano": 8579499,
+ "longestApexExecutionNano": 129564118
+ },
+ {
+ "batchNumber": 4761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141511081,
+ "shortestRoundTripNano": 53651630,
+ "longestRoundTripNano": 175766047,
+ "averageApexExecutionNano": 50871706,
+ "shortestApexExecutionNano": 8114230,
+ "longestApexExecutionNano": 115969108
+ },
+ {
+ "batchNumber": 4762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36528",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151516237,
+ "shortestRoundTripNano": 44206350,
+ "longestRoundTripNano": 182510271,
+ "averageApexExecutionNano": 64833039,
+ "shortestApexExecutionNano": 8336288,
+ "longestApexExecutionNano": 124658378
+ },
+ {
+ "batchNumber": 4763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134320182,
+ "shortestRoundTripNano": 61396066,
+ "longestRoundTripNano": 169753653,
+ "averageApexExecutionNano": 50039531,
+ "shortestApexExecutionNano": 7588462,
+ "longestApexExecutionNano": 102046388
+ },
+ {
+ "batchNumber": 4764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116460409,
+ "shortestRoundTripNano": 58887975,
+ "longestRoundTripNano": 146571843,
+ "averageApexExecutionNano": 56761064,
+ "shortestApexExecutionNano": 8915499,
+ "longestApexExecutionNano": 107284752
+ },
+ {
+ "batchNumber": 4765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129658740,
+ "shortestRoundTripNano": 63059745,
+ "longestRoundTripNano": 155797838,
+ "averageApexExecutionNano": 58278551,
+ "shortestApexExecutionNano": 10978904,
+ "longestApexExecutionNano": 109785209
+ },
+ {
+ "batchNumber": 4766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160524734,
+ "shortestRoundTripNano": 59453279,
+ "longestRoundTripNano": 187158743,
+ "averageApexExecutionNano": 60841178,
+ "shortestApexExecutionNano": 9275800,
+ "longestApexExecutionNano": 132099580
+ },
+ {
+ "batchNumber": 4767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124573385,
+ "shortestRoundTripNano": 64160247,
+ "longestRoundTripNano": 151354861,
+ "averageApexExecutionNano": 55607765,
+ "shortestApexExecutionNano": 9609915,
+ "longestApexExecutionNano": 108885530
+ },
+ {
+ "batchNumber": 4768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143633781,
+ "shortestRoundTripNano": 59806431,
+ "longestRoundTripNano": 178330164,
+ "averageApexExecutionNano": 57692378,
+ "shortestApexExecutionNano": 7362848,
+ "longestApexExecutionNano": 119081543
+ },
+ {
+ "batchNumber": 4769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141059590,
+ "shortestRoundTripNano": 85961869,
+ "longestRoundTripNano": 162327409,
+ "averageApexExecutionNano": 48477136,
+ "shortestApexExecutionNano": 6457039,
+ "longestApexExecutionNano": 104015878
+ },
+ {
+ "batchNumber": 4770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158402659,
+ "shortestRoundTripNano": 56284117,
+ "longestRoundTripNano": 189519330,
+ "averageApexExecutionNano": 72812154,
+ "shortestApexExecutionNano": 13049142,
+ "longestApexExecutionNano": 129883823
+ },
+ {
+ "batchNumber": 4771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137305131,
+ "shortestRoundTripNano": 70300393,
+ "longestRoundTripNano": 167380480,
+ "averageApexExecutionNano": 53445478,
+ "shortestApexExecutionNano": 5998085,
+ "longestApexExecutionNano": 119672030
+ },
+ {
+ "batchNumber": 4772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146530498,
+ "shortestRoundTripNano": 57885276,
+ "longestRoundTripNano": 179639880,
+ "averageApexExecutionNano": 57375422,
+ "shortestApexExecutionNano": 7775535,
+ "longestApexExecutionNano": 115904082
+ },
+ {
+ "batchNumber": 4773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136412560,
+ "shortestRoundTripNano": 76869289,
+ "longestRoundTripNano": 167007598,
+ "averageApexExecutionNano": 65049853,
+ "shortestApexExecutionNano": 11011778,
+ "longestApexExecutionNano": 105105967
+ },
+ {
+ "batchNumber": 4774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140006195,
+ "shortestRoundTripNano": 67658592,
+ "longestRoundTripNano": 172890684,
+ "averageApexExecutionNano": 55403318,
+ "shortestApexExecutionNano": 6699915,
+ "longestApexExecutionNano": 114371615
+ },
+ {
+ "batchNumber": 4775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136574609,
+ "shortestRoundTripNano": 45016125,
+ "longestRoundTripNano": 166658384,
+ "averageApexExecutionNano": 49206606,
+ "shortestApexExecutionNano": 6560232,
+ "longestApexExecutionNano": 109932595
+ },
+ {
+ "batchNumber": 4776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126578601,
+ "shortestRoundTripNano": 60743675,
+ "longestRoundTripNano": 155866805,
+ "averageApexExecutionNano": 45322357,
+ "shortestApexExecutionNano": 6100887,
+ "longestApexExecutionNano": 100874010
+ },
+ {
+ "batchNumber": 4777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127327885,
+ "shortestRoundTripNano": 53998264,
+ "longestRoundTripNano": 161504438,
+ "averageApexExecutionNano": 37473751,
+ "shortestApexExecutionNano": 5486953,
+ "longestApexExecutionNano": 96493110
+ },
+ {
+ "batchNumber": 4778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167972738,
+ "shortestRoundTripNano": 55288832,
+ "longestRoundTripNano": 199476542,
+ "averageApexExecutionNano": 73149461,
+ "shortestApexExecutionNano": 6303307,
+ "longestApexExecutionNano": 147608662
+ },
+ {
+ "batchNumber": 4779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165978428,
+ "shortestRoundTripNano": 102329134,
+ "longestRoundTripNano": 195280653,
+ "averageApexExecutionNano": 79654470,
+ "shortestApexExecutionNano": 5610986,
+ "longestApexExecutionNano": 154848413
+ },
+ {
+ "batchNumber": 4780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137238851,
+ "shortestRoundTripNano": 55207720,
+ "longestRoundTripNano": 167091365,
+ "averageApexExecutionNano": 48244781,
+ "shortestApexExecutionNano": 7197203,
+ "longestApexExecutionNano": 119047276
+ },
+ {
+ "batchNumber": 4781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36534",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167557481,
+ "shortestRoundTripNano": 61371743,
+ "longestRoundTripNano": 232769204,
+ "averageApexExecutionNano": 71495415,
+ "shortestApexExecutionNano": 9020729,
+ "longestApexExecutionNano": 135506640
+ },
+ {
+ "batchNumber": 4782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149421129,
+ "shortestRoundTripNano": 82111787,
+ "longestRoundTripNano": 182849829,
+ "averageApexExecutionNano": 53613217,
+ "shortestApexExecutionNano": 6558511,
+ "longestApexExecutionNano": 121319994
+ },
+ {
+ "batchNumber": 4783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176986544,
+ "shortestRoundTripNano": 62756836,
+ "longestRoundTripNano": 210633342,
+ "averageApexExecutionNano": 69073115,
+ "shortestApexExecutionNano": 8323778,
+ "longestApexExecutionNano": 142343444
+ },
+ {
+ "batchNumber": 4784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152034595,
+ "shortestRoundTripNano": 74376856,
+ "longestRoundTripNano": 182717827,
+ "averageApexExecutionNano": 74078842,
+ "shortestApexExecutionNano": 12292972,
+ "longestApexExecutionNano": 129111783
+ },
+ {
+ "batchNumber": 4785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143065092,
+ "shortestRoundTripNano": 61116639,
+ "longestRoundTripNano": 171545456,
+ "averageApexExecutionNano": 51874199,
+ "shortestApexExecutionNano": 6426636,
+ "longestApexExecutionNano": 111993809
+ },
+ {
+ "batchNumber": 4786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160993387,
+ "shortestRoundTripNano": 80636862,
+ "longestRoundTripNano": 184386765,
+ "averageApexExecutionNano": 59489472,
+ "shortestApexExecutionNano": 12140872,
+ "longestApexExecutionNano": 121937761
+ },
+ {
+ "batchNumber": 4787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141578216,
+ "shortestRoundTripNano": 47412694,
+ "longestRoundTripNano": 168222574,
+ "averageApexExecutionNano": 51234830,
+ "shortestApexExecutionNano": 9267458,
+ "longestApexExecutionNano": 122718268
+ },
+ {
+ "batchNumber": 4788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149463081,
+ "shortestRoundTripNano": 40481264,
+ "longestRoundTripNano": 179374411,
+ "averageApexExecutionNano": 68532262,
+ "shortestApexExecutionNano": 12927772,
+ "longestApexExecutionNano": 109778914
+ },
+ {
+ "batchNumber": 4789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159183493,
+ "shortestRoundTripNano": 69943561,
+ "longestRoundTripNano": 195541137,
+ "averageApexExecutionNano": 51711198,
+ "shortestApexExecutionNano": 7599715,
+ "longestApexExecutionNano": 144848868
+ },
+ {
+ "batchNumber": 4790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144249598,
+ "shortestRoundTripNano": 51225186,
+ "longestRoundTripNano": 171568584,
+ "averageApexExecutionNano": 53684316,
+ "shortestApexExecutionNano": 6613466,
+ "longestApexExecutionNano": 105277055
+ },
+ {
+ "batchNumber": 4791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124881011,
+ "shortestRoundTripNano": 51769092,
+ "longestRoundTripNano": 167367835,
+ "averageApexExecutionNano": 58791654,
+ "shortestApexExecutionNano": 12773246,
+ "longestApexExecutionNano": 114169885
+ },
+ {
+ "batchNumber": 4792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152830658,
+ "shortestRoundTripNano": 75711222,
+ "longestRoundTripNano": 183936323,
+ "averageApexExecutionNano": 60432323,
+ "shortestApexExecutionNano": 7656741,
+ "longestApexExecutionNano": 127674302
+ },
+ {
+ "batchNumber": 4793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172624814,
+ "shortestRoundTripNano": 88758565,
+ "longestRoundTripNano": 201552064,
+ "averageApexExecutionNano": 77064757,
+ "shortestApexExecutionNano": 7604529,
+ "longestApexExecutionNano": 142078214
+ },
+ {
+ "batchNumber": 4794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158502902,
+ "shortestRoundTripNano": 56712340,
+ "longestRoundTripNano": 189899060,
+ "averageApexExecutionNano": 56727721,
+ "shortestApexExecutionNano": 11027996,
+ "longestApexExecutionNano": 117240203
+ },
+ {
+ "batchNumber": 4795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141428797,
+ "shortestRoundTripNano": 77567264,
+ "longestRoundTripNano": 165652762,
+ "averageApexExecutionNano": 66399959,
+ "shortestApexExecutionNano": 8520755,
+ "longestApexExecutionNano": 117471834
+ },
+ {
+ "batchNumber": 4796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143955584,
+ "shortestRoundTripNano": 77639765,
+ "longestRoundTripNano": 167736853,
+ "averageApexExecutionNano": 59770987,
+ "shortestApexExecutionNano": 14593081,
+ "longestApexExecutionNano": 104986753
+ },
+ {
+ "batchNumber": 4797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152477494,
+ "shortestRoundTripNano": 61010197,
+ "longestRoundTripNano": 181334311,
+ "averageApexExecutionNano": 64896961,
+ "shortestApexExecutionNano": 7802058,
+ "longestApexExecutionNano": 126361869
+ },
+ {
+ "batchNumber": 4798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153977873,
+ "shortestRoundTripNano": 65328791,
+ "longestRoundTripNano": 185725075,
+ "averageApexExecutionNano": 62384546,
+ "shortestApexExecutionNano": 8323303,
+ "longestApexExecutionNano": 133058194
+ },
+ {
+ "batchNumber": 4799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145065855,
+ "shortestRoundTripNano": 88990327,
+ "longestRoundTripNano": 169653352,
+ "averageApexExecutionNano": 58718832,
+ "shortestApexExecutionNano": 9603723,
+ "longestApexExecutionNano": 117269141
+ },
+ {
+ "batchNumber": 4800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167000647,
+ "shortestRoundTripNano": 98845727,
+ "longestRoundTripNano": 189244735,
+ "averageApexExecutionNano": 60160200,
+ "shortestApexExecutionNano": 6679820,
+ "longestApexExecutionNano": 122564512
+ },
+ {
+ "batchNumber": 4801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164360962,
+ "shortestRoundTripNano": 62927868,
+ "longestRoundTripNano": 197735152,
+ "averageApexExecutionNano": 73549593,
+ "shortestApexExecutionNano": 6236344,
+ "longestApexExecutionNano": 149638619
+ },
+ {
+ "batchNumber": 4802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36546",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124980092,
+ "shortestRoundTripNano": 55873497,
+ "longestRoundTripNano": 153585356,
+ "averageApexExecutionNano": 53654914,
+ "shortestApexExecutionNano": 9824051,
+ "longestApexExecutionNano": 117930083
+ },
+ {
+ "batchNumber": 4803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36546",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153608931,
+ "shortestRoundTripNano": 57840826,
+ "longestRoundTripNano": 189475189,
+ "averageApexExecutionNano": 66756315,
+ "shortestApexExecutionNano": 6448815,
+ "longestApexExecutionNano": 125218367
+ },
+ {
+ "batchNumber": 4804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130147240,
+ "shortestRoundTripNano": 68922502,
+ "longestRoundTripNano": 160794795,
+ "averageApexExecutionNano": 57042542,
+ "shortestApexExecutionNano": 6501685,
+ "longestApexExecutionNano": 124188170
+ },
+ {
+ "batchNumber": 4805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158592611,
+ "shortestRoundTripNano": 67249901,
+ "longestRoundTripNano": 194845159,
+ "averageApexExecutionNano": 54296430,
+ "shortestApexExecutionNano": 8664014,
+ "longestApexExecutionNano": 124705552
+ },
+ {
+ "batchNumber": 4806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156740751,
+ "shortestRoundTripNano": 90013848,
+ "longestRoundTripNano": 184385321,
+ "averageApexExecutionNano": 72255055,
+ "shortestApexExecutionNano": 6102935,
+ "longestApexExecutionNano": 124930134
+ },
+ {
+ "batchNumber": 4807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123543197,
+ "shortestRoundTripNano": 59725080,
+ "longestRoundTripNano": 161351748,
+ "averageApexExecutionNano": 58434343,
+ "shortestApexExecutionNano": 9161530,
+ "longestApexExecutionNano": 114199633
+ },
+ {
+ "batchNumber": 4808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163867749,
+ "shortestRoundTripNano": 66185532,
+ "longestRoundTripNano": 200774169,
+ "averageApexExecutionNano": 64318412,
+ "shortestApexExecutionNano": 12319828,
+ "longestApexExecutionNano": 98966202
+ },
+ {
+ "batchNumber": 4809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175057715,
+ "shortestRoundTripNano": 79492657,
+ "longestRoundTripNano": 210440811,
+ "averageApexExecutionNano": 80442537,
+ "shortestApexExecutionNano": 12448818,
+ "longestApexExecutionNano": 161475893
+ },
+ {
+ "batchNumber": 4810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136869818,
+ "shortestRoundTripNano": 69449510,
+ "longestRoundTripNano": 162703430,
+ "averageApexExecutionNano": 46718067,
+ "shortestApexExecutionNano": 7384866,
+ "longestApexExecutionNano": 107432609
+ },
+ {
+ "batchNumber": 4811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141696395,
+ "shortestRoundTripNano": 49820078,
+ "longestRoundTripNano": 173668580,
+ "averageApexExecutionNano": 55992972,
+ "shortestApexExecutionNano": 5795474,
+ "longestApexExecutionNano": 103400804
+ },
+ {
+ "batchNumber": 4812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163302528,
+ "shortestRoundTripNano": 41713604,
+ "longestRoundTripNano": 193225648,
+ "averageApexExecutionNano": 67735703,
+ "shortestApexExecutionNano": 11877440,
+ "longestApexExecutionNano": 136060519
+ },
+ {
+ "batchNumber": 4813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172918996,
+ "shortestRoundTripNano": 89595643,
+ "longestRoundTripNano": 204188806,
+ "averageApexExecutionNano": 67186174,
+ "shortestApexExecutionNano": 10656391,
+ "longestApexExecutionNano": 128688420
+ },
+ {
+ "batchNumber": 4814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135525976,
+ "shortestRoundTripNano": 40130611,
+ "longestRoundTripNano": 160145478,
+ "averageApexExecutionNano": 62008114,
+ "shortestApexExecutionNano": 7155851,
+ "longestApexExecutionNano": 121770354
+ },
+ {
+ "batchNumber": 4815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148220074,
+ "shortestRoundTripNano": 68968013,
+ "longestRoundTripNano": 196073102,
+ "averageApexExecutionNano": 60396021,
+ "shortestApexExecutionNano": 6857440,
+ "longestApexExecutionNano": 154134293
+ },
+ {
+ "batchNumber": 4816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153995575,
+ "shortestRoundTripNano": 83090895,
+ "longestRoundTripNano": 184473095,
+ "averageApexExecutionNano": 47311341,
+ "shortestApexExecutionNano": 7934577,
+ "longestApexExecutionNano": 128507281
+ },
+ {
+ "batchNumber": 4817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158939750,
+ "shortestRoundTripNano": 52335739,
+ "longestRoundTripNano": 197297013,
+ "averageApexExecutionNano": 61403284,
+ "shortestApexExecutionNano": 5336435,
+ "longestApexExecutionNano": 119548214
+ },
+ {
+ "batchNumber": 4818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161980946,
+ "shortestRoundTripNano": 82909996,
+ "longestRoundTripNano": 189183357,
+ "averageApexExecutionNano": 82567819,
+ "shortestApexExecutionNano": 6246392,
+ "longestApexExecutionNano": 148263162
+ },
+ {
+ "batchNumber": 4819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159868686,
+ "shortestRoundTripNano": 57616894,
+ "longestRoundTripNano": 195512264,
+ "averageApexExecutionNano": 57893682,
+ "shortestApexExecutionNano": 7148233,
+ "longestApexExecutionNano": 103444682
+ },
+ {
+ "batchNumber": 4820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137133035,
+ "shortestRoundTripNano": 68704946,
+ "longestRoundTripNano": 162308711,
+ "averageApexExecutionNano": 64802214,
+ "shortestApexExecutionNano": 5990806,
+ "longestApexExecutionNano": 122715618
+ },
+ {
+ "batchNumber": 4821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153374970,
+ "shortestRoundTripNano": 52400303,
+ "longestRoundTripNano": 180332170,
+ "averageApexExecutionNano": 55138619,
+ "shortestApexExecutionNano": 8684211,
+ "longestApexExecutionNano": 117954274
+ },
+ {
+ "batchNumber": 4822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141676775,
+ "shortestRoundTripNano": 76068379,
+ "longestRoundTripNano": 169337018,
+ "averageApexExecutionNano": 65080561,
+ "shortestApexExecutionNano": 12569915,
+ "longestApexExecutionNano": 118220916
+ },
+ {
+ "batchNumber": 4823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179067850,
+ "shortestRoundTripNano": 68775716,
+ "longestRoundTripNano": 215779711,
+ "averageApexExecutionNano": 78879998,
+ "shortestApexExecutionNano": 7448305,
+ "longestApexExecutionNano": 154687165
+ },
+ {
+ "batchNumber": 4824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166163733,
+ "shortestRoundTripNano": 80294340,
+ "longestRoundTripNano": 208771797,
+ "averageApexExecutionNano": 71160018,
+ "shortestApexExecutionNano": 7974131,
+ "longestApexExecutionNano": 158804214
+ },
+ {
+ "batchNumber": 4825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178401441,
+ "shortestRoundTripNano": 49394755,
+ "longestRoundTripNano": 212068849,
+ "averageApexExecutionNano": 76773243,
+ "shortestApexExecutionNano": 9151144,
+ "longestApexExecutionNano": 148489537
+ },
+ {
+ "batchNumber": 4826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135030624,
+ "shortestRoundTripNano": 73666187,
+ "longestRoundTripNano": 159407697,
+ "averageApexExecutionNano": 64981455,
+ "shortestApexExecutionNano": 6852509,
+ "longestApexExecutionNano": 115334925
+ },
+ {
+ "batchNumber": 4827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158740473,
+ "shortestRoundTripNano": 72279674,
+ "longestRoundTripNano": 200691578,
+ "averageApexExecutionNano": 68517490,
+ "shortestApexExecutionNano": 6995056,
+ "longestApexExecutionNano": 154927848
+ },
+ {
+ "batchNumber": 4828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152650727,
+ "shortestRoundTripNano": 85325269,
+ "longestRoundTripNano": 184301694,
+ "averageApexExecutionNano": 69024563,
+ "shortestApexExecutionNano": 14786079,
+ "longestApexExecutionNano": 130684569
+ },
+ {
+ "batchNumber": 4829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141038509,
+ "shortestRoundTripNano": 50767543,
+ "longestRoundTripNano": 173940065,
+ "averageApexExecutionNano": 44620182,
+ "shortestApexExecutionNano": 8673434,
+ "longestApexExecutionNano": 119410919
+ },
+ {
+ "batchNumber": 4830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141427740,
+ "shortestRoundTripNano": 30057271,
+ "longestRoundTripNano": 173950731,
+ "averageApexExecutionNano": 56209744,
+ "shortestApexExecutionNano": 5524073,
+ "longestApexExecutionNano": 117664094
+ },
+ {
+ "batchNumber": 4831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145123255,
+ "shortestRoundTripNano": 58860533,
+ "longestRoundTripNano": 182089003,
+ "averageApexExecutionNano": 60645201,
+ "shortestApexExecutionNano": 10413466,
+ "longestApexExecutionNano": 139027903
+ },
+ {
+ "batchNumber": 4832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152222475,
+ "shortestRoundTripNano": 66177888,
+ "longestRoundTripNano": 195119645,
+ "averageApexExecutionNano": 55770370,
+ "shortestApexExecutionNano": 8922124,
+ "longestApexExecutionNano": 108968580
+ },
+ {
+ "batchNumber": 4833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143342011,
+ "shortestRoundTripNano": 40006942,
+ "longestRoundTripNano": 172744456,
+ "averageApexExecutionNano": 66622598,
+ "shortestApexExecutionNano": 7187759,
+ "longestApexExecutionNano": 129379579
+ },
+ {
+ "batchNumber": 4834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123449081,
+ "shortestRoundTripNano": 27389270,
+ "longestRoundTripNano": 149193479,
+ "averageApexExecutionNano": 52254582,
+ "shortestApexExecutionNano": 6623783,
+ "longestApexExecutionNano": 110969358
+ },
+ {
+ "batchNumber": 4835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140692306,
+ "shortestRoundTripNano": 60282551,
+ "longestRoundTripNano": 171166984,
+ "averageApexExecutionNano": 61700149,
+ "shortestApexExecutionNano": 8285058,
+ "longestApexExecutionNano": 126387089
+ },
+ {
+ "batchNumber": 4836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135846129,
+ "shortestRoundTripNano": 72472430,
+ "longestRoundTripNano": 163864897,
+ "averageApexExecutionNano": 48180029,
+ "shortestApexExecutionNano": 7213591,
+ "longestApexExecutionNano": 127318278
+ },
+ {
+ "batchNumber": 4837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152284736,
+ "shortestRoundTripNano": 67386002,
+ "longestRoundTripNano": 179481202,
+ "averageApexExecutionNano": 58471593,
+ "shortestApexExecutionNano": 9967203,
+ "longestApexExecutionNano": 114809920
+ },
+ {
+ "batchNumber": 4838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 257585563,
+ "shortestRoundTripNano": 65507342,
+ "longestRoundTripNano": 291699316,
+ "averageApexExecutionNano": 117013230,
+ "shortestApexExecutionNano": 9921366,
+ "longestApexExecutionNano": 254041080
+ },
+ {
+ "batchNumber": 4839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124266561,
+ "shortestRoundTripNano": 66075380,
+ "longestRoundTripNano": 153849097,
+ "averageApexExecutionNano": 55048788,
+ "shortestApexExecutionNano": 9172483,
+ "longestApexExecutionNano": 109015271
+ },
+ {
+ "batchNumber": 4840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167511306,
+ "shortestRoundTripNano": 58767226,
+ "longestRoundTripNano": 201843832,
+ "averageApexExecutionNano": 63613573,
+ "shortestApexExecutionNano": 6483430,
+ "longestApexExecutionNano": 145393891
+ },
+ {
+ "batchNumber": 4841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139721332,
+ "shortestRoundTripNano": 35815146,
+ "longestRoundTripNano": 171203245,
+ "averageApexExecutionNano": 59845581,
+ "shortestApexExecutionNano": 7329206,
+ "longestApexExecutionNano": 126327265
+ },
+ {
+ "batchNumber": 4842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158129325,
+ "shortestRoundTripNano": 59645322,
+ "longestRoundTripNano": 185271935,
+ "averageApexExecutionNano": 66838704,
+ "shortestApexExecutionNano": 14142084,
+ "longestApexExecutionNano": 132064024
+ },
+ {
+ "batchNumber": 4843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138435382,
+ "shortestRoundTripNano": 32946109,
+ "longestRoundTripNano": 167594726,
+ "averageApexExecutionNano": 64693480,
+ "shortestApexExecutionNano": 7822764,
+ "longestApexExecutionNano": 123694741
+ },
+ {
+ "batchNumber": 4844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146151694,
+ "shortestRoundTripNano": 55580859,
+ "longestRoundTripNano": 178707792,
+ "averageApexExecutionNano": 58689858,
+ "shortestApexExecutionNano": 12832744,
+ "longestApexExecutionNano": 118200890
+ },
+ {
+ "batchNumber": 4845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171019800,
+ "shortestRoundTripNano": 40342747,
+ "longestRoundTripNano": 211514326,
+ "averageApexExecutionNano": 85249972,
+ "shortestApexExecutionNano": 9095490,
+ "longestApexExecutionNano": 156549634
+ },
+ {
+ "batchNumber": 4846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163371397,
+ "shortestRoundTripNano": 87227975,
+ "longestRoundTripNano": 211428953,
+ "averageApexExecutionNano": 64583873,
+ "shortestApexExecutionNano": 11863211,
+ "longestApexExecutionNano": 131199087
+ },
+ {
+ "batchNumber": 4847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164600092,
+ "shortestRoundTripNano": 53209162,
+ "longestRoundTripNano": 199390304,
+ "averageApexExecutionNano": 72260422,
+ "shortestApexExecutionNano": 13427379,
+ "longestApexExecutionNano": 131566245
+ },
+ {
+ "batchNumber": 4848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133332725,
+ "shortestRoundTripNano": 77653766,
+ "longestRoundTripNano": 157812872,
+ "averageApexExecutionNano": 65214428,
+ "shortestApexExecutionNano": 9904308,
+ "longestApexExecutionNano": 111850860
+ },
+ {
+ "batchNumber": 4849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149360643,
+ "shortestRoundTripNano": 52444716,
+ "longestRoundTripNano": 210461237,
+ "averageApexExecutionNano": 59894527,
+ "shortestApexExecutionNano": 6228054,
+ "longestApexExecutionNano": 128708611
+ },
+ {
+ "batchNumber": 4850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140919947,
+ "shortestRoundTripNano": 67628962,
+ "longestRoundTripNano": 171183196,
+ "averageApexExecutionNano": 54855555,
+ "shortestApexExecutionNano": 8854150,
+ "longestApexExecutionNano": 120292317
+ },
+ {
+ "batchNumber": 4851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146023283,
+ "shortestRoundTripNano": 48918861,
+ "longestRoundTripNano": 184401240,
+ "averageApexExecutionNano": 60900256,
+ "shortestApexExecutionNano": 11548090,
+ "longestApexExecutionNano": 116054043
+ },
+ {
+ "batchNumber": 4852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157838883,
+ "shortestRoundTripNano": 78877424,
+ "longestRoundTripNano": 182238657,
+ "averageApexExecutionNano": 70081322,
+ "shortestApexExecutionNano": 7248642,
+ "longestApexExecutionNano": 137569981
+ },
+ {
+ "batchNumber": 4853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165449693,
+ "shortestRoundTripNano": 45981934,
+ "longestRoundTripNano": 210089234,
+ "averageApexExecutionNano": 62771788,
+ "shortestApexExecutionNano": 8057090,
+ "longestApexExecutionNano": 124053500
+ },
+ {
+ "batchNumber": 4854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156507573,
+ "shortestRoundTripNano": 70498821,
+ "longestRoundTripNano": 183459997,
+ "averageApexExecutionNano": 48885216,
+ "shortestApexExecutionNano": 7573076,
+ "longestApexExecutionNano": 138145104
+ },
+ {
+ "batchNumber": 4855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159116241,
+ "shortestRoundTripNano": 64878524,
+ "longestRoundTripNano": 199242591,
+ "averageApexExecutionNano": 70997433,
+ "shortestApexExecutionNano": 11872011,
+ "longestApexExecutionNano": 136014155
+ },
+ {
+ "batchNumber": 4856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140019692,
+ "shortestRoundTripNano": 69614461,
+ "longestRoundTripNano": 168367016,
+ "averageApexExecutionNano": 64141654,
+ "shortestApexExecutionNano": 7770897,
+ "longestApexExecutionNano": 138324309
+ },
+ {
+ "batchNumber": 4857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141906591,
+ "shortestRoundTripNano": 56026293,
+ "longestRoundTripNano": 172069349,
+ "averageApexExecutionNano": 59140730,
+ "shortestApexExecutionNano": 9472011,
+ "longestApexExecutionNano": 128146023
+ },
+ {
+ "batchNumber": 4858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140108039,
+ "shortestRoundTripNano": 67204096,
+ "longestRoundTripNano": 170285564,
+ "averageApexExecutionNano": 62503045,
+ "shortestApexExecutionNano": 6689026,
+ "longestApexExecutionNano": 123634620
+ },
+ {
+ "batchNumber": 4859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177940897,
+ "shortestRoundTripNano": 57453384,
+ "longestRoundTripNano": 217236897,
+ "averageApexExecutionNano": 78739423,
+ "shortestApexExecutionNano": 7304905,
+ "longestApexExecutionNano": 146375328
+ },
+ {
+ "batchNumber": 4860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146146347,
+ "shortestRoundTripNano": 78761008,
+ "longestRoundTripNano": 174613257,
+ "averageApexExecutionNano": 61609301,
+ "shortestApexExecutionNano": 10854118,
+ "longestApexExecutionNano": 123420366
+ },
+ {
+ "batchNumber": 4861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144951234,
+ "shortestRoundTripNano": 67615331,
+ "longestRoundTripNano": 171510112,
+ "averageApexExecutionNano": 55339515,
+ "shortestApexExecutionNano": 7276761,
+ "longestApexExecutionNano": 118197352
+ },
+ {
+ "batchNumber": 4862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150366632,
+ "shortestRoundTripNano": 76625935,
+ "longestRoundTripNano": 185996964,
+ "averageApexExecutionNano": 57502122,
+ "shortestApexExecutionNano": 6331074,
+ "longestApexExecutionNano": 119281009
+ },
+ {
+ "batchNumber": 4863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173618609,
+ "shortestRoundTripNano": 58609195,
+ "longestRoundTripNano": 204634303,
+ "averageApexExecutionNano": 78542190,
+ "shortestApexExecutionNano": 11126304,
+ "longestApexExecutionNano": 142529855
+ },
+ {
+ "batchNumber": 4864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149390287,
+ "shortestRoundTripNano": 89588158,
+ "longestRoundTripNano": 177378598,
+ "averageApexExecutionNano": 69431074,
+ "shortestApexExecutionNano": 6692140,
+ "longestApexExecutionNano": 136060966
+ },
+ {
+ "batchNumber": 4865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124493079,
+ "shortestRoundTripNano": 68601226,
+ "longestRoundTripNano": 158311187,
+ "averageApexExecutionNano": 43472927,
+ "shortestApexExecutionNano": 5747007,
+ "longestApexExecutionNano": 112212705
+ },
+ {
+ "batchNumber": 4866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139869248,
+ "shortestRoundTripNano": 66507039,
+ "longestRoundTripNano": 176081531,
+ "averageApexExecutionNano": 55553256,
+ "shortestApexExecutionNano": 10653694,
+ "longestApexExecutionNano": 113430541
+ },
+ {
+ "batchNumber": 4867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131490667,
+ "shortestRoundTripNano": 66653777,
+ "longestRoundTripNano": 155863852,
+ "averageApexExecutionNano": 55901002,
+ "shortestApexExecutionNano": 6229409,
+ "longestApexExecutionNano": 114784509
+ },
+ {
+ "batchNumber": 4868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141715613,
+ "shortestRoundTripNano": 43788333,
+ "longestRoundTripNano": 173821302,
+ "averageApexExecutionNano": 60926090,
+ "shortestApexExecutionNano": 9286522,
+ "longestApexExecutionNano": 120899201
+ },
+ {
+ "batchNumber": 4869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131175248,
+ "shortestRoundTripNano": 60870857,
+ "longestRoundTripNano": 160964139,
+ "averageApexExecutionNano": 56641161,
+ "shortestApexExecutionNano": 6528577,
+ "longestApexExecutionNano": 123075757
+ },
+ {
+ "batchNumber": 4870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120203056,
+ "shortestRoundTripNano": 46388155,
+ "longestRoundTripNano": 154015383,
+ "averageApexExecutionNano": 44474537,
+ "shortestApexExecutionNano": 9204333,
+ "longestApexExecutionNano": 107464791
+ },
+ {
+ "batchNumber": 4871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160405002,
+ "shortestRoundTripNano": 52029380,
+ "longestRoundTripNano": 188689494,
+ "averageApexExecutionNano": 69053777,
+ "shortestApexExecutionNano": 11306676,
+ "longestApexExecutionNano": 140666743
+ },
+ {
+ "batchNumber": 4872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134078335,
+ "shortestRoundTripNano": 57287851,
+ "longestRoundTripNano": 174002827,
+ "averageApexExecutionNano": 54898041,
+ "shortestApexExecutionNano": 7657129,
+ "longestApexExecutionNano": 108821698
+ },
+ {
+ "batchNumber": 4873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146031826,
+ "shortestRoundTripNano": 78140303,
+ "longestRoundTripNano": 169326563,
+ "averageApexExecutionNano": 45218414,
+ "shortestApexExecutionNano": 9839333,
+ "longestApexExecutionNano": 102654864
+ },
+ {
+ "batchNumber": 4874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144943955,
+ "shortestRoundTripNano": 64961214,
+ "longestRoundTripNano": 172943806,
+ "averageApexExecutionNano": 66169792,
+ "shortestApexExecutionNano": 16415679,
+ "longestApexExecutionNano": 112490021
+ },
+ {
+ "batchNumber": 4875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132511444,
+ "shortestRoundTripNano": 64858289,
+ "longestRoundTripNano": 161070786,
+ "averageApexExecutionNano": 55169256,
+ "shortestApexExecutionNano": 9554772,
+ "longestApexExecutionNano": 110306706
+ },
+ {
+ "batchNumber": 4876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160518632,
+ "shortestRoundTripNano": 56134737,
+ "longestRoundTripNano": 194913309,
+ "averageApexExecutionNano": 47318281,
+ "shortestApexExecutionNano": 8520981,
+ "longestApexExecutionNano": 128416804
+ },
+ {
+ "batchNumber": 4877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157159756,
+ "shortestRoundTripNano": 68119877,
+ "longestRoundTripNano": 183933104,
+ "averageApexExecutionNano": 72661468,
+ "shortestApexExecutionNano": 10384981,
+ "longestApexExecutionNano": 135899220
+ },
+ {
+ "batchNumber": 4878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134931896,
+ "shortestRoundTripNano": 69717885,
+ "longestRoundTripNano": 165037921,
+ "averageApexExecutionNano": 61751318,
+ "shortestApexExecutionNano": 5315327,
+ "longestApexExecutionNano": 123690185
+ },
+ {
+ "batchNumber": 4879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174372578,
+ "shortestRoundTripNano": 61559729,
+ "longestRoundTripNano": 210116443,
+ "averageApexExecutionNano": 67396139,
+ "shortestApexExecutionNano": 12355519,
+ "longestApexExecutionNano": 141348633
+ },
+ {
+ "batchNumber": 4880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124477392,
+ "shortestRoundTripNano": 64071870,
+ "longestRoundTripNano": 155817228,
+ "averageApexExecutionNano": 54495338,
+ "shortestApexExecutionNano": 6693250,
+ "longestApexExecutionNano": 106924230
+ },
+ {
+ "batchNumber": 4881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145783598,
+ "shortestRoundTripNano": 53014458,
+ "longestRoundTripNano": 178471119,
+ "averageApexExecutionNano": 61450027,
+ "shortestApexExecutionNano": 9081536,
+ "longestApexExecutionNano": 110899804
+ },
+ {
+ "batchNumber": 4882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128045501,
+ "shortestRoundTripNano": 53308450,
+ "longestRoundTripNano": 153537710,
+ "averageApexExecutionNano": 60875385,
+ "shortestApexExecutionNano": 6266112,
+ "longestApexExecutionNano": 105270082
+ },
+ {
+ "batchNumber": 4883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137820832,
+ "shortestRoundTripNano": 53697973,
+ "longestRoundTripNano": 165333395,
+ "averageApexExecutionNano": 50559918,
+ "shortestApexExecutionNano": 9038046,
+ "longestApexExecutionNano": 119064639
+ },
+ {
+ "batchNumber": 4884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144802020,
+ "shortestRoundTripNano": 55869363,
+ "longestRoundTripNano": 177777387,
+ "averageApexExecutionNano": 64395657,
+ "shortestApexExecutionNano": 6878856,
+ "longestApexExecutionNano": 119725505
+ },
+ {
+ "batchNumber": 4885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140658722,
+ "shortestRoundTripNano": 58482936,
+ "longestRoundTripNano": 173940987,
+ "averageApexExecutionNano": 47356423,
+ "shortestApexExecutionNano": 7169816,
+ "longestApexExecutionNano": 127212369
+ },
+ {
+ "batchNumber": 4886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119839350,
+ "shortestRoundTripNano": 59306090,
+ "longestRoundTripNano": 146190801,
+ "averageApexExecutionNano": 52603432,
+ "shortestApexExecutionNano": 7302367,
+ "longestApexExecutionNano": 105215957
+ },
+ {
+ "batchNumber": 4887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131067355,
+ "shortestRoundTripNano": 53888188,
+ "longestRoundTripNano": 163998377,
+ "averageApexExecutionNano": 46068373,
+ "shortestApexExecutionNano": 6017164,
+ "longestApexExecutionNano": 123723645
+ },
+ {
+ "batchNumber": 4888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138759790,
+ "shortestRoundTripNano": 75850090,
+ "longestRoundTripNano": 158937070,
+ "averageApexExecutionNano": 67612702,
+ "shortestApexExecutionNano": 16040079,
+ "longestApexExecutionNano": 115150720
+ },
+ {
+ "batchNumber": 4889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156198939,
+ "shortestRoundTripNano": 23715354,
+ "longestRoundTripNano": 193394940,
+ "averageApexExecutionNano": 64059383,
+ "shortestApexExecutionNano": 4362037,
+ "longestApexExecutionNano": 128719214
+ },
+ {
+ "batchNumber": 4890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130299927,
+ "shortestRoundTripNano": 35332759,
+ "longestRoundTripNano": 170076487,
+ "averageApexExecutionNano": 54043105,
+ "shortestApexExecutionNano": 8994309,
+ "longestApexExecutionNano": 109667759
+ },
+ {
+ "batchNumber": 4891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149792707,
+ "shortestRoundTripNano": 58490878,
+ "longestRoundTripNano": 179930084,
+ "averageApexExecutionNano": 72528905,
+ "shortestApexExecutionNano": 10214670,
+ "longestApexExecutionNano": 132558938
+ },
+ {
+ "batchNumber": 4892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141911670,
+ "shortestRoundTripNano": 60567106,
+ "longestRoundTripNano": 170899928,
+ "averageApexExecutionNano": 50387610,
+ "shortestApexExecutionNano": 11767208,
+ "longestApexExecutionNano": 89736453
+ },
+ {
+ "batchNumber": 4893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136460772,
+ "shortestRoundTripNano": 67405851,
+ "longestRoundTripNano": 164494283,
+ "averageApexExecutionNano": 58027078,
+ "shortestApexExecutionNano": 8323710,
+ "longestApexExecutionNano": 107378228
+ },
+ {
+ "batchNumber": 4894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123722349,
+ "shortestRoundTripNano": 42030031,
+ "longestRoundTripNano": 149941599,
+ "averageApexExecutionNano": 52318078,
+ "shortestApexExecutionNano": 5452223,
+ "longestApexExecutionNano": 104046942
+ },
+ {
+ "batchNumber": 4895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128096631,
+ "shortestRoundTripNano": 53416845,
+ "longestRoundTripNano": 156708464,
+ "averageApexExecutionNano": 44494070,
+ "shortestApexExecutionNano": 7149095,
+ "longestApexExecutionNano": 116818394
+ },
+ {
+ "batchNumber": 4896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36574",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137689090,
+ "shortestRoundTripNano": 65766850,
+ "longestRoundTripNano": 167570090,
+ "averageApexExecutionNano": 61506310,
+ "shortestApexExecutionNano": 10896989,
+ "longestApexExecutionNano": 122139166
+ },
+ {
+ "batchNumber": 4897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145655670,
+ "shortestRoundTripNano": 66633027,
+ "longestRoundTripNano": 177061651,
+ "averageApexExecutionNano": 63779239,
+ "shortestApexExecutionNano": 6902237,
+ "longestApexExecutionNano": 127204565
+ },
+ {
+ "batchNumber": 4898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146941768,
+ "shortestRoundTripNano": 80958769,
+ "longestRoundTripNano": 175974867,
+ "averageApexExecutionNano": 66865361,
+ "shortestApexExecutionNano": 17591446,
+ "longestApexExecutionNano": 129420439
+ },
+ {
+ "batchNumber": 4899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141221515,
+ "shortestRoundTripNano": 74672646,
+ "longestRoundTripNano": 165555947,
+ "averageApexExecutionNano": 56271970,
+ "shortestApexExecutionNano": 11758314,
+ "longestApexExecutionNano": 120864093
+ },
+ {
+ "batchNumber": 4900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136488015,
+ "shortestRoundTripNano": 53895604,
+ "longestRoundTripNano": 175497977,
+ "averageApexExecutionNano": 56192385,
+ "shortestApexExecutionNano": 7414025,
+ "longestApexExecutionNano": 102162625
+ },
+ {
+ "batchNumber": 4901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162243977,
+ "shortestRoundTripNano": 72626098,
+ "longestRoundTripNano": 191725048,
+ "averageApexExecutionNano": 78591365,
+ "shortestApexExecutionNano": 16860214,
+ "longestApexExecutionNano": 150720864
+ },
+ {
+ "batchNumber": 4902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150198797,
+ "shortestRoundTripNano": 71662414,
+ "longestRoundTripNano": 176947859,
+ "averageApexExecutionNano": 52159060,
+ "shortestApexExecutionNano": 6916064,
+ "longestApexExecutionNano": 123725862
+ },
+ {
+ "batchNumber": 4903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128048472,
+ "shortestRoundTripNano": 62051289,
+ "longestRoundTripNano": 153927402,
+ "averageApexExecutionNano": 49448541,
+ "shortestApexExecutionNano": 8004762,
+ "longestApexExecutionNano": 105744088
+ },
+ {
+ "batchNumber": 4904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148424911,
+ "shortestRoundTripNano": 71745649,
+ "longestRoundTripNano": 175408345,
+ "averageApexExecutionNano": 59051354,
+ "shortestApexExecutionNano": 5405875,
+ "longestApexExecutionNano": 128178291
+ },
+ {
+ "batchNumber": 4905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155906353,
+ "shortestRoundTripNano": 73407600,
+ "longestRoundTripNano": 189071510,
+ "averageApexExecutionNano": 48866823,
+ "shortestApexExecutionNano": 9946763,
+ "longestApexExecutionNano": 143072215
+ },
+ {
+ "batchNumber": 4906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154517002,
+ "shortestRoundTripNano": 44847692,
+ "longestRoundTripNano": 190243580,
+ "averageApexExecutionNano": 68717914,
+ "shortestApexExecutionNano": 13263749,
+ "longestApexExecutionNano": 148267069
+ },
+ {
+ "batchNumber": 4907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135039491,
+ "shortestRoundTripNano": 52971053,
+ "longestRoundTripNano": 166551232,
+ "averageApexExecutionNano": 61622183,
+ "shortestApexExecutionNano": 9174311,
+ "longestApexExecutionNano": 126599146
+ },
+ {
+ "batchNumber": 4908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144092690,
+ "shortestRoundTripNano": 67313937,
+ "longestRoundTripNano": 170771123,
+ "averageApexExecutionNano": 52234618,
+ "shortestApexExecutionNano": 7432177,
+ "longestApexExecutionNano": 114834921
+ },
+ {
+ "batchNumber": 4909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144032026,
+ "shortestRoundTripNano": 74701774,
+ "longestRoundTripNano": 172124151,
+ "averageApexExecutionNano": 59717165,
+ "shortestApexExecutionNano": 5968332,
+ "longestApexExecutionNano": 120414540
+ },
+ {
+ "batchNumber": 4910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169919652,
+ "shortestRoundTripNano": 89732674,
+ "longestRoundTripNano": 193219680,
+ "averageApexExecutionNano": 67073534,
+ "shortestApexExecutionNano": 8808577,
+ "longestApexExecutionNano": 139002463
+ },
+ {
+ "batchNumber": 4911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36582",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158814530,
+ "shortestRoundTripNano": 55366191,
+ "longestRoundTripNano": 199106684,
+ "averageApexExecutionNano": 69424410,
+ "shortestApexExecutionNano": 9128168,
+ "longestApexExecutionNano": 139628288
+ },
+ {
+ "batchNumber": 4912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163602058,
+ "shortestRoundTripNano": 91437867,
+ "longestRoundTripNano": 195597440,
+ "averageApexExecutionNano": 63502880,
+ "shortestApexExecutionNano": 7442738,
+ "longestApexExecutionNano": 148719243
+ },
+ {
+ "batchNumber": 4913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158455365,
+ "shortestRoundTripNano": 65560592,
+ "longestRoundTripNano": 187652321,
+ "averageApexExecutionNano": 59836641,
+ "shortestApexExecutionNano": 6269960,
+ "longestApexExecutionNano": 150065479
+ },
+ {
+ "batchNumber": 4914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135537620,
+ "shortestRoundTripNano": 49684105,
+ "longestRoundTripNano": 165642805,
+ "averageApexExecutionNano": 64204223,
+ "shortestApexExecutionNano": 9013090,
+ "longestApexExecutionNano": 125288846
+ },
+ {
+ "batchNumber": 4915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133889101,
+ "shortestRoundTripNano": 61878236,
+ "longestRoundTripNano": 166465416,
+ "averageApexExecutionNano": 53878239,
+ "shortestApexExecutionNano": 6741536,
+ "longestApexExecutionNano": 117271613
+ },
+ {
+ "batchNumber": 4916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166997788,
+ "shortestRoundTripNano": 75018841,
+ "longestRoundTripNano": 199639271,
+ "averageApexExecutionNano": 62882596,
+ "shortestApexExecutionNano": 10890995,
+ "longestApexExecutionNano": 141888258
+ },
+ {
+ "batchNumber": 4917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148151013,
+ "shortestRoundTripNano": 96872892,
+ "longestRoundTripNano": 170232486,
+ "averageApexExecutionNano": 64717312,
+ "shortestApexExecutionNano": 7303679,
+ "longestApexExecutionNano": 121707190
+ },
+ {
+ "batchNumber": 4918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149551026,
+ "shortestRoundTripNano": 65225542,
+ "longestRoundTripNano": 180491554,
+ "averageApexExecutionNano": 62695217,
+ "shortestApexExecutionNano": 5936529,
+ "longestApexExecutionNano": 133190170
+ },
+ {
+ "batchNumber": 4919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136906998,
+ "shortestRoundTripNano": 52324903,
+ "longestRoundTripNano": 164518713,
+ "averageApexExecutionNano": 55553868,
+ "shortestApexExecutionNano": 8186959,
+ "longestApexExecutionNano": 110905235
+ },
+ {
+ "batchNumber": 4920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156625237,
+ "shortestRoundTripNano": 83416258,
+ "longestRoundTripNano": 183237520,
+ "averageApexExecutionNano": 81835676,
+ "shortestApexExecutionNano": 5429272,
+ "longestApexExecutionNano": 141038052
+ },
+ {
+ "batchNumber": 4921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137575824,
+ "shortestRoundTripNano": 48026636,
+ "longestRoundTripNano": 177281759,
+ "averageApexExecutionNano": 55948577,
+ "shortestApexExecutionNano": 6233057,
+ "longestApexExecutionNano": 119096055
+ },
+ {
+ "batchNumber": 4922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131179745,
+ "shortestRoundTripNano": 62682531,
+ "longestRoundTripNano": 159109239,
+ "averageApexExecutionNano": 64486771,
+ "shortestApexExecutionNano": 7142409,
+ "longestApexExecutionNano": 114000869
+ },
+ {
+ "batchNumber": 4923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 203215179,
+ "shortestRoundTripNano": 53470791,
+ "longestRoundTripNano": 243537903,
+ "averageApexExecutionNano": 100811135,
+ "shortestApexExecutionNano": 11072111,
+ "longestApexExecutionNano": 193514490
+ },
+ {
+ "batchNumber": 4924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139013034,
+ "shortestRoundTripNano": 50252241,
+ "longestRoundTripNano": 166742865,
+ "averageApexExecutionNano": 56732442,
+ "shortestApexExecutionNano": 7999182,
+ "longestApexExecutionNano": 121167082
+ },
+ {
+ "batchNumber": 4925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168566302,
+ "shortestRoundTripNano": 79172850,
+ "longestRoundTripNano": 198963959,
+ "averageApexExecutionNano": 70924081,
+ "shortestApexExecutionNano": 8215887,
+ "longestApexExecutionNano": 150144309
+ },
+ {
+ "batchNumber": 4926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127918057,
+ "shortestRoundTripNano": 53864416,
+ "longestRoundTripNano": 155505161,
+ "averageApexExecutionNano": 53973664,
+ "shortestApexExecutionNano": 11834050,
+ "longestApexExecutionNano": 93349664
+ },
+ {
+ "batchNumber": 4927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147481276,
+ "shortestRoundTripNano": 53683209,
+ "longestRoundTripNano": 179916601,
+ "averageApexExecutionNano": 50063857,
+ "shortestApexExecutionNano": 5720788,
+ "longestApexExecutionNano": 108528635
+ },
+ {
+ "batchNumber": 4928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153301431,
+ "shortestRoundTripNano": 72017159,
+ "longestRoundTripNano": 180299302,
+ "averageApexExecutionNano": 66787731,
+ "shortestApexExecutionNano": 7150777,
+ "longestApexExecutionNano": 127531350
+ },
+ {
+ "batchNumber": 4929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148587066,
+ "shortestRoundTripNano": 42124430,
+ "longestRoundTripNano": 186530025,
+ "averageApexExecutionNano": 65390706,
+ "shortestApexExecutionNano": 12214236,
+ "longestApexExecutionNano": 138808139
+ },
+ {
+ "batchNumber": 4930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149515428,
+ "shortestRoundTripNano": 69856057,
+ "longestRoundTripNano": 178816739,
+ "averageApexExecutionNano": 56952703,
+ "shortestApexExecutionNano": 6365653,
+ "longestApexExecutionNano": 122040623
+ },
+ {
+ "batchNumber": 4931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140639272,
+ "shortestRoundTripNano": 35856450,
+ "longestRoundTripNano": 192013430,
+ "averageApexExecutionNano": 56460843,
+ "shortestApexExecutionNano": 10679105,
+ "longestApexExecutionNano": 125530904
+ },
+ {
+ "batchNumber": 4932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144933791,
+ "shortestRoundTripNano": 78217053,
+ "longestRoundTripNano": 175472415,
+ "averageApexExecutionNano": 56021914,
+ "shortestApexExecutionNano": 10012141,
+ "longestApexExecutionNano": 132956444
+ },
+ {
+ "batchNumber": 4933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160449067,
+ "shortestRoundTripNano": 46934106,
+ "longestRoundTripNano": 196747105,
+ "averageApexExecutionNano": 54478007,
+ "shortestApexExecutionNano": 7970396,
+ "longestApexExecutionNano": 112189802
+ },
+ {
+ "batchNumber": 4934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36598",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186331991,
+ "shortestRoundTripNano": 95450453,
+ "longestRoundTripNano": 214660851,
+ "averageApexExecutionNano": 94007423,
+ "shortestApexExecutionNano": 12739886,
+ "longestApexExecutionNano": 163315221
+ },
+ {
+ "batchNumber": 4935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36598",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142607672,
+ "shortestRoundTripNano": 73674270,
+ "longestRoundTripNano": 172026615,
+ "averageApexExecutionNano": 64875864,
+ "shortestApexExecutionNano": 9154173,
+ "longestApexExecutionNano": 111399177
+ },
+ {
+ "batchNumber": 4936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36598",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150650370,
+ "shortestRoundTripNano": 46129087,
+ "longestRoundTripNano": 198882520,
+ "averageApexExecutionNano": 52659215,
+ "shortestApexExecutionNano": 7292729,
+ "longestApexExecutionNano": 120946315
+ },
+ {
+ "batchNumber": 4937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36598",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148183124,
+ "shortestRoundTripNano": 67845366,
+ "longestRoundTripNano": 176875665,
+ "averageApexExecutionNano": 64952632,
+ "shortestApexExecutionNano": 12533877,
+ "longestApexExecutionNano": 122507236
+ },
+ {
+ "batchNumber": 4938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36598",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147449871,
+ "shortestRoundTripNano": 56824109,
+ "longestRoundTripNano": 178457694,
+ "averageApexExecutionNano": 71189787,
+ "shortestApexExecutionNano": 11788072,
+ "longestApexExecutionNano": 136019807
+ },
+ {
+ "batchNumber": 4939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136735397,
+ "shortestRoundTripNano": 62046291,
+ "longestRoundTripNano": 176557157,
+ "averageApexExecutionNano": 50173692,
+ "shortestApexExecutionNano": 8246910,
+ "longestApexExecutionNano": 117532859
+ },
+ {
+ "batchNumber": 4940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160903796,
+ "shortestRoundTripNano": 94262172,
+ "longestRoundTripNano": 193011988,
+ "averageApexExecutionNano": 75920700,
+ "shortestApexExecutionNano": 6682056,
+ "longestApexExecutionNano": 126617221
+ },
+ {
+ "batchNumber": 4941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189241786,
+ "shortestRoundTripNano": 80783890,
+ "longestRoundTripNano": 221506843,
+ "averageApexExecutionNano": 84694391,
+ "shortestApexExecutionNano": 10216496,
+ "longestApexExecutionNano": 163140965
+ },
+ {
+ "batchNumber": 4942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166985045,
+ "shortestRoundTripNano": 74998926,
+ "longestRoundTripNano": 192418845,
+ "averageApexExecutionNano": 74979617,
+ "shortestApexExecutionNano": 10973376,
+ "longestApexExecutionNano": 145487493
+ },
+ {
+ "batchNumber": 4943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153401221,
+ "shortestRoundTripNano": 63415348,
+ "longestRoundTripNano": 191883130,
+ "averageApexExecutionNano": 56978635,
+ "shortestApexExecutionNano": 6489615,
+ "longestApexExecutionNano": 146586253
+ },
+ {
+ "batchNumber": 4944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156157033,
+ "shortestRoundTripNano": 75409827,
+ "longestRoundTripNano": 191241558,
+ "averageApexExecutionNano": 58623105,
+ "shortestApexExecutionNano": 10804121,
+ "longestApexExecutionNano": 123740825
+ },
+ {
+ "batchNumber": 4945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149042228,
+ "shortestRoundTripNano": 79158999,
+ "longestRoundTripNano": 177391864,
+ "averageApexExecutionNano": 62197528,
+ "shortestApexExecutionNano": 13903886,
+ "longestApexExecutionNano": 115331169
+ },
+ {
+ "batchNumber": 4946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148133731,
+ "shortestRoundTripNano": 74892446,
+ "longestRoundTripNano": 177007861,
+ "averageApexExecutionNano": 46876333,
+ "shortestApexExecutionNano": 8184840,
+ "longestApexExecutionNano": 108039053
+ },
+ {
+ "batchNumber": 4947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165341830,
+ "shortestRoundTripNano": 87796411,
+ "longestRoundTripNano": 191063272,
+ "averageApexExecutionNano": 67904861,
+ "shortestApexExecutionNano": 9210057,
+ "longestApexExecutionNano": 120582625
+ },
+ {
+ "batchNumber": 4948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145036345,
+ "shortestRoundTripNano": 67756642,
+ "longestRoundTripNano": 171928838,
+ "averageApexExecutionNano": 57339597,
+ "shortestApexExecutionNano": 8519968,
+ "longestApexExecutionNano": 126993119
+ },
+ {
+ "batchNumber": 4949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158482601,
+ "shortestRoundTripNano": 92095463,
+ "longestRoundTripNano": 195592725,
+ "averageApexExecutionNano": 71317466,
+ "shortestApexExecutionNano": 7872605,
+ "longestApexExecutionNano": 139052058
+ },
+ {
+ "batchNumber": 4950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171104024,
+ "shortestRoundTripNano": 50307889,
+ "longestRoundTripNano": 207388477,
+ "averageApexExecutionNano": 79001447,
+ "shortestApexExecutionNano": 5504472,
+ "longestApexExecutionNano": 166005393
+ },
+ {
+ "batchNumber": 4951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160122980,
+ "shortestRoundTripNano": 72030145,
+ "longestRoundTripNano": 185946773,
+ "averageApexExecutionNano": 52889976,
+ "shortestApexExecutionNano": 9414760,
+ "longestApexExecutionNano": 138577201
+ },
+ {
+ "batchNumber": 4952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152320680,
+ "shortestRoundTripNano": 30985180,
+ "longestRoundTripNano": 185383150,
+ "averageApexExecutionNano": 53446401,
+ "shortestApexExecutionNano": 5752644,
+ "longestApexExecutionNano": 123830732
+ },
+ {
+ "batchNumber": 4953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162703766,
+ "shortestRoundTripNano": 78238199,
+ "longestRoundTripNano": 197983965,
+ "averageApexExecutionNano": 68003887,
+ "shortestApexExecutionNano": 10793902,
+ "longestApexExecutionNano": 135672542
+ },
+ {
+ "batchNumber": 4954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151358917,
+ "shortestRoundTripNano": 30857652,
+ "longestRoundTripNano": 187193991,
+ "averageApexExecutionNano": 63182584,
+ "shortestApexExecutionNano": 8480686,
+ "longestApexExecutionNano": 126252846
+ },
+ {
+ "batchNumber": 4955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166685415,
+ "shortestRoundTripNano": 60239129,
+ "longestRoundTripNano": 203280260,
+ "averageApexExecutionNano": 78199285,
+ "shortestApexExecutionNano": 7274718,
+ "longestApexExecutionNano": 156216353
+ },
+ {
+ "batchNumber": 4956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150254398,
+ "shortestRoundTripNano": 76611638,
+ "longestRoundTripNano": 174228279,
+ "averageApexExecutionNano": 54979954,
+ "shortestApexExecutionNano": 11093891,
+ "longestApexExecutionNano": 120895782
+ },
+ {
+ "batchNumber": 4957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140198937,
+ "shortestRoundTripNano": 72113448,
+ "longestRoundTripNano": 172009694,
+ "averageApexExecutionNano": 60440551,
+ "shortestApexExecutionNano": 7213215,
+ "longestApexExecutionNano": 116137119
+ },
+ {
+ "batchNumber": 4958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177613510,
+ "shortestRoundTripNano": 75523626,
+ "longestRoundTripNano": 210249128,
+ "averageApexExecutionNano": 65075644,
+ "shortestApexExecutionNano": 9867210,
+ "longestApexExecutionNano": 108927444
+ },
+ {
+ "batchNumber": 4959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176719603,
+ "shortestRoundTripNano": 31909337,
+ "longestRoundTripNano": 226107167,
+ "averageApexExecutionNano": 64450839,
+ "shortestApexExecutionNano": 7949096,
+ "longestApexExecutionNano": 143455746
+ },
+ {
+ "batchNumber": 4960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147550751,
+ "shortestRoundTripNano": 73777874,
+ "longestRoundTripNano": 174305828,
+ "averageApexExecutionNano": 64153038,
+ "shortestApexExecutionNano": 7941721,
+ "longestApexExecutionNano": 129434037
+ },
+ {
+ "batchNumber": 4961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145304565,
+ "shortestRoundTripNano": 51708458,
+ "longestRoundTripNano": 173692360,
+ "averageApexExecutionNano": 53610468,
+ "shortestApexExecutionNano": 7352957,
+ "longestApexExecutionNano": 118000847
+ },
+ {
+ "batchNumber": 4962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125382795,
+ "shortestRoundTripNano": 32877000,
+ "longestRoundTripNano": 157117290,
+ "averageApexExecutionNano": 51921885,
+ "shortestApexExecutionNano": 9246410,
+ "longestApexExecutionNano": 102884209
+ },
+ {
+ "batchNumber": 4963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145923790,
+ "shortestRoundTripNano": 45861129,
+ "longestRoundTripNano": 176105166,
+ "averageApexExecutionNano": 54856202,
+ "shortestApexExecutionNano": 5944233,
+ "longestApexExecutionNano": 131480525
+ },
+ {
+ "batchNumber": 4964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148448016,
+ "shortestRoundTripNano": 55378311,
+ "longestRoundTripNano": 176838258,
+ "averageApexExecutionNano": 63817923,
+ "shortestApexExecutionNano": 6053260,
+ "longestApexExecutionNano": 134356409
+ },
+ {
+ "batchNumber": 4965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146461043,
+ "shortestRoundTripNano": 63327775,
+ "longestRoundTripNano": 171888870,
+ "averageApexExecutionNano": 61687036,
+ "shortestApexExecutionNano": 9533411,
+ "longestApexExecutionNano": 122263023
+ },
+ {
+ "batchNumber": 4966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145619130,
+ "shortestRoundTripNano": 68818871,
+ "longestRoundTripNano": 170237341,
+ "averageApexExecutionNano": 59126614,
+ "shortestApexExecutionNano": 9807125,
+ "longestApexExecutionNano": 128986611
+ },
+ {
+ "batchNumber": 4967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165158896,
+ "shortestRoundTripNano": 62018045,
+ "longestRoundTripNano": 197121040,
+ "averageApexExecutionNano": 51980717,
+ "shortestApexExecutionNano": 8568511,
+ "longestApexExecutionNano": 132342879
+ },
+ {
+ "batchNumber": 4968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147430155,
+ "shortestRoundTripNano": 65434022,
+ "longestRoundTripNano": 174736389,
+ "averageApexExecutionNano": 59244685,
+ "shortestApexExecutionNano": 4945132,
+ "longestApexExecutionNano": 126502958
+ },
+ {
+ "batchNumber": 4969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137239802,
+ "shortestRoundTripNano": 68147542,
+ "longestRoundTripNano": 171098176,
+ "averageApexExecutionNano": 62249009,
+ "shortestApexExecutionNano": 6817239,
+ "longestApexExecutionNano": 114463494
+ },
+ {
+ "batchNumber": 4970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138977604,
+ "shortestRoundTripNano": 48023957,
+ "longestRoundTripNano": 175511266,
+ "averageApexExecutionNano": 65212873,
+ "shortestApexExecutionNano": 8156206,
+ "longestApexExecutionNano": 125167327
+ },
+ {
+ "batchNumber": 4971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140996330,
+ "shortestRoundTripNano": 74094401,
+ "longestRoundTripNano": 171525961,
+ "averageApexExecutionNano": 68521559,
+ "shortestApexExecutionNano": 11405511,
+ "longestApexExecutionNano": 114268713
+ },
+ {
+ "batchNumber": 4972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143291785,
+ "shortestRoundTripNano": 54602251,
+ "longestRoundTripNano": 174175781,
+ "averageApexExecutionNano": 63654634,
+ "shortestApexExecutionNano": 7366375,
+ "longestApexExecutionNano": 134654139
+ },
+ {
+ "batchNumber": 4973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147912354,
+ "shortestRoundTripNano": 38439240,
+ "longestRoundTripNano": 197107710,
+ "averageApexExecutionNano": 69363022,
+ "shortestApexExecutionNano": 9146833,
+ "longestApexExecutionNano": 135546248
+ },
+ {
+ "batchNumber": 4974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151551946,
+ "shortestRoundTripNano": 80641608,
+ "longestRoundTripNano": 184161063,
+ "averageApexExecutionNano": 80443326,
+ "shortestApexExecutionNano": 9085199,
+ "longestApexExecutionNano": 130390448
+ },
+ {
+ "batchNumber": 4975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148559436,
+ "shortestRoundTripNano": 64413412,
+ "longestRoundTripNano": 176575531,
+ "averageApexExecutionNano": 48910380,
+ "shortestApexExecutionNano": 6395183,
+ "longestApexExecutionNano": 110682267
+ },
+ {
+ "batchNumber": 4976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134982741,
+ "shortestRoundTripNano": 65734412,
+ "longestRoundTripNano": 158215735,
+ "averageApexExecutionNano": 62025704,
+ "shortestApexExecutionNano": 7966571,
+ "longestApexExecutionNano": 111875520
+ },
+ {
+ "batchNumber": 4977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136210780,
+ "shortestRoundTripNano": 61033924,
+ "longestRoundTripNano": 163439311,
+ "averageApexExecutionNano": 48110318,
+ "shortestApexExecutionNano": 7250750,
+ "longestApexExecutionNano": 108934496
+ },
+ {
+ "batchNumber": 4978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137616840,
+ "shortestRoundTripNano": 74351861,
+ "longestRoundTripNano": 171906069,
+ "averageApexExecutionNano": 60724953,
+ "shortestApexExecutionNano": 6797119,
+ "longestApexExecutionNano": 115808788
+ },
+ {
+ "batchNumber": 4979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133111996,
+ "shortestRoundTripNano": 48764594,
+ "longestRoundTripNano": 161428912,
+ "averageApexExecutionNano": 55145114,
+ "shortestApexExecutionNano": 10431025,
+ "longestApexExecutionNano": 117907722
+ },
+ {
+ "batchNumber": 4980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158390142,
+ "shortestRoundTripNano": 55115666,
+ "longestRoundTripNano": 187399234,
+ "averageApexExecutionNano": 65074442,
+ "shortestApexExecutionNano": 10777437,
+ "longestApexExecutionNano": 144956579
+ },
+ {
+ "batchNumber": 4981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136317748,
+ "shortestRoundTripNano": 88616099,
+ "longestRoundTripNano": 157369193,
+ "averageApexExecutionNano": 58909793,
+ "shortestApexExecutionNano": 17793643,
+ "longestApexExecutionNano": 108549524
+ },
+ {
+ "batchNumber": 4982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151518783,
+ "shortestRoundTripNano": 38654690,
+ "longestRoundTripNano": 182237776,
+ "averageApexExecutionNano": 55226280,
+ "shortestApexExecutionNano": 6588879,
+ "longestApexExecutionNano": 113532202
+ },
+ {
+ "batchNumber": 4983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140295563,
+ "shortestRoundTripNano": 50134966,
+ "longestRoundTripNano": 168975620,
+ "averageApexExecutionNano": 70485671,
+ "shortestApexExecutionNano": 14876161,
+ "longestApexExecutionNano": 128090465
+ },
+ {
+ "batchNumber": 4984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151526512,
+ "shortestRoundTripNano": 70559702,
+ "longestRoundTripNano": 176417354,
+ "averageApexExecutionNano": 61730344,
+ "shortestApexExecutionNano": 13122426,
+ "longestApexExecutionNano": 125249922
+ },
+ {
+ "batchNumber": 4985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129062736,
+ "shortestRoundTripNano": 76837941,
+ "longestRoundTripNano": 154752498,
+ "averageApexExecutionNano": 59915768,
+ "shortestApexExecutionNano": 13109712,
+ "longestApexExecutionNano": 101925070
+ },
+ {
+ "batchNumber": 4986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134824895,
+ "shortestRoundTripNano": 55560506,
+ "longestRoundTripNano": 163217038,
+ "averageApexExecutionNano": 50978632,
+ "shortestApexExecutionNano": 6214712,
+ "longestApexExecutionNano": 103877198
+ },
+ {
+ "batchNumber": 4987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150108704,
+ "shortestRoundTripNano": 69047669,
+ "longestRoundTripNano": 179372623,
+ "averageApexExecutionNano": 68288514,
+ "shortestApexExecutionNano": 8657889,
+ "longestApexExecutionNano": 122457988
+ },
+ {
+ "batchNumber": 4988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 209663980,
+ "shortestRoundTripNano": 65080197,
+ "longestRoundTripNano": 245513590,
+ "averageApexExecutionNano": 99079796,
+ "shortestApexExecutionNano": 9745068,
+ "longestApexExecutionNano": 177549188
+ },
+ {
+ "batchNumber": 4989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158384835,
+ "shortestRoundTripNano": 65867543,
+ "longestRoundTripNano": 191436914,
+ "averageApexExecutionNano": 59547205,
+ "shortestApexExecutionNano": 7015694,
+ "longestApexExecutionNano": 141392102
+ },
+ {
+ "batchNumber": 4990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143435709,
+ "shortestRoundTripNano": 49840100,
+ "longestRoundTripNano": 169471485,
+ "averageApexExecutionNano": 49334318,
+ "shortestApexExecutionNano": 7310661,
+ "longestApexExecutionNano": 120196005
+ },
+ {
+ "batchNumber": 4991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132381214,
+ "shortestRoundTripNano": 64912435,
+ "longestRoundTripNano": 163853555,
+ "averageApexExecutionNano": 57734235,
+ "shortestApexExecutionNano": 8468360,
+ "longestApexExecutionNano": 122943535
+ },
+ {
+ "batchNumber": 4992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173467724,
+ "shortestRoundTripNano": 74771899,
+ "longestRoundTripNano": 210279195,
+ "averageApexExecutionNano": 62736203,
+ "shortestApexExecutionNano": 14381425,
+ "longestApexExecutionNano": 166096717
+ },
+ {
+ "batchNumber": 4993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139110015,
+ "shortestRoundTripNano": 39948283,
+ "longestRoundTripNano": 169017300,
+ "averageApexExecutionNano": 64696525,
+ "shortestApexExecutionNano": 9580130,
+ "longestApexExecutionNano": 122421313
+ },
+ {
+ "batchNumber": 4994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118232185,
+ "shortestRoundTripNano": 56086390,
+ "longestRoundTripNano": 148150734,
+ "averageApexExecutionNano": 49809096,
+ "shortestApexExecutionNano": 6623313,
+ "longestApexExecutionNano": 104781105
+ },
+ {
+ "batchNumber": 4995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144742567,
+ "shortestRoundTripNano": 78175813,
+ "longestRoundTripNano": 176361849,
+ "averageApexExecutionNano": 60075360,
+ "shortestApexExecutionNano": 5632885,
+ "longestApexExecutionNano": 112502505
+ },
+ {
+ "batchNumber": 4996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150663274,
+ "shortestRoundTripNano": 71122242,
+ "longestRoundTripNano": 179568331,
+ "averageApexExecutionNano": 59048441,
+ "shortestApexExecutionNano": 10034393,
+ "longestApexExecutionNano": 125576844
+ },
+ {
+ "batchNumber": 4997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148598118,
+ "shortestRoundTripNano": 84164883,
+ "longestRoundTripNano": 171739329,
+ "averageApexExecutionNano": 63569540,
+ "shortestApexExecutionNano": 8842331,
+ "longestApexExecutionNano": 129357470
+ },
+ {
+ "batchNumber": 4998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139438639,
+ "shortestRoundTripNano": 47990987,
+ "longestRoundTripNano": 173491981,
+ "averageApexExecutionNano": 46080053,
+ "shortestApexExecutionNano": 5857552,
+ "longestApexExecutionNano": 115857198
+ },
+ {
+ "batchNumber": 4999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151539479,
+ "shortestRoundTripNano": 73535089,
+ "longestRoundTripNano": 172440094,
+ "averageApexExecutionNano": 68106599,
+ "shortestApexExecutionNano": 6037494,
+ "longestApexExecutionNano": 125560320
+ },
+ {
+ "batchNumber": 5000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140500705,
+ "shortestRoundTripNano": 73803769,
+ "longestRoundTripNano": 176300337,
+ "averageApexExecutionNano": 57435262,
+ "shortestApexExecutionNano": 8690863,
+ "longestApexExecutionNano": 130171306
+ },
+ {
+ "batchNumber": 5001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36620",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146016791,
+ "shortestRoundTripNano": 30081667,
+ "longestRoundTripNano": 181682406,
+ "averageApexExecutionNano": 70532884,
+ "shortestApexExecutionNano": 5022992,
+ "longestApexExecutionNano": 136838609
+ },
+ {
+ "batchNumber": 5002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159244552,
+ "shortestRoundTripNano": 77928706,
+ "longestRoundTripNano": 199978322,
+ "averageApexExecutionNano": 51494717,
+ "shortestApexExecutionNano": 8429435,
+ "longestApexExecutionNano": 118055155
+ },
+ {
+ "batchNumber": 5003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140109474,
+ "shortestRoundTripNano": 41626066,
+ "longestRoundTripNano": 176994498,
+ "averageApexExecutionNano": 57013691,
+ "shortestApexExecutionNano": 7520608,
+ "longestApexExecutionNano": 131937583
+ },
+ {
+ "batchNumber": 5004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140716073,
+ "shortestRoundTripNano": 67273030,
+ "longestRoundTripNano": 180175777,
+ "averageApexExecutionNano": 45110986,
+ "shortestApexExecutionNano": 6846475,
+ "longestApexExecutionNano": 107219394
+ },
+ {
+ "batchNumber": 5005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36624",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151488255,
+ "shortestRoundTripNano": 48545255,
+ "longestRoundTripNano": 184665923,
+ "averageApexExecutionNano": 70273359,
+ "shortestApexExecutionNano": 8604234,
+ "longestApexExecutionNano": 124120938
+ },
+ {
+ "batchNumber": 5006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148750350,
+ "shortestRoundTripNano": 72848042,
+ "longestRoundTripNano": 178641669,
+ "averageApexExecutionNano": 55097823,
+ "shortestApexExecutionNano": 6081997,
+ "longestApexExecutionNano": 139587322
+ },
+ {
+ "batchNumber": 5007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150236369,
+ "shortestRoundTripNano": 61480338,
+ "longestRoundTripNano": 187890532,
+ "averageApexExecutionNano": 55645882,
+ "shortestApexExecutionNano": 7954175,
+ "longestApexExecutionNano": 116583846
+ },
+ {
+ "batchNumber": 5008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143794266,
+ "shortestRoundTripNano": 58165333,
+ "longestRoundTripNano": 171017569,
+ "averageApexExecutionNano": 65270131,
+ "shortestApexExecutionNano": 13648513,
+ "longestApexExecutionNano": 112373680
+ },
+ {
+ "batchNumber": 5009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155066989,
+ "shortestRoundTripNano": 64009315,
+ "longestRoundTripNano": 181008084,
+ "averageApexExecutionNano": 49954802,
+ "shortestApexExecutionNano": 6253989,
+ "longestApexExecutionNano": 122832049
+ },
+ {
+ "batchNumber": 5010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146092353,
+ "shortestRoundTripNano": 66230346,
+ "longestRoundTripNano": 177521924,
+ "averageApexExecutionNano": 53949531,
+ "shortestApexExecutionNano": 6496263,
+ "longestApexExecutionNano": 122020743
+ },
+ {
+ "batchNumber": 5011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36626",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 225243306,
+ "shortestRoundTripNano": 40429378,
+ "longestRoundTripNano": 259533682,
+ "averageApexExecutionNano": 122787551,
+ "shortestApexExecutionNano": 8454323,
+ "longestApexExecutionNano": 212977724
+ },
+ {
+ "batchNumber": 5012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156064718,
+ "shortestRoundTripNano": 78932126,
+ "longestRoundTripNano": 188836251,
+ "averageApexExecutionNano": 69959087,
+ "shortestApexExecutionNano": 7185004,
+ "longestApexExecutionNano": 136553631
+ },
+ {
+ "batchNumber": 5013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135963959,
+ "shortestRoundTripNano": 51757386,
+ "longestRoundTripNano": 167095864,
+ "averageApexExecutionNano": 47246266,
+ "shortestApexExecutionNano": 7702056,
+ "longestApexExecutionNano": 117610068
+ },
+ {
+ "batchNumber": 5014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146582334,
+ "shortestRoundTripNano": 53441021,
+ "longestRoundTripNano": 178877907,
+ "averageApexExecutionNano": 51044265,
+ "shortestApexExecutionNano": 6358590,
+ "longestApexExecutionNano": 121239917
+ },
+ {
+ "batchNumber": 5015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131621897,
+ "shortestRoundTripNano": 61792853,
+ "longestRoundTripNano": 152484879,
+ "averageApexExecutionNano": 53338440,
+ "shortestApexExecutionNano": 7698527,
+ "longestApexExecutionNano": 111639964
+ },
+ {
+ "batchNumber": 5016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36628",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178484703,
+ "shortestRoundTripNano": 95814451,
+ "longestRoundTripNano": 200580264,
+ "averageApexExecutionNano": 66714948,
+ "shortestApexExecutionNano": 9479339,
+ "longestApexExecutionNano": 135404225
+ },
+ {
+ "batchNumber": 5017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36630",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159705475,
+ "shortestRoundTripNano": 81595949,
+ "longestRoundTripNano": 189773656,
+ "averageApexExecutionNano": 66184050,
+ "shortestApexExecutionNano": 7618878,
+ "longestApexExecutionNano": 150020382
+ },
+ {
+ "batchNumber": 5018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36630",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157562143,
+ "shortestRoundTripNano": 52724055,
+ "longestRoundTripNano": 185500821,
+ "averageApexExecutionNano": 71642470,
+ "shortestApexExecutionNano": 9748214,
+ "longestApexExecutionNano": 125816312
+ },
+ {
+ "batchNumber": 5019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139335995,
+ "shortestRoundTripNano": 76954816,
+ "longestRoundTripNano": 170985974,
+ "averageApexExecutionNano": 55938174,
+ "shortestApexExecutionNano": 10315080,
+ "longestApexExecutionNano": 107941203
+ },
+ {
+ "batchNumber": 5020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151723902,
+ "shortestRoundTripNano": 64683481,
+ "longestRoundTripNano": 190824585,
+ "averageApexExecutionNano": 64280651,
+ "shortestApexExecutionNano": 9348268,
+ "longestApexExecutionNano": 146611208
+ },
+ {
+ "batchNumber": 5021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148193191,
+ "shortestRoundTripNano": 75622030,
+ "longestRoundTripNano": 182616006,
+ "averageApexExecutionNano": 57953715,
+ "shortestApexExecutionNano": 6706505,
+ "longestApexExecutionNano": 132776986
+ },
+ {
+ "batchNumber": 5022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169972859,
+ "shortestRoundTripNano": 65480422,
+ "longestRoundTripNano": 202812574,
+ "averageApexExecutionNano": 64711886,
+ "shortestApexExecutionNano": 9180153,
+ "longestApexExecutionNano": 129578084
+ },
+ {
+ "batchNumber": 5023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126694510,
+ "shortestRoundTripNano": 49122190,
+ "longestRoundTripNano": 157620233,
+ "averageApexExecutionNano": 59003621,
+ "shortestApexExecutionNano": 6124042,
+ "longestApexExecutionNano": 119270893
+ },
+ {
+ "batchNumber": 5024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152471274,
+ "shortestRoundTripNano": 63270562,
+ "longestRoundTripNano": 182439294,
+ "averageApexExecutionNano": 69263406,
+ "shortestApexExecutionNano": 5369796,
+ "longestApexExecutionNano": 143920293
+ },
+ {
+ "batchNumber": 5025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153806025,
+ "shortestRoundTripNano": 86073880,
+ "longestRoundTripNano": 178574249,
+ "averageApexExecutionNano": 77511137,
+ "shortestApexExecutionNano": 18573316,
+ "longestApexExecutionNano": 131529816
+ },
+ {
+ "batchNumber": 5026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149340541,
+ "shortestRoundTripNano": 44137886,
+ "longestRoundTripNano": 181278276,
+ "averageApexExecutionNano": 65468059,
+ "shortestApexExecutionNano": 6242451,
+ "longestApexExecutionNano": 121081904
+ },
+ {
+ "batchNumber": 5027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152090036,
+ "shortestRoundTripNano": 76367635,
+ "longestRoundTripNano": 182763780,
+ "averageApexExecutionNano": 68956225,
+ "shortestApexExecutionNano": 9362869,
+ "longestApexExecutionNano": 121033162
+ },
+ {
+ "batchNumber": 5028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123861298,
+ "shortestRoundTripNano": 67489281,
+ "longestRoundTripNano": 155045582,
+ "averageApexExecutionNano": 57610048,
+ "shortestApexExecutionNano": 6625745,
+ "longestApexExecutionNano": 115033957
+ },
+ {
+ "batchNumber": 5029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158935027,
+ "shortestRoundTripNano": 83617952,
+ "longestRoundTripNano": 193654703,
+ "averageApexExecutionNano": 73120329,
+ "shortestApexExecutionNano": 10609583,
+ "longestApexExecutionNano": 135924170
+ },
+ {
+ "batchNumber": 5030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152966733,
+ "shortestRoundTripNano": 68394017,
+ "longestRoundTripNano": 178649523,
+ "averageApexExecutionNano": 45868472,
+ "shortestApexExecutionNano": 8543188,
+ "longestApexExecutionNano": 117015168
+ },
+ {
+ "batchNumber": 5031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148904587,
+ "shortestRoundTripNano": 56731918,
+ "longestRoundTripNano": 184567683,
+ "averageApexExecutionNano": 66949215,
+ "shortestApexExecutionNano": 10067026,
+ "longestApexExecutionNano": 130852749
+ },
+ {
+ "batchNumber": 5032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139170638,
+ "shortestRoundTripNano": 35545908,
+ "longestRoundTripNano": 167106507,
+ "averageApexExecutionNano": 72755596,
+ "shortestApexExecutionNano": 8745387,
+ "longestApexExecutionNano": 126468094
+ },
+ {
+ "batchNumber": 5033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36632",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148625711,
+ "shortestRoundTripNano": 53036486,
+ "longestRoundTripNano": 181618008,
+ "averageApexExecutionNano": 57158186,
+ "shortestApexExecutionNano": 6660324,
+ "longestApexExecutionNano": 128728079
+ },
+ {
+ "batchNumber": 5034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129437754,
+ "shortestRoundTripNano": 62913036,
+ "longestRoundTripNano": 154797072,
+ "averageApexExecutionNano": 53015839,
+ "shortestApexExecutionNano": 9349013,
+ "longestApexExecutionNano": 105362863
+ },
+ {
+ "batchNumber": 5035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138102026,
+ "shortestRoundTripNano": 70611390,
+ "longestRoundTripNano": 163904359,
+ "averageApexExecutionNano": 70425809,
+ "shortestApexExecutionNano": 6936171,
+ "longestApexExecutionNano": 118614729
+ },
+ {
+ "batchNumber": 5036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173104251,
+ "shortestRoundTripNano": 96673689,
+ "longestRoundTripNano": 217352262,
+ "averageApexExecutionNano": 66020632,
+ "shortestApexExecutionNano": 7597761,
+ "longestApexExecutionNano": 143889496
+ },
+ {
+ "batchNumber": 5037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148290398,
+ "shortestRoundTripNano": 74203913,
+ "longestRoundTripNano": 172084196,
+ "averageApexExecutionNano": 61160908,
+ "shortestApexExecutionNano": 10172006,
+ "longestApexExecutionNano": 122009177
+ },
+ {
+ "batchNumber": 5038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140651070,
+ "shortestRoundTripNano": 84185106,
+ "longestRoundTripNano": 165614510,
+ "averageApexExecutionNano": 46360908,
+ "shortestApexExecutionNano": 9934109,
+ "longestApexExecutionNano": 85527490
+ },
+ {
+ "batchNumber": 5039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132756415,
+ "shortestRoundTripNano": 78340087,
+ "longestRoundTripNano": 158179199,
+ "averageApexExecutionNano": 51653487,
+ "shortestApexExecutionNano": 9360592,
+ "longestApexExecutionNano": 104568732
+ },
+ {
+ "batchNumber": 5040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146085145,
+ "shortestRoundTripNano": 57372129,
+ "longestRoundTripNano": 177718840,
+ "averageApexExecutionNano": 58185180,
+ "shortestApexExecutionNano": 9244320,
+ "longestApexExecutionNano": 132604150
+ },
+ {
+ "batchNumber": 5041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131806871,
+ "shortestRoundTripNano": 38252411,
+ "longestRoundTripNano": 161662515,
+ "averageApexExecutionNano": 61783296,
+ "shortestApexExecutionNano": 8347092,
+ "longestApexExecutionNano": 117883658
+ },
+ {
+ "batchNumber": 5042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127857567,
+ "shortestRoundTripNano": 48828322,
+ "longestRoundTripNano": 156224604,
+ "averageApexExecutionNano": 55903035,
+ "shortestApexExecutionNano": 11985607,
+ "longestApexExecutionNano": 111425479
+ },
+ {
+ "batchNumber": 5043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151420068,
+ "shortestRoundTripNano": 56795565,
+ "longestRoundTripNano": 177666404,
+ "averageApexExecutionNano": 80724670,
+ "shortestApexExecutionNano": 5004275,
+ "longestApexExecutionNano": 129702019
+ },
+ {
+ "batchNumber": 5044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138237502,
+ "shortestRoundTripNano": 54034856,
+ "longestRoundTripNano": 168678790,
+ "averageApexExecutionNano": 60299838,
+ "shortestApexExecutionNano": 5553902,
+ "longestApexExecutionNano": 116189754
+ },
+ {
+ "batchNumber": 5045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163767622,
+ "shortestRoundTripNano": 71772015,
+ "longestRoundTripNano": 204323015,
+ "averageApexExecutionNano": 69996613,
+ "shortestApexExecutionNano": 12747397,
+ "longestApexExecutionNano": 161010714
+ },
+ {
+ "batchNumber": 5046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164062467,
+ "shortestRoundTripNano": 62031620,
+ "longestRoundTripNano": 195000911,
+ "averageApexExecutionNano": 74359375,
+ "shortestApexExecutionNano": 4563521,
+ "longestApexExecutionNano": 132621320
+ },
+ {
+ "batchNumber": 5047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153777612,
+ "shortestRoundTripNano": 105065578,
+ "longestRoundTripNano": 174682626,
+ "averageApexExecutionNano": 49242914,
+ "shortestApexExecutionNano": 6882121,
+ "longestApexExecutionNano": 110031691
+ },
+ {
+ "batchNumber": 5048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133526439,
+ "shortestRoundTripNano": 57701219,
+ "longestRoundTripNano": 184460797,
+ "averageApexExecutionNano": 58467583,
+ "shortestApexExecutionNano": 6964185,
+ "longestApexExecutionNano": 112196020
+ },
+ {
+ "batchNumber": 5049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136722897,
+ "shortestRoundTripNano": 78679338,
+ "longestRoundTripNano": 161826170,
+ "averageApexExecutionNano": 54065370,
+ "shortestApexExecutionNano": 4772531,
+ "longestApexExecutionNano": 117421033
+ },
+ {
+ "batchNumber": 5050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161098414,
+ "shortestRoundTripNano": 46113297,
+ "longestRoundTripNano": 195520855,
+ "averageApexExecutionNano": 71134869,
+ "shortestApexExecutionNano": 9818660,
+ "longestApexExecutionNano": 134686699
+ },
+ {
+ "batchNumber": 5051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164307204,
+ "shortestRoundTripNano": 40661151,
+ "longestRoundTripNano": 200504961,
+ "averageApexExecutionNano": 67354481,
+ "shortestApexExecutionNano": 8466633,
+ "longestApexExecutionNano": 155810987
+ },
+ {
+ "batchNumber": 5052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127451081,
+ "shortestRoundTripNano": 63327868,
+ "longestRoundTripNano": 162372370,
+ "averageApexExecutionNano": 42909461,
+ "shortestApexExecutionNano": 7710302,
+ "longestApexExecutionNano": 105565849
+ },
+ {
+ "batchNumber": 5053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151447149,
+ "shortestRoundTripNano": 78212907,
+ "longestRoundTripNano": 187933818,
+ "averageApexExecutionNano": 66593654,
+ "shortestApexExecutionNano": 7972563,
+ "longestApexExecutionNano": 127363950
+ },
+ {
+ "batchNumber": 5054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157194167,
+ "shortestRoundTripNano": 70826093,
+ "longestRoundTripNano": 186585677,
+ "averageApexExecutionNano": 70536373,
+ "shortestApexExecutionNano": 10314827,
+ "longestApexExecutionNano": 142461363
+ },
+ {
+ "batchNumber": 5055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170803523,
+ "shortestRoundTripNano": 71201165,
+ "longestRoundTripNano": 219018371,
+ "averageApexExecutionNano": 63112577,
+ "shortestApexExecutionNano": 11527288,
+ "longestApexExecutionNano": 121614863
+ },
+ {
+ "batchNumber": 5056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168968640,
+ "shortestRoundTripNano": 86848003,
+ "longestRoundTripNano": 198827825,
+ "averageApexExecutionNano": 67522355,
+ "shortestApexExecutionNano": 6493213,
+ "longestApexExecutionNano": 153768727
+ },
+ {
+ "batchNumber": 5057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148182005,
+ "shortestRoundTripNano": 84141572,
+ "longestRoundTripNano": 185782392,
+ "averageApexExecutionNano": 64343260,
+ "shortestApexExecutionNano": 8448790,
+ "longestApexExecutionNano": 120234136
+ },
+ {
+ "batchNumber": 5058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132472065,
+ "shortestRoundTripNano": 66114920,
+ "longestRoundTripNano": 159520078,
+ "averageApexExecutionNano": 55986862,
+ "shortestApexExecutionNano": 12104839,
+ "longestApexExecutionNano": 105300980
+ },
+ {
+ "batchNumber": 5059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160277814,
+ "shortestRoundTripNano": 55263337,
+ "longestRoundTripNano": 193209351,
+ "averageApexExecutionNano": 71221129,
+ "shortestApexExecutionNano": 10917154,
+ "longestApexExecutionNano": 149668672
+ },
+ {
+ "batchNumber": 5060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147536529,
+ "shortestRoundTripNano": 43330885,
+ "longestRoundTripNano": 175746525,
+ "averageApexExecutionNano": 66178084,
+ "shortestApexExecutionNano": 6635742,
+ "longestApexExecutionNano": 131789395
+ },
+ {
+ "batchNumber": 5061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153197943,
+ "shortestRoundTripNano": 56426092,
+ "longestRoundTripNano": 213470013,
+ "averageApexExecutionNano": 65929519,
+ "shortestApexExecutionNano": 6887253,
+ "longestApexExecutionNano": 152952310
+ },
+ {
+ "batchNumber": 5062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169343708,
+ "shortestRoundTripNano": 36530216,
+ "longestRoundTripNano": 196680184,
+ "averageApexExecutionNano": 81256445,
+ "shortestApexExecutionNano": 8426277,
+ "longestApexExecutionNano": 145144561
+ },
+ {
+ "batchNumber": 5063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135548286,
+ "shortestRoundTripNano": 62487513,
+ "longestRoundTripNano": 168040020,
+ "averageApexExecutionNano": 53235206,
+ "shortestApexExecutionNano": 9947260,
+ "longestApexExecutionNano": 124957401
+ },
+ {
+ "batchNumber": 5064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142666091,
+ "shortestRoundTripNano": 65489146,
+ "longestRoundTripNano": 168680619,
+ "averageApexExecutionNano": 67258228,
+ "shortestApexExecutionNano": 15676746,
+ "longestApexExecutionNano": 124075011
+ },
+ {
+ "batchNumber": 5065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166584838,
+ "shortestRoundTripNano": 50508153,
+ "longestRoundTripNano": 199551803,
+ "averageApexExecutionNano": 54474616,
+ "shortestApexExecutionNano": 8493522,
+ "longestApexExecutionNano": 143074244
+ },
+ {
+ "batchNumber": 5066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145578898,
+ "shortestRoundTripNano": 55172661,
+ "longestRoundTripNano": 181424125,
+ "averageApexExecutionNano": 59596954,
+ "shortestApexExecutionNano": 7862913,
+ "longestApexExecutionNano": 117865024
+ },
+ {
+ "batchNumber": 5067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145948873,
+ "shortestRoundTripNano": 79808951,
+ "longestRoundTripNano": 171394328,
+ "averageApexExecutionNano": 71454725,
+ "shortestApexExecutionNano": 21251625,
+ "longestApexExecutionNano": 116118100
+ },
+ {
+ "batchNumber": 5068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138134408,
+ "shortestRoundTripNano": 51485625,
+ "longestRoundTripNano": 165687734,
+ "averageApexExecutionNano": 52328322,
+ "shortestApexExecutionNano": 8935968,
+ "longestApexExecutionNano": 101756179
+ },
+ {
+ "batchNumber": 5069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162699543,
+ "shortestRoundTripNano": 99725308,
+ "longestRoundTripNano": 191615781,
+ "averageApexExecutionNano": 65810880,
+ "shortestApexExecutionNano": 7469959,
+ "longestApexExecutionNano": 145411390
+ },
+ {
+ "batchNumber": 5070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143652357,
+ "shortestRoundTripNano": 53715288,
+ "longestRoundTripNano": 183224494,
+ "averageApexExecutionNano": 62713412,
+ "shortestApexExecutionNano": 6714781,
+ "longestApexExecutionNano": 135355837
+ },
+ {
+ "batchNumber": 5071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121264789,
+ "shortestRoundTripNano": 58355743,
+ "longestRoundTripNano": 147301411,
+ "averageApexExecutionNano": 52192066,
+ "shortestApexExecutionNano": 11779764,
+ "longestApexExecutionNano": 103933373
+ },
+ {
+ "batchNumber": 5072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136095246,
+ "shortestRoundTripNano": 49008045,
+ "longestRoundTripNano": 175051713,
+ "averageApexExecutionNano": 61510932,
+ "shortestApexExecutionNano": 7989334,
+ "longestApexExecutionNano": 129736600
+ },
+ {
+ "batchNumber": 5073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142415571,
+ "shortestRoundTripNano": 55375878,
+ "longestRoundTripNano": 171387606,
+ "averageApexExecutionNano": 40340354,
+ "shortestApexExecutionNano": 6793242,
+ "longestApexExecutionNano": 102854141
+ },
+ {
+ "batchNumber": 5074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144464111,
+ "shortestRoundTripNano": 72572156,
+ "longestRoundTripNano": 174417787,
+ "averageApexExecutionNano": 65733068,
+ "shortestApexExecutionNano": 11742740,
+ "longestApexExecutionNano": 126761984
+ },
+ {
+ "batchNumber": 5075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 203932584,
+ "shortestRoundTripNano": 72006555,
+ "longestRoundTripNano": 245918349,
+ "averageApexExecutionNano": 116492118,
+ "shortestApexExecutionNano": 10043789,
+ "longestApexExecutionNano": 178318671
+ },
+ {
+ "batchNumber": 5076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131285939,
+ "shortestRoundTripNano": 66901739,
+ "longestRoundTripNano": 159626190,
+ "averageApexExecutionNano": 53222553,
+ "shortestApexExecutionNano": 11630585,
+ "longestApexExecutionNano": 111959336
+ },
+ {
+ "batchNumber": 5077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148225849,
+ "shortestRoundTripNano": 82946386,
+ "longestRoundTripNano": 178807921,
+ "averageApexExecutionNano": 62069891,
+ "shortestApexExecutionNano": 8535499,
+ "longestApexExecutionNano": 119891026
+ },
+ {
+ "batchNumber": 5078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127608700,
+ "shortestRoundTripNano": 48725797,
+ "longestRoundTripNano": 163146277,
+ "averageApexExecutionNano": 63640836,
+ "shortestApexExecutionNano": 9589452,
+ "longestApexExecutionNano": 106725547
+ },
+ {
+ "batchNumber": 5079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141287111,
+ "shortestRoundTripNano": 64349709,
+ "longestRoundTripNano": 176904822,
+ "averageApexExecutionNano": 62381109,
+ "shortestApexExecutionNano": 11373275,
+ "longestApexExecutionNano": 118212573
+ },
+ {
+ "batchNumber": 5080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140276549,
+ "shortestRoundTripNano": 68864588,
+ "longestRoundTripNano": 167303129,
+ "averageApexExecutionNano": 63955174,
+ "shortestApexExecutionNano": 8910738,
+ "longestApexExecutionNano": 114112259
+ },
+ {
+ "batchNumber": 5081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146246120,
+ "shortestRoundTripNano": 65452212,
+ "longestRoundTripNano": 170479666,
+ "averageApexExecutionNano": 63778169,
+ "shortestApexExecutionNano": 12386072,
+ "longestApexExecutionNano": 114187959
+ },
+ {
+ "batchNumber": 5082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140775741,
+ "shortestRoundTripNano": 59775143,
+ "longestRoundTripNano": 164861877,
+ "averageApexExecutionNano": 53771655,
+ "shortestApexExecutionNano": 8311945,
+ "longestApexExecutionNano": 113759216
+ },
+ {
+ "batchNumber": 5083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152802501,
+ "shortestRoundTripNano": 95845509,
+ "longestRoundTripNano": 179232772,
+ "averageApexExecutionNano": 68718408,
+ "shortestApexExecutionNano": 12732652,
+ "longestApexExecutionNano": 123525960
+ },
+ {
+ "batchNumber": 5084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147533118,
+ "shortestRoundTripNano": 45974644,
+ "longestRoundTripNano": 179131554,
+ "averageApexExecutionNano": 63216461,
+ "shortestApexExecutionNano": 10867928,
+ "longestApexExecutionNano": 131584518
+ },
+ {
+ "batchNumber": 5085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144069814,
+ "shortestRoundTripNano": 56688784,
+ "longestRoundTripNano": 175017014,
+ "averageApexExecutionNano": 50510823,
+ "shortestApexExecutionNano": 10910564,
+ "longestApexExecutionNano": 101413067
+ },
+ {
+ "batchNumber": 5086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136570118,
+ "shortestRoundTripNano": 61598448,
+ "longestRoundTripNano": 168026870,
+ "averageApexExecutionNano": 49234141,
+ "shortestApexExecutionNano": 9200494,
+ "longestApexExecutionNano": 128220053
+ },
+ {
+ "batchNumber": 5087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142580982,
+ "shortestRoundTripNano": 71982029,
+ "longestRoundTripNano": 168107297,
+ "averageApexExecutionNano": 51127342,
+ "shortestApexExecutionNano": 5350634,
+ "longestApexExecutionNano": 118123783
+ },
+ {
+ "batchNumber": 5088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148425181,
+ "shortestRoundTripNano": 60772780,
+ "longestRoundTripNano": 186444377,
+ "averageApexExecutionNano": 62392037,
+ "shortestApexExecutionNano": 8850062,
+ "longestApexExecutionNano": 127399209
+ },
+ {
+ "batchNumber": 5089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144607395,
+ "shortestRoundTripNano": 71258019,
+ "longestRoundTripNano": 179108167,
+ "averageApexExecutionNano": 76059941,
+ "shortestApexExecutionNano": 14491612,
+ "longestApexExecutionNano": 131185342
+ },
+ {
+ "batchNumber": 5090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150234952,
+ "shortestRoundTripNano": 81934355,
+ "longestRoundTripNano": 178839838,
+ "averageApexExecutionNano": 58735198,
+ "shortestApexExecutionNano": 7490158,
+ "longestApexExecutionNano": 124563772
+ },
+ {
+ "batchNumber": 5091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147382114,
+ "shortestRoundTripNano": 71354967,
+ "longestRoundTripNano": 178071501,
+ "averageApexExecutionNano": 53761026,
+ "shortestApexExecutionNano": 9691691,
+ "longestApexExecutionNano": 95919877
+ },
+ {
+ "batchNumber": 5092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139562308,
+ "shortestRoundTripNano": 48259627,
+ "longestRoundTripNano": 172561095,
+ "averageApexExecutionNano": 64241290,
+ "shortestApexExecutionNano": 7948233,
+ "longestApexExecutionNano": 132768016
+ },
+ {
+ "batchNumber": 5093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134032813,
+ "shortestRoundTripNano": 47333888,
+ "longestRoundTripNano": 172127770,
+ "averageApexExecutionNano": 51060881,
+ "shortestApexExecutionNano": 10560346,
+ "longestApexExecutionNano": 123145338
+ },
+ {
+ "batchNumber": 5094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130654054,
+ "shortestRoundTripNano": 61451272,
+ "longestRoundTripNano": 181234354,
+ "averageApexExecutionNano": 67357231,
+ "shortestApexExecutionNano": 18403838,
+ "longestApexExecutionNano": 111668920
+ },
+ {
+ "batchNumber": 5095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149353333,
+ "shortestRoundTripNano": 66847641,
+ "longestRoundTripNano": 177724440,
+ "averageApexExecutionNano": 60887727,
+ "shortestApexExecutionNano": 7481959,
+ "longestApexExecutionNano": 121010200
+ },
+ {
+ "batchNumber": 5096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127241792,
+ "shortestRoundTripNano": 56170252,
+ "longestRoundTripNano": 156419893,
+ "averageApexExecutionNano": 49109322,
+ "shortestApexExecutionNano": 5464060,
+ "longestApexExecutionNano": 115116180
+ },
+ {
+ "batchNumber": 5097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144724085,
+ "shortestRoundTripNano": 56425171,
+ "longestRoundTripNano": 181188631,
+ "averageApexExecutionNano": 71069257,
+ "shortestApexExecutionNano": 6796245,
+ "longestApexExecutionNano": 132090601
+ },
+ {
+ "batchNumber": 5098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142688869,
+ "shortestRoundTripNano": 57794316,
+ "longestRoundTripNano": 174636157,
+ "averageApexExecutionNano": 55735520,
+ "shortestApexExecutionNano": 8191160,
+ "longestApexExecutionNano": 122918556
+ },
+ {
+ "batchNumber": 5099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135689651,
+ "shortestRoundTripNano": 34483548,
+ "longestRoundTripNano": 167615922,
+ "averageApexExecutionNano": 56081291,
+ "shortestApexExecutionNano": 6126043,
+ "longestApexExecutionNano": 117902470
+ },
+ {
+ "batchNumber": 5100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146031547,
+ "shortestRoundTripNano": 68879285,
+ "longestRoundTripNano": 177836274,
+ "averageApexExecutionNano": 73708559,
+ "shortestApexExecutionNano": 11230505,
+ "longestApexExecutionNano": 131901013
+ },
+ {
+ "batchNumber": 5101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135148141,
+ "shortestRoundTripNano": 78129723,
+ "longestRoundTripNano": 158500687,
+ "averageApexExecutionNano": 38204920,
+ "shortestApexExecutionNano": 5787216,
+ "longestApexExecutionNano": 102599959
+ },
+ {
+ "batchNumber": 5102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135401596,
+ "shortestRoundTripNano": 67983725,
+ "longestRoundTripNano": 160347885,
+ "averageApexExecutionNano": 60180681,
+ "shortestApexExecutionNano": 11660277,
+ "longestApexExecutionNano": 120256508
+ },
+ {
+ "batchNumber": 5103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154315979,
+ "shortestRoundTripNano": 51262415,
+ "longestRoundTripNano": 179613968,
+ "averageApexExecutionNano": 62296025,
+ "shortestApexExecutionNano": 8954089,
+ "longestApexExecutionNano": 110568951
+ },
+ {
+ "batchNumber": 5104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154763508,
+ "shortestRoundTripNano": 97825014,
+ "longestRoundTripNano": 174718634,
+ "averageApexExecutionNano": 68552008,
+ "shortestApexExecutionNano": 24958776,
+ "longestApexExecutionNano": 113541210
+ },
+ {
+ "batchNumber": 5105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128847821,
+ "shortestRoundTripNano": 64699785,
+ "longestRoundTripNano": 156065300,
+ "averageApexExecutionNano": 62431006,
+ "shortestApexExecutionNano": 6277831,
+ "longestApexExecutionNano": 117112646
+ },
+ {
+ "batchNumber": 5106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130165835,
+ "shortestRoundTripNano": 60722324,
+ "longestRoundTripNano": 169803687,
+ "averageApexExecutionNano": 46286125,
+ "shortestApexExecutionNano": 8528858,
+ "longestApexExecutionNano": 109621746
+ },
+ {
+ "batchNumber": 5107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131325899,
+ "shortestRoundTripNano": 61297021,
+ "longestRoundTripNano": 157294984,
+ "averageApexExecutionNano": 67717655,
+ "shortestApexExecutionNano": 26428241,
+ "longestApexExecutionNano": 115824670
+ },
+ {
+ "batchNumber": 5108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154227562,
+ "shortestRoundTripNano": 52687736,
+ "longestRoundTripNano": 191174540,
+ "averageApexExecutionNano": 71890078,
+ "shortestApexExecutionNano": 8346093,
+ "longestApexExecutionNano": 140884912
+ },
+ {
+ "batchNumber": 5109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147760302,
+ "shortestRoundTripNano": 71104005,
+ "longestRoundTripNano": 174204746,
+ "averageApexExecutionNano": 65878584,
+ "shortestApexExecutionNano": 10347620,
+ "longestApexExecutionNano": 127290386
+ },
+ {
+ "batchNumber": 5110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157562841,
+ "shortestRoundTripNano": 68335881,
+ "longestRoundTripNano": 188106860,
+ "averageApexExecutionNano": 66584785,
+ "shortestApexExecutionNano": 6950315,
+ "longestApexExecutionNano": 126299834
+ },
+ {
+ "batchNumber": 5111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133015447,
+ "shortestRoundTripNano": 61330343,
+ "longestRoundTripNano": 166156264,
+ "averageApexExecutionNano": 62398373,
+ "shortestApexExecutionNano": 8933686,
+ "longestApexExecutionNano": 109886853
+ },
+ {
+ "batchNumber": 5112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137294119,
+ "shortestRoundTripNano": 61198742,
+ "longestRoundTripNano": 166796800,
+ "averageApexExecutionNano": 68714397,
+ "shortestApexExecutionNano": 7169124,
+ "longestApexExecutionNano": 121378223
+ },
+ {
+ "batchNumber": 5113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139613546,
+ "shortestRoundTripNano": 56320921,
+ "longestRoundTripNano": 169654244,
+ "averageApexExecutionNano": 51048468,
+ "shortestApexExecutionNano": 8610990,
+ "longestApexExecutionNano": 115463795
+ },
+ {
+ "batchNumber": 5114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145358595,
+ "shortestRoundTripNano": 55917010,
+ "longestRoundTripNano": 181323295,
+ "averageApexExecutionNano": 64891754,
+ "shortestApexExecutionNano": 14082439,
+ "longestApexExecutionNano": 119562689
+ },
+ {
+ "batchNumber": 5115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166226292,
+ "shortestRoundTripNano": 63133088,
+ "longestRoundTripNano": 200670948,
+ "averageApexExecutionNano": 58928450,
+ "shortestApexExecutionNano": 9533411,
+ "longestApexExecutionNano": 128991971
+ },
+ {
+ "batchNumber": 5116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131736359,
+ "shortestRoundTripNano": 43558227,
+ "longestRoundTripNano": 154149689,
+ "averageApexExecutionNano": 57627812,
+ "shortestApexExecutionNano": 8632284,
+ "longestApexExecutionNano": 106467843
+ },
+ {
+ "batchNumber": 5117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119095948,
+ "shortestRoundTripNano": 54510747,
+ "longestRoundTripNano": 154458599,
+ "averageApexExecutionNano": 52079268,
+ "shortestApexExecutionNano": 7548294,
+ "longestApexExecutionNano": 110580634
+ },
+ {
+ "batchNumber": 5118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133774528,
+ "shortestRoundTripNano": 50885987,
+ "longestRoundTripNano": 159074787,
+ "averageApexExecutionNano": 38686848,
+ "shortestApexExecutionNano": 10406592,
+ "longestApexExecutionNano": 101524135
+ },
+ {
+ "batchNumber": 5119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153245681,
+ "shortestRoundTripNano": 70918882,
+ "longestRoundTripNano": 176201658,
+ "averageApexExecutionNano": 58114405,
+ "shortestApexExecutionNano": 5669387,
+ "longestApexExecutionNano": 120467493
+ },
+ {
+ "batchNumber": 5120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137155092,
+ "shortestRoundTripNano": 62159867,
+ "longestRoundTripNano": 162715006,
+ "averageApexExecutionNano": 69049242,
+ "shortestApexExecutionNano": 13346962,
+ "longestApexExecutionNano": 119625931
+ },
+ {
+ "batchNumber": 5121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121129936,
+ "shortestRoundTripNano": 34170483,
+ "longestRoundTripNano": 148429915,
+ "averageApexExecutionNano": 47584769,
+ "shortestApexExecutionNano": 8317559,
+ "longestApexExecutionNano": 100030069
+ },
+ {
+ "batchNumber": 5122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157778938,
+ "shortestRoundTripNano": 103423583,
+ "longestRoundTripNano": 191898610,
+ "averageApexExecutionNano": 76357656,
+ "shortestApexExecutionNano": 8757736,
+ "longestApexExecutionNano": 118046316
+ },
+ {
+ "batchNumber": 5123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137077843,
+ "shortestRoundTripNano": 77180233,
+ "longestRoundTripNano": 165458898,
+ "averageApexExecutionNano": 52304080,
+ "shortestApexExecutionNano": 7229547,
+ "longestApexExecutionNano": 99318642
+ },
+ {
+ "batchNumber": 5124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161468584,
+ "shortestRoundTripNano": 57316708,
+ "longestRoundTripNano": 193956242,
+ "averageApexExecutionNano": 54159864,
+ "shortestApexExecutionNano": 9729131,
+ "longestApexExecutionNano": 129104176
+ },
+ {
+ "batchNumber": 5125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126123341,
+ "shortestRoundTripNano": 59733850,
+ "longestRoundTripNano": 153467029,
+ "averageApexExecutionNano": 59309753,
+ "shortestApexExecutionNano": 9321527,
+ "longestApexExecutionNano": 110042575
+ },
+ {
+ "batchNumber": 5126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117901056,
+ "shortestRoundTripNano": 47513623,
+ "longestRoundTripNano": 153874555,
+ "averageApexExecutionNano": 44234428,
+ "shortestApexExecutionNano": 4740492,
+ "longestApexExecutionNano": 96339541
+ },
+ {
+ "batchNumber": 5127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147215524,
+ "shortestRoundTripNano": 76519289,
+ "longestRoundTripNano": 170251754,
+ "averageApexExecutionNano": 67300630,
+ "shortestApexExecutionNano": 13271793,
+ "longestApexExecutionNano": 131361885
+ },
+ {
+ "batchNumber": 5128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154538603,
+ "shortestRoundTripNano": 80659058,
+ "longestRoundTripNano": 178252361,
+ "averageApexExecutionNano": 61605156,
+ "shortestApexExecutionNano": 15175389,
+ "longestApexExecutionNano": 115422799
+ },
+ {
+ "batchNumber": 5129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130955219,
+ "shortestRoundTripNano": 41970833,
+ "longestRoundTripNano": 169219762,
+ "averageApexExecutionNano": 53041441,
+ "shortestApexExecutionNano": 7789112,
+ "longestApexExecutionNano": 123067579
+ },
+ {
+ "batchNumber": 5130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156958689,
+ "shortestRoundTripNano": 70929279,
+ "longestRoundTripNano": 192514589,
+ "averageApexExecutionNano": 58290341,
+ "shortestApexExecutionNano": 9864195,
+ "longestApexExecutionNano": 121792669
+ },
+ {
+ "batchNumber": 5131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177397369,
+ "shortestRoundTripNano": 84701512,
+ "longestRoundTripNano": 208440056,
+ "averageApexExecutionNano": 79703107,
+ "shortestApexExecutionNano": 11021446,
+ "longestApexExecutionNano": 145870391
+ },
+ {
+ "batchNumber": 5132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145695967,
+ "shortestRoundTripNano": 70778393,
+ "longestRoundTripNano": 177526696,
+ "averageApexExecutionNano": 64688685,
+ "shortestApexExecutionNano": 4925111,
+ "longestApexExecutionNano": 103304525
+ },
+ {
+ "batchNumber": 5133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132301598,
+ "shortestRoundTripNano": 50826697,
+ "longestRoundTripNano": 161246130,
+ "averageApexExecutionNano": 57165484,
+ "shortestApexExecutionNano": 6901175,
+ "longestApexExecutionNano": 124985104
+ },
+ {
+ "batchNumber": 5134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140637316,
+ "shortestRoundTripNano": 68810311,
+ "longestRoundTripNano": 159387801,
+ "averageApexExecutionNano": 65435558,
+ "shortestApexExecutionNano": 7659830,
+ "longestApexExecutionNano": 114023953
+ },
+ {
+ "batchNumber": 5135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166789477,
+ "shortestRoundTripNano": 50420843,
+ "longestRoundTripNano": 194611806,
+ "averageApexExecutionNano": 72000956,
+ "shortestApexExecutionNano": 10088288,
+ "longestApexExecutionNano": 136523471
+ },
+ {
+ "batchNumber": 5136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142439551,
+ "shortestRoundTripNano": 73424469,
+ "longestRoundTripNano": 165134447,
+ "averageApexExecutionNano": 60382464,
+ "shortestApexExecutionNano": 5484677,
+ "longestApexExecutionNano": 123370773
+ },
+ {
+ "batchNumber": 5137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146930090,
+ "shortestRoundTripNano": 66639539,
+ "longestRoundTripNano": 178518399,
+ "averageApexExecutionNano": 67756688,
+ "shortestApexExecutionNano": 6049244,
+ "longestApexExecutionNano": 128119005
+ },
+ {
+ "batchNumber": 5138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145854589,
+ "shortestRoundTripNano": 61447754,
+ "longestRoundTripNano": 175238557,
+ "averageApexExecutionNano": 45534284,
+ "shortestApexExecutionNano": 9668345,
+ "longestApexExecutionNano": 127075136
+ },
+ {
+ "batchNumber": 5139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149122250,
+ "shortestRoundTripNano": 67089172,
+ "longestRoundTripNano": 177121545,
+ "averageApexExecutionNano": 63116884,
+ "shortestApexExecutionNano": 23169075,
+ "longestApexExecutionNano": 120669806
+ },
+ {
+ "batchNumber": 5140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149238807,
+ "shortestRoundTripNano": 74440148,
+ "longestRoundTripNano": 175884729,
+ "averageApexExecutionNano": 56878588,
+ "shortestApexExecutionNano": 10858839,
+ "longestApexExecutionNano": 122947800
+ },
+ {
+ "batchNumber": 5141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148671969,
+ "shortestRoundTripNano": 77387193,
+ "longestRoundTripNano": 175411943,
+ "averageApexExecutionNano": 67073639,
+ "shortestApexExecutionNano": 5825345,
+ "longestApexExecutionNano": 137931674
+ },
+ {
+ "batchNumber": 5142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146674103,
+ "shortestRoundTripNano": 81810519,
+ "longestRoundTripNano": 171698753,
+ "averageApexExecutionNano": 57277895,
+ "shortestApexExecutionNano": 6340599,
+ "longestApexExecutionNano": 107324956
+ },
+ {
+ "batchNumber": 5143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123840304,
+ "shortestRoundTripNano": 79278602,
+ "longestRoundTripNano": 158168598,
+ "averageApexExecutionNano": 70218108,
+ "shortestApexExecutionNano": 10908954,
+ "longestApexExecutionNano": 113778174
+ },
+ {
+ "batchNumber": 5144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134510132,
+ "shortestRoundTripNano": 60669179,
+ "longestRoundTripNano": 161964169,
+ "averageApexExecutionNano": 62783873,
+ "shortestApexExecutionNano": 12352564,
+ "longestApexExecutionNano": 114922954
+ },
+ {
+ "batchNumber": 5145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143078066,
+ "shortestRoundTripNano": 53861659,
+ "longestRoundTripNano": 169949533,
+ "averageApexExecutionNano": 66765687,
+ "shortestApexExecutionNano": 14173606,
+ "longestApexExecutionNano": 120804572
+ },
+ {
+ "batchNumber": 5146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145984721,
+ "shortestRoundTripNano": 52418280,
+ "longestRoundTripNano": 176691638,
+ "averageApexExecutionNano": 66175949,
+ "shortestApexExecutionNano": 8178178,
+ "longestApexExecutionNano": 120188415
+ },
+ {
+ "batchNumber": 5147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149711284,
+ "shortestRoundTripNano": 60482899,
+ "longestRoundTripNano": 178612923,
+ "averageApexExecutionNano": 71622364,
+ "shortestApexExecutionNano": 9722918,
+ "longestApexExecutionNano": 134441259
+ },
+ {
+ "batchNumber": 5148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145201992,
+ "shortestRoundTripNano": 59249578,
+ "longestRoundTripNano": 185085064,
+ "averageApexExecutionNano": 55365395,
+ "shortestApexExecutionNano": 8673686,
+ "longestApexExecutionNano": 131307789
+ },
+ {
+ "batchNumber": 5149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122209603,
+ "shortestRoundTripNano": 61502072,
+ "longestRoundTripNano": 149769124,
+ "averageApexExecutionNano": 53312940,
+ "shortestApexExecutionNano": 10312648,
+ "longestApexExecutionNano": 109460530
+ },
+ {
+ "batchNumber": 5150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131105018,
+ "shortestRoundTripNano": 58277822,
+ "longestRoundTripNano": 163239887,
+ "averageApexExecutionNano": 54700067,
+ "shortestApexExecutionNano": 7196857,
+ "longestApexExecutionNano": 106651612
+ },
+ {
+ "batchNumber": 5151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130423950,
+ "shortestRoundTripNano": 65044892,
+ "longestRoundTripNano": 159905863,
+ "averageApexExecutionNano": 62903985,
+ "shortestApexExecutionNano": 14279666,
+ "longestApexExecutionNano": 116846623
+ },
+ {
+ "batchNumber": 5152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143364792,
+ "shortestRoundTripNano": 65860458,
+ "longestRoundTripNano": 176736394,
+ "averageApexExecutionNano": 51560778,
+ "shortestApexExecutionNano": 7191315,
+ "longestApexExecutionNano": 97219956
+ },
+ {
+ "batchNumber": 5153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141180113,
+ "shortestRoundTripNano": 45756230,
+ "longestRoundTripNano": 178590684,
+ "averageApexExecutionNano": 63937174,
+ "shortestApexExecutionNano": 6319174,
+ "longestApexExecutionNano": 119093842
+ },
+ {
+ "batchNumber": 5154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151203557,
+ "shortestRoundTripNano": 79473546,
+ "longestRoundTripNano": 188089661,
+ "averageApexExecutionNano": 54399034,
+ "shortestApexExecutionNano": 9855488,
+ "longestApexExecutionNano": 127877129
+ },
+ {
+ "batchNumber": 5155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 259402650,
+ "shortestRoundTripNano": 38742729,
+ "longestRoundTripNano": 303399676,
+ "averageApexExecutionNano": 123206204,
+ "shortestApexExecutionNano": 19979408,
+ "longestApexExecutionNano": 258155720
+ },
+ {
+ "batchNumber": 5156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149311581,
+ "shortestRoundTripNano": 67823057,
+ "longestRoundTripNano": 179806441,
+ "averageApexExecutionNano": 51779726,
+ "shortestApexExecutionNano": 7441309,
+ "longestApexExecutionNano": 119756219
+ },
+ {
+ "batchNumber": 5157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139572575,
+ "shortestRoundTripNano": 47676086,
+ "longestRoundTripNano": 182565809,
+ "averageApexExecutionNano": 53543533,
+ "shortestApexExecutionNano": 6590883,
+ "longestApexExecutionNano": 118725580
+ },
+ {
+ "batchNumber": 5158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162928532,
+ "shortestRoundTripNano": 65656374,
+ "longestRoundTripNano": 189583357,
+ "averageApexExecutionNano": 75000565,
+ "shortestApexExecutionNano": 9555758,
+ "longestApexExecutionNano": 145214099
+ },
+ {
+ "batchNumber": 5159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150320788,
+ "shortestRoundTripNano": 73188079,
+ "longestRoundTripNano": 181448606,
+ "averageApexExecutionNano": 56794126,
+ "shortestApexExecutionNano": 7206243,
+ "longestApexExecutionNano": 120173074
+ },
+ {
+ "batchNumber": 5160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36686",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165819803,
+ "shortestRoundTripNano": 71098216,
+ "longestRoundTripNano": 192778980,
+ "averageApexExecutionNano": 72920884,
+ "shortestApexExecutionNano": 8338053,
+ "longestApexExecutionNano": 146141166
+ },
+ {
+ "batchNumber": 5161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146416503,
+ "shortestRoundTripNano": 69691186,
+ "longestRoundTripNano": 182401099,
+ "averageApexExecutionNano": 78003917,
+ "shortestApexExecutionNano": 10999578,
+ "longestApexExecutionNano": 134196725
+ },
+ {
+ "batchNumber": 5162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170063154,
+ "shortestRoundTripNano": 65299649,
+ "longestRoundTripNano": 200575866,
+ "averageApexExecutionNano": 73624992,
+ "shortestApexExecutionNano": 10208729,
+ "longestApexExecutionNano": 139013080
+ },
+ {
+ "batchNumber": 5163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138935146,
+ "shortestRoundTripNano": 63379026,
+ "longestRoundTripNano": 171279702,
+ "averageApexExecutionNano": 56107460,
+ "shortestApexExecutionNano": 7253531,
+ "longestApexExecutionNano": 132944249
+ },
+ {
+ "batchNumber": 5164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137946333,
+ "shortestRoundTripNano": 75891786,
+ "longestRoundTripNano": 164604380,
+ "averageApexExecutionNano": 61209699,
+ "shortestApexExecutionNano": 7808931,
+ "longestApexExecutionNano": 117046472
+ },
+ {
+ "batchNumber": 5165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147884634,
+ "shortestRoundTripNano": 68257162,
+ "longestRoundTripNano": 179967305,
+ "averageApexExecutionNano": 46869229,
+ "shortestApexExecutionNano": 6300985,
+ "longestApexExecutionNano": 127037121
+ },
+ {
+ "batchNumber": 5166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162513470,
+ "shortestRoundTripNano": 66457909,
+ "longestRoundTripNano": 185958933,
+ "averageApexExecutionNano": 64023266,
+ "shortestApexExecutionNano": 7208974,
+ "longestApexExecutionNano": 138188325
+ },
+ {
+ "batchNumber": 5167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141123514,
+ "shortestRoundTripNano": 45551481,
+ "longestRoundTripNano": 173515037,
+ "averageApexExecutionNano": 63752710,
+ "shortestApexExecutionNano": 6994179,
+ "longestApexExecutionNano": 124653529
+ },
+ {
+ "batchNumber": 5168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131394995,
+ "shortestRoundTripNano": 59885484,
+ "longestRoundTripNano": 162051486,
+ "averageApexExecutionNano": 59843316,
+ "shortestApexExecutionNano": 9483405,
+ "longestApexExecutionNano": 118622062
+ },
+ {
+ "batchNumber": 5169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141582297,
+ "shortestRoundTripNano": 66998779,
+ "longestRoundTripNano": 169165890,
+ "averageApexExecutionNano": 56308302,
+ "shortestApexExecutionNano": 6705758,
+ "longestApexExecutionNano": 132629823
+ },
+ {
+ "batchNumber": 5170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161077577,
+ "shortestRoundTripNano": 49962178,
+ "longestRoundTripNano": 195158529,
+ "averageApexExecutionNano": 69114478,
+ "shortestApexExecutionNano": 12582780,
+ "longestApexExecutionNano": 139359412
+ },
+ {
+ "batchNumber": 5171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134304880,
+ "shortestRoundTripNano": 59456783,
+ "longestRoundTripNano": 163851843,
+ "averageApexExecutionNano": 59778095,
+ "shortestApexExecutionNano": 6407697,
+ "longestApexExecutionNano": 113030362
+ },
+ {
+ "batchNumber": 5172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150147533,
+ "shortestRoundTripNano": 60008284,
+ "longestRoundTripNano": 182560857,
+ "averageApexExecutionNano": 50516637,
+ "shortestApexExecutionNano": 7624387,
+ "longestApexExecutionNano": 114510403
+ },
+ {
+ "batchNumber": 5173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156085422,
+ "shortestRoundTripNano": 69418735,
+ "longestRoundTripNano": 182671498,
+ "averageApexExecutionNano": 63975532,
+ "shortestApexExecutionNano": 7481580,
+ "longestApexExecutionNano": 114161593
+ },
+ {
+ "batchNumber": 5174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136792064,
+ "shortestRoundTripNano": 70604158,
+ "longestRoundTripNano": 168215132,
+ "averageApexExecutionNano": 63565551,
+ "shortestApexExecutionNano": 10517406,
+ "longestApexExecutionNano": 120389826
+ },
+ {
+ "batchNumber": 5175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144111736,
+ "shortestRoundTripNano": 59917425,
+ "longestRoundTripNano": 175115085,
+ "averageApexExecutionNano": 60933036,
+ "shortestApexExecutionNano": 9114479,
+ "longestApexExecutionNano": 111393258
+ },
+ {
+ "batchNumber": 5176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136047378,
+ "shortestRoundTripNano": 72157701,
+ "longestRoundTripNano": 159305028,
+ "averageApexExecutionNano": 64578204,
+ "shortestApexExecutionNano": 15073236,
+ "longestApexExecutionNano": 108108225
+ },
+ {
+ "batchNumber": 5177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148375617,
+ "shortestRoundTripNano": 70269973,
+ "longestRoundTripNano": 176826109,
+ "averageApexExecutionNano": 65825897,
+ "shortestApexExecutionNano": 10443345,
+ "longestApexExecutionNano": 113541517
+ },
+ {
+ "batchNumber": 5178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132789146,
+ "shortestRoundTripNano": 61843300,
+ "longestRoundTripNano": 171797121,
+ "averageApexExecutionNano": 53469635,
+ "shortestApexExecutionNano": 7110461,
+ "longestApexExecutionNano": 131655443
+ },
+ {
+ "batchNumber": 5179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143814515,
+ "shortestRoundTripNano": 76380134,
+ "longestRoundTripNano": 172185989,
+ "averageApexExecutionNano": 50933615,
+ "shortestApexExecutionNano": 6045068,
+ "longestApexExecutionNano": 127514693
+ },
+ {
+ "batchNumber": 5180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132520998,
+ "shortestRoundTripNano": 35678145,
+ "longestRoundTripNano": 158299829,
+ "averageApexExecutionNano": 56639597,
+ "shortestApexExecutionNano": 7897058,
+ "longestApexExecutionNano": 105776222
+ },
+ {
+ "batchNumber": 5181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147594381,
+ "shortestRoundTripNano": 69185938,
+ "longestRoundTripNano": 170008092,
+ "averageApexExecutionNano": 42159501,
+ "shortestApexExecutionNano": 4617258,
+ "longestApexExecutionNano": 88435250
+ },
+ {
+ "batchNumber": 5182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133984718,
+ "shortestRoundTripNano": 71955400,
+ "longestRoundTripNano": 163993246,
+ "averageApexExecutionNano": 76055334,
+ "shortestApexExecutionNano": 6333254,
+ "longestApexExecutionNano": 128772210
+ },
+ {
+ "batchNumber": 5183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140622850,
+ "shortestRoundTripNano": 66444965,
+ "longestRoundTripNano": 168271688,
+ "averageApexExecutionNano": 55781273,
+ "shortestApexExecutionNano": 10770138,
+ "longestApexExecutionNano": 129461189
+ },
+ {
+ "batchNumber": 5184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150428123,
+ "shortestRoundTripNano": 51247636,
+ "longestRoundTripNano": 182354177,
+ "averageApexExecutionNano": 67730868,
+ "shortestApexExecutionNano": 9304132,
+ "longestApexExecutionNano": 123081172
+ },
+ {
+ "batchNumber": 5185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137101028,
+ "shortestRoundTripNano": 78202548,
+ "longestRoundTripNano": 167127641,
+ "averageApexExecutionNano": 67373475,
+ "shortestApexExecutionNano": 8973032,
+ "longestApexExecutionNano": 123040063
+ },
+ {
+ "batchNumber": 5186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133528852,
+ "shortestRoundTripNano": 58934167,
+ "longestRoundTripNano": 159640355,
+ "averageApexExecutionNano": 57552686,
+ "shortestApexExecutionNano": 7815584,
+ "longestApexExecutionNano": 117313384
+ },
+ {
+ "batchNumber": 5187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147124001,
+ "shortestRoundTripNano": 67938260,
+ "longestRoundTripNano": 173202512,
+ "averageApexExecutionNano": 58502938,
+ "shortestApexExecutionNano": 6525233,
+ "longestApexExecutionNano": 122007452
+ },
+ {
+ "batchNumber": 5188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153663585,
+ "shortestRoundTripNano": 58622162,
+ "longestRoundTripNano": 182849657,
+ "averageApexExecutionNano": 64552841,
+ "shortestApexExecutionNano": 13332661,
+ "longestApexExecutionNano": 116380178
+ },
+ {
+ "batchNumber": 5189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158841194,
+ "shortestRoundTripNano": 77293259,
+ "longestRoundTripNano": 183754016,
+ "averageApexExecutionNano": 76803592,
+ "shortestApexExecutionNano": 13488502,
+ "longestApexExecutionNano": 143654011
+ },
+ {
+ "batchNumber": 5190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167774043,
+ "shortestRoundTripNano": 63272214,
+ "longestRoundTripNano": 203414748,
+ "averageApexExecutionNano": 70064219,
+ "shortestApexExecutionNano": 7853596,
+ "longestApexExecutionNano": 138695301
+ },
+ {
+ "batchNumber": 5191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151442731,
+ "shortestRoundTripNano": 75610815,
+ "longestRoundTripNano": 173975237,
+ "averageApexExecutionNano": 67758693,
+ "shortestApexExecutionNano": 10310396,
+ "longestApexExecutionNano": 122286286
+ },
+ {
+ "batchNumber": 5192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142761931,
+ "shortestRoundTripNano": 59946829,
+ "longestRoundTripNano": 179531683,
+ "averageApexExecutionNano": 57379538,
+ "shortestApexExecutionNano": 10016955,
+ "longestApexExecutionNano": 124911675
+ },
+ {
+ "batchNumber": 5193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146821076,
+ "shortestRoundTripNano": 48934814,
+ "longestRoundTripNano": 184499679,
+ "averageApexExecutionNano": 70370791,
+ "shortestApexExecutionNano": 6576085,
+ "longestApexExecutionNano": 142470136
+ },
+ {
+ "batchNumber": 5194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140994173,
+ "shortestRoundTripNano": 65466599,
+ "longestRoundTripNano": 169852237,
+ "averageApexExecutionNano": 56166520,
+ "shortestApexExecutionNano": 5673970,
+ "longestApexExecutionNano": 112928679
+ },
+ {
+ "batchNumber": 5195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144216791,
+ "shortestRoundTripNano": 66519365,
+ "longestRoundTripNano": 172606270,
+ "averageApexExecutionNano": 43410134,
+ "shortestApexExecutionNano": 5699751,
+ "longestApexExecutionNano": 106793387
+ },
+ {
+ "batchNumber": 5196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139163073,
+ "shortestRoundTripNano": 33796596,
+ "longestRoundTripNano": 170522328,
+ "averageApexExecutionNano": 61833876,
+ "shortestApexExecutionNano": 5577979,
+ "longestApexExecutionNano": 125104585
+ },
+ {
+ "batchNumber": 5197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163228067,
+ "shortestRoundTripNano": 97990507,
+ "longestRoundTripNano": 190751672,
+ "averageApexExecutionNano": 78196264,
+ "shortestApexExecutionNano": 14667821,
+ "longestApexExecutionNano": 142489737
+ },
+ {
+ "batchNumber": 5198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36700",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175690457,
+ "shortestRoundTripNano": 60633682,
+ "longestRoundTripNano": 207760468,
+ "averageApexExecutionNano": 73234257,
+ "shortestApexExecutionNano": 18443673,
+ "longestApexExecutionNano": 121683941
+ },
+ {
+ "batchNumber": 5199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145536705,
+ "shortestRoundTripNano": 78618290,
+ "longestRoundTripNano": 174017658,
+ "averageApexExecutionNano": 66822552,
+ "shortestApexExecutionNano": 6289467,
+ "longestApexExecutionNano": 118551098
+ },
+ {
+ "batchNumber": 5200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149466345,
+ "shortestRoundTripNano": 57326483,
+ "longestRoundTripNano": 172473370,
+ "averageApexExecutionNano": 50939827,
+ "shortestApexExecutionNano": 8258699,
+ "longestApexExecutionNano": 119853889
+ },
+ {
+ "batchNumber": 5201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136623988,
+ "shortestRoundTripNano": 53459477,
+ "longestRoundTripNano": 169269995,
+ "averageApexExecutionNano": 53935233,
+ "shortestApexExecutionNano": 9175647,
+ "longestApexExecutionNano": 124942066
+ },
+ {
+ "batchNumber": 5202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155506819,
+ "shortestRoundTripNano": 68568300,
+ "longestRoundTripNano": 187688156,
+ "averageApexExecutionNano": 58488415,
+ "shortestApexExecutionNano": 7284827,
+ "longestApexExecutionNano": 131918245
+ },
+ {
+ "batchNumber": 5203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133522807,
+ "shortestRoundTripNano": 32664002,
+ "longestRoundTripNano": 164106298,
+ "averageApexExecutionNano": 59181569,
+ "shortestApexExecutionNano": 6985530,
+ "longestApexExecutionNano": 106880627
+ },
+ {
+ "batchNumber": 5204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137489250,
+ "shortestRoundTripNano": 48883879,
+ "longestRoundTripNano": 170592269,
+ "averageApexExecutionNano": 70382360,
+ "shortestApexExecutionNano": 8842137,
+ "longestApexExecutionNano": 125591664
+ },
+ {
+ "batchNumber": 5205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36706",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148123433,
+ "shortestRoundTripNano": 52674867,
+ "longestRoundTripNano": 181133174,
+ "averageApexExecutionNano": 65508100,
+ "shortestApexExecutionNano": 10335857,
+ "longestApexExecutionNano": 120073735
+ },
+ {
+ "batchNumber": 5206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142774964,
+ "shortestRoundTripNano": 62151022,
+ "longestRoundTripNano": 176511978,
+ "averageApexExecutionNano": 57411177,
+ "shortestApexExecutionNano": 7303066,
+ "longestApexExecutionNano": 135237896
+ },
+ {
+ "batchNumber": 5207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129086601,
+ "shortestRoundTripNano": 59352324,
+ "longestRoundTripNano": 156948380,
+ "averageApexExecutionNano": 58996869,
+ "shortestApexExecutionNano": 8224479,
+ "longestApexExecutionNano": 103935419
+ },
+ {
+ "batchNumber": 5208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152045891,
+ "shortestRoundTripNano": 81562526,
+ "longestRoundTripNano": 177124988,
+ "averageApexExecutionNano": 70800678,
+ "shortestApexExecutionNano": 17332505,
+ "longestApexExecutionNano": 130736576
+ },
+ {
+ "batchNumber": 5209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152470400,
+ "shortestRoundTripNano": 65121708,
+ "longestRoundTripNano": 179918537,
+ "averageApexExecutionNano": 55151080,
+ "shortestApexExecutionNano": 8640078,
+ "longestApexExecutionNano": 132685299
+ },
+ {
+ "batchNumber": 5210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128247433,
+ "shortestRoundTripNano": 59072487,
+ "longestRoundTripNano": 158167215,
+ "averageApexExecutionNano": 50111640,
+ "shortestApexExecutionNano": 7148816,
+ "longestApexExecutionNano": 118318565
+ },
+ {
+ "batchNumber": 5211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151072337,
+ "shortestRoundTripNano": 57465984,
+ "longestRoundTripNano": 184301016,
+ "averageApexExecutionNano": 58903647,
+ "shortestApexExecutionNano": 6630322,
+ "longestApexExecutionNano": 121792515
+ },
+ {
+ "batchNumber": 5212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148079079,
+ "shortestRoundTripNano": 83320510,
+ "longestRoundTripNano": 175229609,
+ "averageApexExecutionNano": 57500843,
+ "shortestApexExecutionNano": 7639999,
+ "longestApexExecutionNano": 125413586
+ },
+ {
+ "batchNumber": 5213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148461740,
+ "shortestRoundTripNano": 70835797,
+ "longestRoundTripNano": 174879614,
+ "averageApexExecutionNano": 58899032,
+ "shortestApexExecutionNano": 8801514,
+ "longestApexExecutionNano": 129724434
+ },
+ {
+ "batchNumber": 5214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150224522,
+ "shortestRoundTripNano": 88467368,
+ "longestRoundTripNano": 179557429,
+ "averageApexExecutionNano": 74748463,
+ "shortestApexExecutionNano": 13072519,
+ "longestApexExecutionNano": 126716550
+ },
+ {
+ "batchNumber": 5215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156197453,
+ "shortestRoundTripNano": 72545623,
+ "longestRoundTripNano": 191600957,
+ "averageApexExecutionNano": 59828622,
+ "shortestApexExecutionNano": 7959649,
+ "longestApexExecutionNano": 146943578
+ },
+ {
+ "batchNumber": 5216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152475264,
+ "shortestRoundTripNano": 69165690,
+ "longestRoundTripNano": 183618512,
+ "averageApexExecutionNano": 58418165,
+ "shortestApexExecutionNano": 9406152,
+ "longestApexExecutionNano": 121718374
+ },
+ {
+ "batchNumber": 5217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150507154,
+ "shortestRoundTripNano": 64246425,
+ "longestRoundTripNano": 201632117,
+ "averageApexExecutionNano": 69593555,
+ "shortestApexExecutionNano": 9408167,
+ "longestApexExecutionNano": 133065169
+ },
+ {
+ "batchNumber": 5218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161430721,
+ "shortestRoundTripNano": 66560537,
+ "longestRoundTripNano": 195715134,
+ "averageApexExecutionNano": 71468187,
+ "shortestApexExecutionNano": 10133173,
+ "longestApexExecutionNano": 131293124
+ },
+ {
+ "batchNumber": 5219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149646283,
+ "shortestRoundTripNano": 64017011,
+ "longestRoundTripNano": 177697009,
+ "averageApexExecutionNano": 56916702,
+ "shortestApexExecutionNano": 6750949,
+ "longestApexExecutionNano": 127180459
+ },
+ {
+ "batchNumber": 5220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148572880,
+ "shortestRoundTripNano": 70629096,
+ "longestRoundTripNano": 179864544,
+ "averageApexExecutionNano": 56892703,
+ "shortestApexExecutionNano": 8275937,
+ "longestApexExecutionNano": 130305269
+ },
+ {
+ "batchNumber": 5221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166773009,
+ "shortestRoundTripNano": 100779516,
+ "longestRoundTripNano": 193313032,
+ "averageApexExecutionNano": 72697493,
+ "shortestApexExecutionNano": 16013123,
+ "longestApexExecutionNano": 135184705
+ },
+ {
+ "batchNumber": 5222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130388083,
+ "shortestRoundTripNano": 58985507,
+ "longestRoundTripNano": 158794610,
+ "averageApexExecutionNano": 48602944,
+ "shortestApexExecutionNano": 8853426,
+ "longestApexExecutionNano": 114719939
+ },
+ {
+ "batchNumber": 5223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140640948,
+ "shortestRoundTripNano": 72655194,
+ "longestRoundTripNano": 171069931,
+ "averageApexExecutionNano": 55046397,
+ "shortestApexExecutionNano": 8015348,
+ "longestApexExecutionNano": 136643870
+ },
+ {
+ "batchNumber": 5224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142337588,
+ "shortestRoundTripNano": 80230408,
+ "longestRoundTripNano": 185129734,
+ "averageApexExecutionNano": 67441686,
+ "shortestApexExecutionNano": 6620714,
+ "longestApexExecutionNano": 106772265
+ },
+ {
+ "batchNumber": 5225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138546114,
+ "shortestRoundTripNano": 37911388,
+ "longestRoundTripNano": 171291666,
+ "averageApexExecutionNano": 69797983,
+ "shortestApexExecutionNano": 8632245,
+ "longestApexExecutionNano": 127757683
+ },
+ {
+ "batchNumber": 5226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144483224,
+ "shortestRoundTripNano": 63155225,
+ "longestRoundTripNano": 181833519,
+ "averageApexExecutionNano": 57394315,
+ "shortestApexExecutionNano": 7154752,
+ "longestApexExecutionNano": 121330867
+ },
+ {
+ "batchNumber": 5227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158981823,
+ "shortestRoundTripNano": 72387973,
+ "longestRoundTripNano": 198250135,
+ "averageApexExecutionNano": 66653760,
+ "shortestApexExecutionNano": 7282348,
+ "longestApexExecutionNano": 116758720
+ },
+ {
+ "batchNumber": 5228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146516970,
+ "shortestRoundTripNano": 52531384,
+ "longestRoundTripNano": 178026277,
+ "averageApexExecutionNano": 62129642,
+ "shortestApexExecutionNano": 7701195,
+ "longestApexExecutionNano": 121914055
+ },
+ {
+ "batchNumber": 5229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140496847,
+ "shortestRoundTripNano": 39181474,
+ "longestRoundTripNano": 174985663,
+ "averageApexExecutionNano": 39211278,
+ "shortestApexExecutionNano": 6317017,
+ "longestApexExecutionNano": 108770808
+ },
+ {
+ "batchNumber": 5230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138843176,
+ "shortestRoundTripNano": 42372058,
+ "longestRoundTripNano": 176383511,
+ "averageApexExecutionNano": 61406901,
+ "shortestApexExecutionNano": 9951440,
+ "longestApexExecutionNano": 130214054
+ },
+ {
+ "batchNumber": 5231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157479455,
+ "shortestRoundTripNano": 68667246,
+ "longestRoundTripNano": 192455712,
+ "averageApexExecutionNano": 43825811,
+ "shortestApexExecutionNano": 5800156,
+ "longestApexExecutionNano": 93051720
+ },
+ {
+ "batchNumber": 5232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159089179,
+ "shortestRoundTripNano": 68993226,
+ "longestRoundTripNano": 192826676,
+ "averageApexExecutionNano": 65761981,
+ "shortestApexExecutionNano": 9291431,
+ "longestApexExecutionNano": 129656777
+ },
+ {
+ "batchNumber": 5233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140843174,
+ "shortestRoundTripNano": 66416826,
+ "longestRoundTripNano": 170583198,
+ "averageApexExecutionNano": 54287791,
+ "shortestApexExecutionNano": 5590950,
+ "longestApexExecutionNano": 120907713
+ },
+ {
+ "batchNumber": 5234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154089615,
+ "shortestRoundTripNano": 72393298,
+ "longestRoundTripNano": 181667648,
+ "averageApexExecutionNano": 57419062,
+ "shortestApexExecutionNano": 7545232,
+ "longestApexExecutionNano": 119291391
+ },
+ {
+ "batchNumber": 5235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133009781,
+ "shortestRoundTripNano": 40616613,
+ "longestRoundTripNano": 168812816,
+ "averageApexExecutionNano": 67321357,
+ "shortestApexExecutionNano": 8198956,
+ "longestApexExecutionNano": 131551853
+ },
+ {
+ "batchNumber": 5236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136724855,
+ "shortestRoundTripNano": 62394431,
+ "longestRoundTripNano": 163165354,
+ "averageApexExecutionNano": 68102839,
+ "shortestApexExecutionNano": 10749003,
+ "longestApexExecutionNano": 124814393
+ },
+ {
+ "batchNumber": 5237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149449631,
+ "shortestRoundTripNano": 71219255,
+ "longestRoundTripNano": 199114775,
+ "averageApexExecutionNano": 65839488,
+ "shortestApexExecutionNano": 12306088,
+ "longestApexExecutionNano": 120810199
+ },
+ {
+ "batchNumber": 5238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159526557,
+ "shortestRoundTripNano": 91543856,
+ "longestRoundTripNano": 185542044,
+ "averageApexExecutionNano": 77713995,
+ "shortestApexExecutionNano": 11481173,
+ "longestApexExecutionNano": 140827533
+ },
+ {
+ "batchNumber": 5239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126934575,
+ "shortestRoundTripNano": 51454910,
+ "longestRoundTripNano": 154412489,
+ "averageApexExecutionNano": 49320602,
+ "shortestApexExecutionNano": 7364058,
+ "longestApexExecutionNano": 104539470
+ },
+ {
+ "batchNumber": 5240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148148476,
+ "shortestRoundTripNano": 53944631,
+ "longestRoundTripNano": 178310455,
+ "averageApexExecutionNano": 65940501,
+ "shortestApexExecutionNano": 8176807,
+ "longestApexExecutionNano": 126371510
+ },
+ {
+ "batchNumber": 5241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128694903,
+ "shortestRoundTripNano": 42079656,
+ "longestRoundTripNano": 153507177,
+ "averageApexExecutionNano": 55158092,
+ "shortestApexExecutionNano": 10629674,
+ "longestApexExecutionNano": 108166547
+ },
+ {
+ "batchNumber": 5242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118710556,
+ "shortestRoundTripNano": 55051716,
+ "longestRoundTripNano": 146801664,
+ "averageApexExecutionNano": 53027239,
+ "shortestApexExecutionNano": 9045947,
+ "longestApexExecutionNano": 113830332
+ },
+ {
+ "batchNumber": 5243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156561019,
+ "shortestRoundTripNano": 68517456,
+ "longestRoundTripNano": 183217971,
+ "averageApexExecutionNano": 68313940,
+ "shortestApexExecutionNano": 17834755,
+ "longestApexExecutionNano": 123579310
+ },
+ {
+ "batchNumber": 5244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132953433,
+ "shortestRoundTripNano": 57250363,
+ "longestRoundTripNano": 155025168,
+ "averageApexExecutionNano": 48244365,
+ "shortestApexExecutionNano": 7916321,
+ "longestApexExecutionNano": 98179587
+ },
+ {
+ "batchNumber": 5245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36720",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 194767402,
+ "shortestRoundTripNano": 54489592,
+ "longestRoundTripNano": 231030921,
+ "averageApexExecutionNano": 88033678,
+ "shortestApexExecutionNano": 5890080,
+ "longestApexExecutionNano": 173204648
+ },
+ {
+ "batchNumber": 5246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144428886,
+ "shortestRoundTripNano": 38095393,
+ "longestRoundTripNano": 174000897,
+ "averageApexExecutionNano": 61726026,
+ "shortestApexExecutionNano": 6914524,
+ "longestApexExecutionNano": 129364168
+ },
+ {
+ "batchNumber": 5247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153603544,
+ "shortestRoundTripNano": 62914942,
+ "longestRoundTripNano": 194288105,
+ "averageApexExecutionNano": 37307969,
+ "shortestApexExecutionNano": 5949023,
+ "longestApexExecutionNano": 114472906
+ },
+ {
+ "batchNumber": 5248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145239247,
+ "shortestRoundTripNano": 41130027,
+ "longestRoundTripNano": 182145666,
+ "averageApexExecutionNano": 58276356,
+ "shortestApexExecutionNano": 14315647,
+ "longestApexExecutionNano": 116221324
+ },
+ {
+ "batchNumber": 5249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142675349,
+ "shortestRoundTripNano": 76299173,
+ "longestRoundTripNano": 175234533,
+ "averageApexExecutionNano": 62699024,
+ "shortestApexExecutionNano": 8129315,
+ "longestApexExecutionNano": 127498661
+ },
+ {
+ "batchNumber": 5250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140236142,
+ "shortestRoundTripNano": 59561494,
+ "longestRoundTripNano": 169998836,
+ "averageApexExecutionNano": 67477827,
+ "shortestApexExecutionNano": 12624546,
+ "longestApexExecutionNano": 123345850
+ },
+ {
+ "batchNumber": 5251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157274591,
+ "shortestRoundTripNano": 71392594,
+ "longestRoundTripNano": 188892063,
+ "averageApexExecutionNano": 70508599,
+ "shortestApexExecutionNano": 14177749,
+ "longestApexExecutionNano": 119260610
+ },
+ {
+ "batchNumber": 5252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127367443,
+ "shortestRoundTripNano": 48683239,
+ "longestRoundTripNano": 154499994,
+ "averageApexExecutionNano": 54759564,
+ "shortestApexExecutionNano": 5927330,
+ "longestApexExecutionNano": 115503110
+ },
+ {
+ "batchNumber": 5253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148991149,
+ "shortestRoundTripNano": 56800681,
+ "longestRoundTripNano": 179090806,
+ "averageApexExecutionNano": 63593285,
+ "shortestApexExecutionNano": 20835485,
+ "longestApexExecutionNano": 110963084
+ },
+ {
+ "batchNumber": 5254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160967027,
+ "shortestRoundTripNano": 65449529,
+ "longestRoundTripNano": 196121741,
+ "averageApexExecutionNano": 69601499,
+ "shortestApexExecutionNano": 7617514,
+ "longestApexExecutionNano": 132213992
+ },
+ {
+ "batchNumber": 5255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143137132,
+ "shortestRoundTripNano": 29702379,
+ "longestRoundTripNano": 184038422,
+ "averageApexExecutionNano": 60975368,
+ "shortestApexExecutionNano": 11699578,
+ "longestApexExecutionNano": 111723863
+ },
+ {
+ "batchNumber": 5256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155055369,
+ "shortestRoundTripNano": 76779767,
+ "longestRoundTripNano": 182271686,
+ "averageApexExecutionNano": 65452649,
+ "shortestApexExecutionNano": 11233277,
+ "longestApexExecutionNano": 128033706
+ },
+ {
+ "batchNumber": 5257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153197307,
+ "shortestRoundTripNano": 57788286,
+ "longestRoundTripNano": 187404807,
+ "averageApexExecutionNano": 73471483,
+ "shortestApexExecutionNano": 10031173,
+ "longestApexExecutionNano": 117754338
+ },
+ {
+ "batchNumber": 5258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140280469,
+ "shortestRoundTripNano": 47714477,
+ "longestRoundTripNano": 167143138,
+ "averageApexExecutionNano": 52709396,
+ "shortestApexExecutionNano": 4713344,
+ "longestApexExecutionNano": 109148370
+ },
+ {
+ "batchNumber": 5259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145555924,
+ "shortestRoundTripNano": 82482348,
+ "longestRoundTripNano": 177109994,
+ "averageApexExecutionNano": 71570872,
+ "shortestApexExecutionNano": 13441001,
+ "longestApexExecutionNano": 125979459
+ },
+ {
+ "batchNumber": 5260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36726",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149739757,
+ "shortestRoundTripNano": 47054567,
+ "longestRoundTripNano": 179229217,
+ "averageApexExecutionNano": 64336864,
+ "shortestApexExecutionNano": 12849727,
+ "longestApexExecutionNano": 132576321
+ },
+ {
+ "batchNumber": 5261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134920152,
+ "shortestRoundTripNano": 61674201,
+ "longestRoundTripNano": 165295919,
+ "averageApexExecutionNano": 64930637,
+ "shortestApexExecutionNano": 9659189,
+ "longestApexExecutionNano": 125034797
+ },
+ {
+ "batchNumber": 5262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180420043,
+ "shortestRoundTripNano": 115605277,
+ "longestRoundTripNano": 231123715,
+ "averageApexExecutionNano": 67691211,
+ "shortestApexExecutionNano": 10436866,
+ "longestApexExecutionNano": 150309279
+ },
+ {
+ "batchNumber": 5263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147290510,
+ "shortestRoundTripNano": 59978963,
+ "longestRoundTripNano": 173349010,
+ "averageApexExecutionNano": 62753841,
+ "shortestApexExecutionNano": 8510003,
+ "longestApexExecutionNano": 127318222
+ },
+ {
+ "batchNumber": 5264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150508537,
+ "shortestRoundTripNano": 75598156,
+ "longestRoundTripNano": 184248529,
+ "averageApexExecutionNano": 57322829,
+ "shortestApexExecutionNano": 9184449,
+ "longestApexExecutionNano": 127561982
+ },
+ {
+ "batchNumber": 5265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143494007,
+ "shortestRoundTripNano": 69753763,
+ "longestRoundTripNano": 188670946,
+ "averageApexExecutionNano": 50611393,
+ "shortestApexExecutionNano": 8284233,
+ "longestApexExecutionNano": 136507794
+ },
+ {
+ "batchNumber": 5266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36728",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146747921,
+ "shortestRoundTripNano": 69364682,
+ "longestRoundTripNano": 175664588,
+ "averageApexExecutionNano": 53986529,
+ "shortestApexExecutionNano": 14596657,
+ "longestApexExecutionNano": 118966848
+ },
+ {
+ "batchNumber": 5267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126552998,
+ "shortestRoundTripNano": 59252153,
+ "longestRoundTripNano": 163559704,
+ "averageApexExecutionNano": 51677686,
+ "shortestApexExecutionNano": 7288716,
+ "longestApexExecutionNano": 121979738
+ },
+ {
+ "batchNumber": 5268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136205769,
+ "shortestRoundTripNano": 92292881,
+ "longestRoundTripNano": 155622419,
+ "averageApexExecutionNano": 47361300,
+ "shortestApexExecutionNano": 9130990,
+ "longestApexExecutionNano": 105790765
+ },
+ {
+ "batchNumber": 5269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174522592,
+ "shortestRoundTripNano": 68686864,
+ "longestRoundTripNano": 232661922,
+ "averageApexExecutionNano": 73245249,
+ "shortestApexExecutionNano": 7553313,
+ "longestApexExecutionNano": 148052658
+ },
+ {
+ "batchNumber": 5270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178176675,
+ "shortestRoundTripNano": 52148561,
+ "longestRoundTripNano": 207790330,
+ "averageApexExecutionNano": 91563323,
+ "shortestApexExecutionNano": 17906642,
+ "longestApexExecutionNano": 166123394
+ },
+ {
+ "batchNumber": 5271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129388654,
+ "shortestRoundTripNano": 62545869,
+ "longestRoundTripNano": 162099165,
+ "averageApexExecutionNano": 63314384,
+ "shortestApexExecutionNano": 10182308,
+ "longestApexExecutionNano": 113122061
+ },
+ {
+ "batchNumber": 5272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139770518,
+ "shortestRoundTripNano": 63548638,
+ "longestRoundTripNano": 165228245,
+ "averageApexExecutionNano": 50005302,
+ "shortestApexExecutionNano": 9513254,
+ "longestApexExecutionNano": 106912207
+ },
+ {
+ "batchNumber": 5273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179888043,
+ "shortestRoundTripNano": 55143587,
+ "longestRoundTripNano": 215002169,
+ "averageApexExecutionNano": 63739067,
+ "shortestApexExecutionNano": 12934459,
+ "longestApexExecutionNano": 146049717
+ },
+ {
+ "batchNumber": 5274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137476101,
+ "shortestRoundTripNano": 54428656,
+ "longestRoundTripNano": 165059286,
+ "averageApexExecutionNano": 61812201,
+ "shortestApexExecutionNano": 7402295,
+ "longestApexExecutionNano": 120605408
+ },
+ {
+ "batchNumber": 5275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160320154,
+ "shortestRoundTripNano": 51203494,
+ "longestRoundTripNano": 193051741,
+ "averageApexExecutionNano": 66620694,
+ "shortestApexExecutionNano": 7879987,
+ "longestApexExecutionNano": 131022674
+ },
+ {
+ "batchNumber": 5276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36734",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149780400,
+ "shortestRoundTripNano": 74252075,
+ "longestRoundTripNano": 179017327,
+ "averageApexExecutionNano": 66802883,
+ "shortestApexExecutionNano": 16280819,
+ "longestApexExecutionNano": 129390266
+ },
+ {
+ "batchNumber": 5277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154575173,
+ "shortestRoundTripNano": 60437235,
+ "longestRoundTripNano": 199511936,
+ "averageApexExecutionNano": 55051309,
+ "shortestApexExecutionNano": 6679362,
+ "longestApexExecutionNano": 137645678
+ },
+ {
+ "batchNumber": 5278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145841452,
+ "shortestRoundTripNano": 47525947,
+ "longestRoundTripNano": 178049564,
+ "averageApexExecutionNano": 72967229,
+ "shortestApexExecutionNano": 8171573,
+ "longestApexExecutionNano": 136411953
+ },
+ {
+ "batchNumber": 5279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154596413,
+ "shortestRoundTripNano": 74079427,
+ "longestRoundTripNano": 194239377,
+ "averageApexExecutionNano": 61389369,
+ "shortestApexExecutionNano": 6979223,
+ "longestApexExecutionNano": 148355097
+ },
+ {
+ "batchNumber": 5280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129838569,
+ "shortestRoundTripNano": 25043241,
+ "longestRoundTripNano": 162882670,
+ "averageApexExecutionNano": 49922578,
+ "shortestApexExecutionNano": 8204385,
+ "longestApexExecutionNano": 114404352
+ },
+ {
+ "batchNumber": 5281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176505151,
+ "shortestRoundTripNano": 67736476,
+ "longestRoundTripNano": 205356839,
+ "averageApexExecutionNano": 58398550,
+ "shortestApexExecutionNano": 7931708,
+ "longestApexExecutionNano": 123387142
+ },
+ {
+ "batchNumber": 5282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136280368,
+ "shortestRoundTripNano": 68823926,
+ "longestRoundTripNano": 164972951,
+ "averageApexExecutionNano": 61113976,
+ "shortestApexExecutionNano": 7480439,
+ "longestApexExecutionNano": 125091129
+ },
+ {
+ "batchNumber": 5283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150159411,
+ "shortestRoundTripNano": 62303835,
+ "longestRoundTripNano": 177561993,
+ "averageApexExecutionNano": 56528573,
+ "shortestApexExecutionNano": 8600308,
+ "longestApexExecutionNano": 122780681
+ },
+ {
+ "batchNumber": 5284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156193971,
+ "shortestRoundTripNano": 69337502,
+ "longestRoundTripNano": 188601403,
+ "averageApexExecutionNano": 57215302,
+ "shortestApexExecutionNano": 6819758,
+ "longestApexExecutionNano": 116717449
+ },
+ {
+ "batchNumber": 5285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143956577,
+ "shortestRoundTripNano": 51088964,
+ "longestRoundTripNano": 175766631,
+ "averageApexExecutionNano": 56019870,
+ "shortestApexExecutionNano": 7219269,
+ "longestApexExecutionNano": 112582540
+ },
+ {
+ "batchNumber": 5286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146936268,
+ "shortestRoundTripNano": 73649386,
+ "longestRoundTripNano": 173628132,
+ "averageApexExecutionNano": 66196773,
+ "shortestApexExecutionNano": 15349592,
+ "longestApexExecutionNano": 117604556
+ },
+ {
+ "batchNumber": 5287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163202827,
+ "shortestRoundTripNano": 70370878,
+ "longestRoundTripNano": 195316751,
+ "averageApexExecutionNano": 63650522,
+ "shortestApexExecutionNano": 8433976,
+ "longestApexExecutionNano": 118437282
+ },
+ {
+ "batchNumber": 5288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160297877,
+ "shortestRoundTripNano": 43461881,
+ "longestRoundTripNano": 200609830,
+ "averageApexExecutionNano": 69052496,
+ "shortestApexExecutionNano": 9179987,
+ "longestApexExecutionNano": 152765865
+ },
+ {
+ "batchNumber": 5289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138950523,
+ "shortestRoundTripNano": 60464735,
+ "longestRoundTripNano": 163806411,
+ "averageApexExecutionNano": 63619728,
+ "shortestApexExecutionNano": 8614522,
+ "longestApexExecutionNano": 121809536
+ },
+ {
+ "batchNumber": 5290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144924803,
+ "shortestRoundTripNano": 51765290,
+ "longestRoundTripNano": 184583931,
+ "averageApexExecutionNano": 56272649,
+ "shortestApexExecutionNano": 5409436,
+ "longestApexExecutionNano": 103733569
+ },
+ {
+ "batchNumber": 5291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154017925,
+ "shortestRoundTripNano": 74784219,
+ "longestRoundTripNano": 183631913,
+ "averageApexExecutionNano": 65468060,
+ "shortestApexExecutionNano": 10248258,
+ "longestApexExecutionNano": 129916345
+ },
+ {
+ "batchNumber": 5292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156407303,
+ "shortestRoundTripNano": 61277227,
+ "longestRoundTripNano": 194024560,
+ "averageApexExecutionNano": 60266404,
+ "shortestApexExecutionNano": 9773597,
+ "longestApexExecutionNano": 115545878
+ },
+ {
+ "batchNumber": 5293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159999711,
+ "shortestRoundTripNano": 41024781,
+ "longestRoundTripNano": 184277465,
+ "averageApexExecutionNano": 56927271,
+ "shortestApexExecutionNano": 7414496,
+ "longestApexExecutionNano": 135269552
+ },
+ {
+ "batchNumber": 5294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130280073,
+ "shortestRoundTripNano": 60228091,
+ "longestRoundTripNano": 164240482,
+ "averageApexExecutionNano": 47989934,
+ "shortestApexExecutionNano": 8861807,
+ "longestApexExecutionNano": 119170158
+ },
+ {
+ "batchNumber": 5295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166902965,
+ "shortestRoundTripNano": 75971572,
+ "longestRoundTripNano": 193557936,
+ "averageApexExecutionNano": 72866623,
+ "shortestApexExecutionNano": 8771895,
+ "longestApexExecutionNano": 131401857
+ },
+ {
+ "batchNumber": 5296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142724703,
+ "shortestRoundTripNano": 72918115,
+ "longestRoundTripNano": 182184691,
+ "averageApexExecutionNano": 59254060,
+ "shortestApexExecutionNano": 7525491,
+ "longestApexExecutionNano": 135403662
+ },
+ {
+ "batchNumber": 5297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159804239,
+ "shortestRoundTripNano": 61244849,
+ "longestRoundTripNano": 190693097,
+ "averageApexExecutionNano": 65397982,
+ "shortestApexExecutionNano": 6354671,
+ "longestApexExecutionNano": 143175994
+ },
+ {
+ "batchNumber": 5298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137741448,
+ "shortestRoundTripNano": 79818907,
+ "longestRoundTripNano": 174294216,
+ "averageApexExecutionNano": 57449881,
+ "shortestApexExecutionNano": 6768400,
+ "longestApexExecutionNano": 134590592
+ },
+ {
+ "batchNumber": 5299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149477917,
+ "shortestRoundTripNano": 72876512,
+ "longestRoundTripNano": 177961519,
+ "averageApexExecutionNano": 63858574,
+ "shortestApexExecutionNano": 11711545,
+ "longestApexExecutionNano": 126076899
+ },
+ {
+ "batchNumber": 5300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149280516,
+ "shortestRoundTripNano": 58255660,
+ "longestRoundTripNano": 175953166,
+ "averageApexExecutionNano": 55792128,
+ "shortestApexExecutionNano": 6834164,
+ "longestApexExecutionNano": 126560383
+ },
+ {
+ "batchNumber": 5301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162195059,
+ "shortestRoundTripNano": 68839102,
+ "longestRoundTripNano": 197819023,
+ "averageApexExecutionNano": 60286926,
+ "shortestApexExecutionNano": 9242429,
+ "longestApexExecutionNano": 114382465
+ },
+ {
+ "batchNumber": 5302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36744",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160385373,
+ "shortestRoundTripNano": 46454201,
+ "longestRoundTripNano": 195120429,
+ "averageApexExecutionNano": 73057508,
+ "shortestApexExecutionNano": 10890230,
+ "longestApexExecutionNano": 161959337
+ },
+ {
+ "batchNumber": 5303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137016834,
+ "shortestRoundTripNano": 50149951,
+ "longestRoundTripNano": 173313835,
+ "averageApexExecutionNano": 61192804,
+ "shortestApexExecutionNano": 9184931,
+ "longestApexExecutionNano": 129832809
+ },
+ {
+ "batchNumber": 5304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159685873,
+ "shortestRoundTripNano": 57502620,
+ "longestRoundTripNano": 201075090,
+ "averageApexExecutionNano": 74986780,
+ "shortestApexExecutionNano": 6019436,
+ "longestApexExecutionNano": 154719405
+ },
+ {
+ "batchNumber": 5305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158356911,
+ "shortestRoundTripNano": 87900268,
+ "longestRoundTripNano": 182743480,
+ "averageApexExecutionNano": 63472275,
+ "shortestApexExecutionNano": 9142884,
+ "longestApexExecutionNano": 134020284
+ },
+ {
+ "batchNumber": 5306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152799046,
+ "shortestRoundTripNano": 81947113,
+ "longestRoundTripNano": 176406685,
+ "averageApexExecutionNano": 77525685,
+ "shortestApexExecutionNano": 37191178,
+ "longestApexExecutionNano": 124364745
+ },
+ {
+ "batchNumber": 5307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149288400,
+ "shortestRoundTripNano": 71574027,
+ "longestRoundTripNano": 178088042,
+ "averageApexExecutionNano": 70647017,
+ "shortestApexExecutionNano": 10781218,
+ "longestApexExecutionNano": 131648414
+ },
+ {
+ "batchNumber": 5308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131196702,
+ "shortestRoundTripNano": 66160354,
+ "longestRoundTripNano": 162116561,
+ "averageApexExecutionNano": 39318128,
+ "shortestApexExecutionNano": 6032423,
+ "longestApexExecutionNano": 108850102
+ },
+ {
+ "batchNumber": 5309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165534932,
+ "shortestRoundTripNano": 58295819,
+ "longestRoundTripNano": 197163484,
+ "averageApexExecutionNano": 82719476,
+ "shortestApexExecutionNano": 13869570,
+ "longestApexExecutionNano": 143776626
+ },
+ {
+ "batchNumber": 5310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160358010,
+ "shortestRoundTripNano": 54452705,
+ "longestRoundTripNano": 187638627,
+ "averageApexExecutionNano": 73743040,
+ "shortestApexExecutionNano": 10197249,
+ "longestApexExecutionNano": 139868703
+ },
+ {
+ "batchNumber": 5311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146393232,
+ "shortestRoundTripNano": 68095462,
+ "longestRoundTripNano": 181344338,
+ "averageApexExecutionNano": 48954527,
+ "shortestApexExecutionNano": 9169996,
+ "longestApexExecutionNano": 137063421
+ },
+ {
+ "batchNumber": 5312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150685837,
+ "shortestRoundTripNano": 39059926,
+ "longestRoundTripNano": 187224398,
+ "averageApexExecutionNano": 78253991,
+ "shortestApexExecutionNano": 15793404,
+ "longestApexExecutionNano": 150087723
+ },
+ {
+ "batchNumber": 5313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149321436,
+ "shortestRoundTripNano": 58115297,
+ "longestRoundTripNano": 189065168,
+ "averageApexExecutionNano": 47509470,
+ "shortestApexExecutionNano": 7753485,
+ "longestApexExecutionNano": 105580207
+ },
+ {
+ "batchNumber": 5314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122651958,
+ "shortestRoundTripNano": 41029368,
+ "longestRoundTripNano": 150398023,
+ "averageApexExecutionNano": 47208809,
+ "shortestApexExecutionNano": 8741607,
+ "longestApexExecutionNano": 91199838
+ },
+ {
+ "batchNumber": 5315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136247663,
+ "shortestRoundTripNano": 67353732,
+ "longestRoundTripNano": 166385244,
+ "averageApexExecutionNano": 50377106,
+ "shortestApexExecutionNano": 10726367,
+ "longestApexExecutionNano": 114760363
+ },
+ {
+ "batchNumber": 5316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147178466,
+ "shortestRoundTripNano": 76379759,
+ "longestRoundTripNano": 171891170,
+ "averageApexExecutionNano": 64526450,
+ "shortestApexExecutionNano": 10187994,
+ "longestApexExecutionNano": 131793789
+ },
+ {
+ "batchNumber": 5317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139756118,
+ "shortestRoundTripNano": 56459514,
+ "longestRoundTripNano": 169946938,
+ "averageApexExecutionNano": 42752641,
+ "shortestApexExecutionNano": 8372346,
+ "longestApexExecutionNano": 101081073
+ },
+ {
+ "batchNumber": 5318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143042272,
+ "shortestRoundTripNano": 89650380,
+ "longestRoundTripNano": 163517549,
+ "averageApexExecutionNano": 60612332,
+ "shortestApexExecutionNano": 9576939,
+ "longestApexExecutionNano": 112449540
+ },
+ {
+ "batchNumber": 5319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143336747,
+ "shortestRoundTripNano": 62646292,
+ "longestRoundTripNano": 180227389,
+ "averageApexExecutionNano": 49805823,
+ "shortestApexExecutionNano": 6573617,
+ "longestApexExecutionNano": 114319217
+ },
+ {
+ "batchNumber": 5320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36752",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140967622,
+ "shortestRoundTripNano": 75966069,
+ "longestRoundTripNano": 165691964,
+ "averageApexExecutionNano": 74139929,
+ "shortestApexExecutionNano": 10636357,
+ "longestApexExecutionNano": 131364725
+ },
+ {
+ "batchNumber": 5321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36752",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132515521,
+ "shortestRoundTripNano": 65134312,
+ "longestRoundTripNano": 164815459,
+ "averageApexExecutionNano": 56063766,
+ "shortestApexExecutionNano": 17238759,
+ "longestApexExecutionNano": 111377705
+ },
+ {
+ "batchNumber": 5322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36752",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158176081,
+ "shortestRoundTripNano": 56487073,
+ "longestRoundTripNano": 183856759,
+ "averageApexExecutionNano": 49840420,
+ "shortestApexExecutionNano": 7039341,
+ "longestApexExecutionNano": 121704769
+ },
+ {
+ "batchNumber": 5323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36752",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 219299470,
+ "shortestRoundTripNano": 72538707,
+ "longestRoundTripNano": 267854481,
+ "averageApexExecutionNano": 111909205,
+ "shortestApexExecutionNano": 6599466,
+ "longestApexExecutionNano": 225315557
+ },
+ {
+ "batchNumber": 5324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183186427,
+ "shortestRoundTripNano": 77991710,
+ "longestRoundTripNano": 230539574,
+ "averageApexExecutionNano": 69316052,
+ "shortestApexExecutionNano": 17190455,
+ "longestApexExecutionNano": 129793528
+ },
+ {
+ "batchNumber": 5325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139299842,
+ "shortestRoundTripNano": 63357790,
+ "longestRoundTripNano": 173545769,
+ "averageApexExecutionNano": 48927965,
+ "shortestApexExecutionNano": 7770749,
+ "longestApexExecutionNano": 121890354
+ },
+ {
+ "batchNumber": 5326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175387150,
+ "shortestRoundTripNano": 74719720,
+ "longestRoundTripNano": 201929247,
+ "averageApexExecutionNano": 71864557,
+ "shortestApexExecutionNano": 7827180,
+ "longestApexExecutionNano": 144730078
+ },
+ {
+ "batchNumber": 5327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127666272,
+ "shortestRoundTripNano": 54631274,
+ "longestRoundTripNano": 157337790,
+ "averageApexExecutionNano": 50811501,
+ "shortestApexExecutionNano": 7105406,
+ "longestApexExecutionNano": 111293775
+ },
+ {
+ "batchNumber": 5328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174393630,
+ "shortestRoundTripNano": 80297446,
+ "longestRoundTripNano": 209669028,
+ "averageApexExecutionNano": 74707659,
+ "shortestApexExecutionNano": 5780477,
+ "longestApexExecutionNano": 136825799
+ },
+ {
+ "batchNumber": 5329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125350504,
+ "shortestRoundTripNano": 39712095,
+ "longestRoundTripNano": 150768543,
+ "averageApexExecutionNano": 49733110,
+ "shortestApexExecutionNano": 9981550,
+ "longestApexExecutionNano": 103874684
+ },
+ {
+ "batchNumber": 5330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126590756,
+ "shortestRoundTripNano": 56689267,
+ "longestRoundTripNano": 152912435,
+ "averageApexExecutionNano": 50755603,
+ "shortestApexExecutionNano": 5121898,
+ "longestApexExecutionNano": 106857236
+ },
+ {
+ "batchNumber": 5331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132129178,
+ "shortestRoundTripNano": 54665464,
+ "longestRoundTripNano": 165033355,
+ "averageApexExecutionNano": 46025501,
+ "shortestApexExecutionNano": 8566319,
+ "longestApexExecutionNano": 131642502
+ },
+ {
+ "batchNumber": 5332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134203770,
+ "shortestRoundTripNano": 65434567,
+ "longestRoundTripNano": 163563940,
+ "averageApexExecutionNano": 56613795,
+ "shortestApexExecutionNano": 7521267,
+ "longestApexExecutionNano": 115184678
+ },
+ {
+ "batchNumber": 5333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136013879,
+ "shortestRoundTripNano": 64200318,
+ "longestRoundTripNano": 163264126,
+ "averageApexExecutionNano": 64424279,
+ "shortestApexExecutionNano": 7762599,
+ "longestApexExecutionNano": 119818502
+ },
+ {
+ "batchNumber": 5334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141253613,
+ "shortestRoundTripNano": 53986729,
+ "longestRoundTripNano": 174900157,
+ "averageApexExecutionNano": 54062366,
+ "shortestApexExecutionNano": 6384643,
+ "longestApexExecutionNano": 131202878
+ },
+ {
+ "batchNumber": 5335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160026631,
+ "shortestRoundTripNano": 62290848,
+ "longestRoundTripNano": 192617810,
+ "averageApexExecutionNano": 70842681,
+ "shortestApexExecutionNano": 12373603,
+ "longestApexExecutionNano": 137657826
+ },
+ {
+ "batchNumber": 5336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143796996,
+ "shortestRoundTripNano": 84653097,
+ "longestRoundTripNano": 169960046,
+ "averageApexExecutionNano": 43042862,
+ "shortestApexExecutionNano": 7268310,
+ "longestApexExecutionNano": 96676339
+ },
+ {
+ "batchNumber": 5337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144376591,
+ "shortestRoundTripNano": 51833582,
+ "longestRoundTripNano": 168152145,
+ "averageApexExecutionNano": 57432089,
+ "shortestApexExecutionNano": 9020721,
+ "longestApexExecutionNano": 112707389
+ },
+ {
+ "batchNumber": 5338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135701714,
+ "shortestRoundTripNano": 50434650,
+ "longestRoundTripNano": 168543249,
+ "averageApexExecutionNano": 60551071,
+ "shortestApexExecutionNano": 7843644,
+ "longestApexExecutionNano": 124304327
+ },
+ {
+ "batchNumber": 5339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144485160,
+ "shortestRoundTripNano": 66886288,
+ "longestRoundTripNano": 172180936,
+ "averageApexExecutionNano": 80186603,
+ "shortestApexExecutionNano": 8437931,
+ "longestApexExecutionNano": 134264136
+ },
+ {
+ "batchNumber": 5340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139947959,
+ "shortestRoundTripNano": 68911789,
+ "longestRoundTripNano": 174031198,
+ "averageApexExecutionNano": 53088450,
+ "shortestApexExecutionNano": 8737270,
+ "longestApexExecutionNano": 117514901
+ },
+ {
+ "batchNumber": 5341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133055279,
+ "shortestRoundTripNano": 64653952,
+ "longestRoundTripNano": 164602973,
+ "averageApexExecutionNano": 58252151,
+ "shortestApexExecutionNano": 13930184,
+ "longestApexExecutionNano": 121945582
+ },
+ {
+ "batchNumber": 5342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142945683,
+ "shortestRoundTripNano": 60599854,
+ "longestRoundTripNano": 173724109,
+ "averageApexExecutionNano": 38937486,
+ "shortestApexExecutionNano": 9051099,
+ "longestApexExecutionNano": 108121963
+ },
+ {
+ "batchNumber": 5343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127957157,
+ "shortestRoundTripNano": 21034048,
+ "longestRoundTripNano": 156508452,
+ "averageApexExecutionNano": 50075972,
+ "shortestApexExecutionNano": 5949091,
+ "longestApexExecutionNano": 111048221
+ },
+ {
+ "batchNumber": 5344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145154787,
+ "shortestRoundTripNano": 51382142,
+ "longestRoundTripNano": 175479667,
+ "averageApexExecutionNano": 55272924,
+ "shortestApexExecutionNano": 7695405,
+ "longestApexExecutionNano": 112796499
+ },
+ {
+ "batchNumber": 5345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152048203,
+ "shortestRoundTripNano": 67982121,
+ "longestRoundTripNano": 182539193,
+ "averageApexExecutionNano": 62021767,
+ "shortestApexExecutionNano": 7514173,
+ "longestApexExecutionNano": 130173563
+ },
+ {
+ "batchNumber": 5346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139004706,
+ "shortestRoundTripNano": 57247309,
+ "longestRoundTripNano": 180592298,
+ "averageApexExecutionNano": 52254212,
+ "shortestApexExecutionNano": 8517141,
+ "longestApexExecutionNano": 114166611
+ },
+ {
+ "batchNumber": 5347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141727177,
+ "shortestRoundTripNano": 47555253,
+ "longestRoundTripNano": 181241416,
+ "averageApexExecutionNano": 67422210,
+ "shortestApexExecutionNano": 11623218,
+ "longestApexExecutionNano": 139687371
+ },
+ {
+ "batchNumber": 5348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138264390,
+ "shortestRoundTripNano": 67479362,
+ "longestRoundTripNano": 174522674,
+ "averageApexExecutionNano": 60996881,
+ "shortestApexExecutionNano": 7217853,
+ "longestApexExecutionNano": 121759495
+ },
+ {
+ "batchNumber": 5349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131228694,
+ "shortestRoundTripNano": 70145135,
+ "longestRoundTripNano": 161370014,
+ "averageApexExecutionNano": 56927600,
+ "shortestApexExecutionNano": 7927543,
+ "longestApexExecutionNano": 119681643
+ },
+ {
+ "batchNumber": 5350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136703425,
+ "shortestRoundTripNano": 66962295,
+ "longestRoundTripNano": 169328032,
+ "averageApexExecutionNano": 34436571,
+ "shortestApexExecutionNano": 7895258,
+ "longestApexExecutionNano": 110699845
+ },
+ {
+ "batchNumber": 5351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123139212,
+ "shortestRoundTripNano": 45263519,
+ "longestRoundTripNano": 151512771,
+ "averageApexExecutionNano": 47180680,
+ "shortestApexExecutionNano": 7316392,
+ "longestApexExecutionNano": 103122382
+ },
+ {
+ "batchNumber": 5352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140957375,
+ "shortestRoundTripNano": 79124450,
+ "longestRoundTripNano": 165035136,
+ "averageApexExecutionNano": 58244199,
+ "shortestApexExecutionNano": 8213474,
+ "longestApexExecutionNano": 112753057
+ },
+ {
+ "batchNumber": 5353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137724879,
+ "shortestRoundTripNano": 68904583,
+ "longestRoundTripNano": 173603455,
+ "averageApexExecutionNano": 62262148,
+ "shortestApexExecutionNano": 6936020,
+ "longestApexExecutionNano": 104240607
+ },
+ {
+ "batchNumber": 5354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137303949,
+ "shortestRoundTripNano": 41273840,
+ "longestRoundTripNano": 168229704,
+ "averageApexExecutionNano": 52232096,
+ "shortestApexExecutionNano": 5091219,
+ "longestApexExecutionNano": 114065729
+ },
+ {
+ "batchNumber": 5355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160225349,
+ "shortestRoundTripNano": 68896022,
+ "longestRoundTripNano": 185113692,
+ "averageApexExecutionNano": 71427906,
+ "shortestApexExecutionNano": 8067536,
+ "longestApexExecutionNano": 140996662
+ },
+ {
+ "batchNumber": 5356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141391315,
+ "shortestRoundTripNano": 53736295,
+ "longestRoundTripNano": 171376282,
+ "averageApexExecutionNano": 62696361,
+ "shortestApexExecutionNano": 6519308,
+ "longestApexExecutionNano": 128528546
+ },
+ {
+ "batchNumber": 5357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141405213,
+ "shortestRoundTripNano": 65176296,
+ "longestRoundTripNano": 166603846,
+ "averageApexExecutionNano": 66514754,
+ "shortestApexExecutionNano": 11694296,
+ "longestApexExecutionNano": 126784943
+ },
+ {
+ "batchNumber": 5358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135320626,
+ "shortestRoundTripNano": 67239623,
+ "longestRoundTripNano": 161136535,
+ "averageApexExecutionNano": 48206796,
+ "shortestApexExecutionNano": 8030201,
+ "longestApexExecutionNano": 116584660
+ },
+ {
+ "batchNumber": 5359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36766",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129364327,
+ "shortestRoundTripNano": 53331290,
+ "longestRoundTripNano": 161844823,
+ "averageApexExecutionNano": 49283580,
+ "shortestApexExecutionNano": 8919141,
+ "longestApexExecutionNano": 113588656
+ },
+ {
+ "batchNumber": 5360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122700743,
+ "shortestRoundTripNano": 56480936,
+ "longestRoundTripNano": 154769211,
+ "averageApexExecutionNano": 38571259,
+ "shortestApexExecutionNano": 6202763,
+ "longestApexExecutionNano": 110987172
+ },
+ {
+ "batchNumber": 5361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140413212,
+ "shortestRoundTripNano": 71629894,
+ "longestRoundTripNano": 178589178,
+ "averageApexExecutionNano": 49667914,
+ "shortestApexExecutionNano": 6534586,
+ "longestApexExecutionNano": 135117634
+ },
+ {
+ "batchNumber": 5362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167639035,
+ "shortestRoundTripNano": 59936599,
+ "longestRoundTripNano": 203707757,
+ "averageApexExecutionNano": 66468289,
+ "shortestApexExecutionNano": 9315188,
+ "longestApexExecutionNano": 160676406
+ },
+ {
+ "batchNumber": 5363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171898872,
+ "shortestRoundTripNano": 86661592,
+ "longestRoundTripNano": 219591876,
+ "averageApexExecutionNano": 69894095,
+ "shortestApexExecutionNano": 9855119,
+ "longestApexExecutionNano": 119234474
+ },
+ {
+ "batchNumber": 5364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133166454,
+ "shortestRoundTripNano": 61195067,
+ "longestRoundTripNano": 162288194,
+ "averageApexExecutionNano": 50821817,
+ "shortestApexExecutionNano": 5513663,
+ "longestApexExecutionNano": 107161007
+ },
+ {
+ "batchNumber": 5365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148700513,
+ "shortestRoundTripNano": 64377054,
+ "longestRoundTripNano": 176247485,
+ "averageApexExecutionNano": 75459844,
+ "shortestApexExecutionNano": 17267951,
+ "longestApexExecutionNano": 136161424
+ },
+ {
+ "batchNumber": 5366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150138317,
+ "shortestRoundTripNano": 61865213,
+ "longestRoundTripNano": 180178570,
+ "averageApexExecutionNano": 58056938,
+ "shortestApexExecutionNano": 7859874,
+ "longestApexExecutionNano": 121762933
+ },
+ {
+ "batchNumber": 5367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132833639,
+ "shortestRoundTripNano": 39956567,
+ "longestRoundTripNano": 166750783,
+ "averageApexExecutionNano": 61792425,
+ "shortestApexExecutionNano": 8478780,
+ "longestApexExecutionNano": 125117806
+ },
+ {
+ "batchNumber": 5368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141941921,
+ "shortestRoundTripNano": 49835460,
+ "longestRoundTripNano": 164512213,
+ "averageApexExecutionNano": 44825035,
+ "shortestApexExecutionNano": 5601274,
+ "longestApexExecutionNano": 109196446
+ },
+ {
+ "batchNumber": 5369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135174399,
+ "shortestRoundTripNano": 64988591,
+ "longestRoundTripNano": 164644879,
+ "averageApexExecutionNano": 60686602,
+ "shortestApexExecutionNano": 7928148,
+ "longestApexExecutionNano": 108659221
+ },
+ {
+ "batchNumber": 5370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132707565,
+ "shortestRoundTripNano": 48445706,
+ "longestRoundTripNano": 170188440,
+ "averageApexExecutionNano": 59418277,
+ "shortestApexExecutionNano": 8867238,
+ "longestApexExecutionNano": 119059569
+ },
+ {
+ "batchNumber": 5371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142288627,
+ "shortestRoundTripNano": 69210978,
+ "longestRoundTripNano": 181587181,
+ "averageApexExecutionNano": 53660288,
+ "shortestApexExecutionNano": 8352302,
+ "longestApexExecutionNano": 133116060
+ },
+ {
+ "batchNumber": 5372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129628231,
+ "shortestRoundTripNano": 48275593,
+ "longestRoundTripNano": 157181449,
+ "averageApexExecutionNano": 51081170,
+ "shortestApexExecutionNano": 9001795,
+ "longestApexExecutionNano": 99402137
+ },
+ {
+ "batchNumber": 5373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163170426,
+ "shortestRoundTripNano": 60759194,
+ "longestRoundTripNano": 189975189,
+ "averageApexExecutionNano": 80264654,
+ "shortestApexExecutionNano": 11985661,
+ "longestApexExecutionNano": 141580352
+ },
+ {
+ "batchNumber": 5374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147060062,
+ "shortestRoundTripNano": 61076669,
+ "longestRoundTripNano": 183302226,
+ "averageApexExecutionNano": 52091836,
+ "shortestApexExecutionNano": 8462026,
+ "longestApexExecutionNano": 122071486
+ },
+ {
+ "batchNumber": 5375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138788235,
+ "shortestRoundTripNano": 86807239,
+ "longestRoundTripNano": 166634332,
+ "averageApexExecutionNano": 68155044,
+ "shortestApexExecutionNano": 11041654,
+ "longestApexExecutionNano": 110758722
+ },
+ {
+ "batchNumber": 5376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141603749,
+ "shortestRoundTripNano": 66137942,
+ "longestRoundTripNano": 167336573,
+ "averageApexExecutionNano": 53192405,
+ "shortestApexExecutionNano": 8546397,
+ "longestApexExecutionNano": 120711026
+ },
+ {
+ "batchNumber": 5377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120322131,
+ "shortestRoundTripNano": 55836434,
+ "longestRoundTripNano": 151220465,
+ "averageApexExecutionNano": 45688652,
+ "shortestApexExecutionNano": 6727284,
+ "longestApexExecutionNano": 118067350
+ },
+ {
+ "batchNumber": 5378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158846561,
+ "shortestRoundTripNano": 71788156,
+ "longestRoundTripNano": 191410198,
+ "averageApexExecutionNano": 65471591,
+ "shortestApexExecutionNano": 20940158,
+ "longestApexExecutionNano": 122748708
+ },
+ {
+ "batchNumber": 5379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157444701,
+ "shortestRoundTripNano": 68346148,
+ "longestRoundTripNano": 181546279,
+ "averageApexExecutionNano": 69532783,
+ "shortestApexExecutionNano": 12504962,
+ "longestApexExecutionNano": 134632149
+ },
+ {
+ "batchNumber": 5380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 206963793,
+ "shortestRoundTripNano": 98064227,
+ "longestRoundTripNano": 236280099,
+ "averageApexExecutionNano": 59531881,
+ "shortestApexExecutionNano": 12677108,
+ "longestApexExecutionNano": 160653998
+ },
+ {
+ "batchNumber": 5381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141585381,
+ "shortestRoundTripNano": 58197158,
+ "longestRoundTripNano": 172177446,
+ "averageApexExecutionNano": 60953497,
+ "shortestApexExecutionNano": 8554933,
+ "longestApexExecutionNano": 110000368
+ },
+ {
+ "batchNumber": 5382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136578163,
+ "shortestRoundTripNano": 56117638,
+ "longestRoundTripNano": 159036530,
+ "averageApexExecutionNano": 57927027,
+ "shortestApexExecutionNano": 13219919,
+ "longestApexExecutionNano": 117920054
+ },
+ {
+ "batchNumber": 5383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156213950,
+ "shortestRoundTripNano": 54183327,
+ "longestRoundTripNano": 186013908,
+ "averageApexExecutionNano": 71534400,
+ "shortestApexExecutionNano": 9014946,
+ "longestApexExecutionNano": 141407797
+ },
+ {
+ "batchNumber": 5384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149630103,
+ "shortestRoundTripNano": 52015135,
+ "longestRoundTripNano": 174347670,
+ "averageApexExecutionNano": 71255590,
+ "shortestApexExecutionNano": 10110257,
+ "longestApexExecutionNano": 124346809
+ },
+ {
+ "batchNumber": 5385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139082595,
+ "shortestRoundTripNano": 69807505,
+ "longestRoundTripNano": 166634696,
+ "averageApexExecutionNano": 48487138,
+ "shortestApexExecutionNano": 7156752,
+ "longestApexExecutionNano": 113584403
+ },
+ {
+ "batchNumber": 5386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160695067,
+ "shortestRoundTripNano": 76054016,
+ "longestRoundTripNano": 192263155,
+ "averageApexExecutionNano": 76810180,
+ "shortestApexExecutionNano": 6463459,
+ "longestApexExecutionNano": 143736937
+ },
+ {
+ "batchNumber": 5387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156418380,
+ "shortestRoundTripNano": 67130070,
+ "longestRoundTripNano": 194962467,
+ "averageApexExecutionNano": 64635863,
+ "shortestApexExecutionNano": 7152512,
+ "longestApexExecutionNano": 121657441
+ },
+ {
+ "batchNumber": 5388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149480362,
+ "shortestRoundTripNano": 76385291,
+ "longestRoundTripNano": 178318418,
+ "averageApexExecutionNano": 62941630,
+ "shortestApexExecutionNano": 8020178,
+ "longestApexExecutionNano": 127173539
+ },
+ {
+ "batchNumber": 5389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36776",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147289825,
+ "shortestRoundTripNano": 53083580,
+ "longestRoundTripNano": 183644700,
+ "averageApexExecutionNano": 58106182,
+ "shortestApexExecutionNano": 8666605,
+ "longestApexExecutionNano": 141370828
+ },
+ {
+ "batchNumber": 5390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172659131,
+ "shortestRoundTripNano": 99529624,
+ "longestRoundTripNano": 206286805,
+ "averageApexExecutionNano": 68833113,
+ "shortestApexExecutionNano": 7966976,
+ "longestApexExecutionNano": 151776330
+ },
+ {
+ "batchNumber": 5391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168869104,
+ "shortestRoundTripNano": 63542356,
+ "longestRoundTripNano": 201176354,
+ "averageApexExecutionNano": 69233280,
+ "shortestApexExecutionNano": 11095630,
+ "longestApexExecutionNano": 152645931
+ },
+ {
+ "batchNumber": 5392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140392867,
+ "shortestRoundTripNano": 67030575,
+ "longestRoundTripNano": 172672346,
+ "averageApexExecutionNano": 59122782,
+ "shortestApexExecutionNano": 9506336,
+ "longestApexExecutionNano": 132369032
+ },
+ {
+ "batchNumber": 5393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142103780,
+ "shortestRoundTripNano": 66587876,
+ "longestRoundTripNano": 172151912,
+ "averageApexExecutionNano": 65977359,
+ "shortestApexExecutionNano": 8340771,
+ "longestApexExecutionNano": 113534645
+ },
+ {
+ "batchNumber": 5394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154719544,
+ "shortestRoundTripNano": 75930455,
+ "longestRoundTripNano": 185790136,
+ "averageApexExecutionNano": 64982384,
+ "shortestApexExecutionNano": 8043189,
+ "longestApexExecutionNano": 125531610
+ },
+ {
+ "batchNumber": 5395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150685960,
+ "shortestRoundTripNano": 60238595,
+ "longestRoundTripNano": 189922515,
+ "averageApexExecutionNano": 62955051,
+ "shortestApexExecutionNano": 5772743,
+ "longestApexExecutionNano": 137468673
+ },
+ {
+ "batchNumber": 5396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183104947,
+ "shortestRoundTripNano": 107767251,
+ "longestRoundTripNano": 212871291,
+ "averageApexExecutionNano": 86715942,
+ "shortestApexExecutionNano": 15864793,
+ "longestApexExecutionNano": 151178131
+ },
+ {
+ "batchNumber": 5397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176775121,
+ "shortestRoundTripNano": 50721079,
+ "longestRoundTripNano": 206750996,
+ "averageApexExecutionNano": 78602509,
+ "shortestApexExecutionNano": 9641372,
+ "longestApexExecutionNano": 134367701
+ },
+ {
+ "batchNumber": 5398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36778",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 217550768,
+ "shortestRoundTripNano": 76302709,
+ "longestRoundTripNano": 254836201,
+ "averageApexExecutionNano": 118178835,
+ "shortestApexExecutionNano": 11097614,
+ "longestApexExecutionNano": 203325435
+ },
+ {
+ "batchNumber": 5399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143116097,
+ "shortestRoundTripNano": 62784203,
+ "longestRoundTripNano": 165486782,
+ "averageApexExecutionNano": 59952298,
+ "shortestApexExecutionNano": 11188558,
+ "longestApexExecutionNano": 123910934
+ },
+ {
+ "batchNumber": 5400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152496210,
+ "shortestRoundTripNano": 93991171,
+ "longestRoundTripNano": 177427646,
+ "averageApexExecutionNano": 60092011,
+ "shortestApexExecutionNano": 5119891,
+ "longestApexExecutionNano": 109896143
+ },
+ {
+ "batchNumber": 5401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151166083,
+ "shortestRoundTripNano": 83022150,
+ "longestRoundTripNano": 173259161,
+ "averageApexExecutionNano": 69883224,
+ "shortestApexExecutionNano": 22957978,
+ "longestApexExecutionNano": 131203409
+ },
+ {
+ "batchNumber": 5402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145712909,
+ "shortestRoundTripNano": 70523914,
+ "longestRoundTripNano": 178331368,
+ "averageApexExecutionNano": 60174489,
+ "shortestApexExecutionNano": 6903580,
+ "longestApexExecutionNano": 120478950
+ },
+ {
+ "batchNumber": 5403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140890564,
+ "shortestRoundTripNano": 60129971,
+ "longestRoundTripNano": 166334695,
+ "averageApexExecutionNano": 56488437,
+ "shortestApexExecutionNano": 13511197,
+ "longestApexExecutionNano": 108478576
+ },
+ {
+ "batchNumber": 5404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140379975,
+ "shortestRoundTripNano": 59228251,
+ "longestRoundTripNano": 172115124,
+ "averageApexExecutionNano": 53962977,
+ "shortestApexExecutionNano": 11720988,
+ "longestApexExecutionNano": 112850142
+ },
+ {
+ "batchNumber": 5405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146680426,
+ "shortestRoundTripNano": 66202225,
+ "longestRoundTripNano": 179051893,
+ "averageApexExecutionNano": 63799728,
+ "shortestApexExecutionNano": 8943149,
+ "longestApexExecutionNano": 115924319
+ },
+ {
+ "batchNumber": 5406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159524990,
+ "shortestRoundTripNano": 47075305,
+ "longestRoundTripNano": 191371451,
+ "averageApexExecutionNano": 78377463,
+ "shortestApexExecutionNano": 23790480,
+ "longestApexExecutionNano": 144393608
+ },
+ {
+ "batchNumber": 5407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144376181,
+ "shortestRoundTripNano": 81322760,
+ "longestRoundTripNano": 170833576,
+ "averageApexExecutionNano": 62551142,
+ "shortestApexExecutionNano": 6862866,
+ "longestApexExecutionNano": 118697783
+ },
+ {
+ "batchNumber": 5408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173082514,
+ "shortestRoundTripNano": 46306650,
+ "longestRoundTripNano": 210981778,
+ "averageApexExecutionNano": 77658467,
+ "shortestApexExecutionNano": 13606605,
+ "longestApexExecutionNano": 147624259
+ },
+ {
+ "batchNumber": 5409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136001842,
+ "shortestRoundTripNano": 52022929,
+ "longestRoundTripNano": 157211054,
+ "averageApexExecutionNano": 57589953,
+ "shortestApexExecutionNano": 6385023,
+ "longestApexExecutionNano": 115256748
+ },
+ {
+ "batchNumber": 5410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36786",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141040553,
+ "shortestRoundTripNano": 73366437,
+ "longestRoundTripNano": 166561945,
+ "averageApexExecutionNano": 50709209,
+ "shortestApexExecutionNano": 8306329,
+ "longestApexExecutionNano": 102945286
+ },
+ {
+ "batchNumber": 5411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151414799,
+ "shortestRoundTripNano": 101510408,
+ "longestRoundTripNano": 175765885,
+ "averageApexExecutionNano": 64884795,
+ "shortestApexExecutionNano": 6520573,
+ "longestApexExecutionNano": 131722205
+ },
+ {
+ "batchNumber": 5412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144275292,
+ "shortestRoundTripNano": 56380301,
+ "longestRoundTripNano": 172548564,
+ "averageApexExecutionNano": 51187598,
+ "shortestApexExecutionNano": 5650499,
+ "longestApexExecutionNano": 105863187
+ },
+ {
+ "batchNumber": 5413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128991763,
+ "shortestRoundTripNano": 42447740,
+ "longestRoundTripNano": 162901585,
+ "averageApexExecutionNano": 53135569,
+ "shortestApexExecutionNano": 6490960,
+ "longestApexExecutionNano": 99270451
+ },
+ {
+ "batchNumber": 5414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143104902,
+ "shortestRoundTripNano": 51238156,
+ "longestRoundTripNano": 176450583,
+ "averageApexExecutionNano": 67668564,
+ "shortestApexExecutionNano": 9125506,
+ "longestApexExecutionNano": 137238965
+ },
+ {
+ "batchNumber": 5415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132236145,
+ "shortestRoundTripNano": 54773900,
+ "longestRoundTripNano": 163504731,
+ "averageApexExecutionNano": 60497875,
+ "shortestApexExecutionNano": 7860041,
+ "longestApexExecutionNano": 127762972
+ },
+ {
+ "batchNumber": 5416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133276880,
+ "shortestRoundTripNano": 58315764,
+ "longestRoundTripNano": 162102910,
+ "averageApexExecutionNano": 54403643,
+ "shortestApexExecutionNano": 8002812,
+ "longestApexExecutionNano": 112381286
+ },
+ {
+ "batchNumber": 5417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142215549,
+ "shortestRoundTripNano": 57134491,
+ "longestRoundTripNano": 180067445,
+ "averageApexExecutionNano": 52604016,
+ "shortestApexExecutionNano": 7955785,
+ "longestApexExecutionNano": 122672470
+ },
+ {
+ "batchNumber": 5418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119018766,
+ "shortestRoundTripNano": 57392737,
+ "longestRoundTripNano": 142796042,
+ "averageApexExecutionNano": 55695198,
+ "shortestApexExecutionNano": 5582481,
+ "longestApexExecutionNano": 92086772
+ },
+ {
+ "batchNumber": 5419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144453042,
+ "shortestRoundTripNano": 61228121,
+ "longestRoundTripNano": 172266027,
+ "averageApexExecutionNano": 63786748,
+ "shortestApexExecutionNano": 9806077,
+ "longestApexExecutionNano": 130244983
+ },
+ {
+ "batchNumber": 5420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121898098,
+ "shortestRoundTripNano": 57548140,
+ "longestRoundTripNano": 145874037,
+ "averageApexExecutionNano": 56655768,
+ "shortestApexExecutionNano": 4749390,
+ "longestApexExecutionNano": 109511416
+ },
+ {
+ "batchNumber": 5421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123247513,
+ "shortestRoundTripNano": 49798335,
+ "longestRoundTripNano": 161762527,
+ "averageApexExecutionNano": 46998814,
+ "shortestApexExecutionNano": 7442733,
+ "longestApexExecutionNano": 104523949
+ },
+ {
+ "batchNumber": 5422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153677960,
+ "shortestRoundTripNano": 68576412,
+ "longestRoundTripNano": 182642803,
+ "averageApexExecutionNano": 47235133,
+ "shortestApexExecutionNano": 10388555,
+ "longestApexExecutionNano": 127381792
+ },
+ {
+ "batchNumber": 5423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126327206,
+ "shortestRoundTripNano": 44390232,
+ "longestRoundTripNano": 154104710,
+ "averageApexExecutionNano": 51389515,
+ "shortestApexExecutionNano": 4947702,
+ "longestApexExecutionNano": 98415619
+ },
+ {
+ "batchNumber": 5424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147640138,
+ "shortestRoundTripNano": 78426828,
+ "longestRoundTripNano": 171289864,
+ "averageApexExecutionNano": 56338437,
+ "shortestApexExecutionNano": 11110121,
+ "longestApexExecutionNano": 116736004
+ },
+ {
+ "batchNumber": 5425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126739467,
+ "shortestRoundTripNano": 44916008,
+ "longestRoundTripNano": 165809679,
+ "averageApexExecutionNano": 52396938,
+ "shortestApexExecutionNano": 5362168,
+ "longestApexExecutionNano": 110138375
+ },
+ {
+ "batchNumber": 5426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121651306,
+ "shortestRoundTripNano": 70538681,
+ "longestRoundTripNano": 142790439,
+ "averageApexExecutionNano": 60401647,
+ "shortestApexExecutionNano": 11174152,
+ "longestApexExecutionNano": 110627839
+ },
+ {
+ "batchNumber": 5427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36792",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134755821,
+ "shortestRoundTripNano": 30456468,
+ "longestRoundTripNano": 168832353,
+ "averageApexExecutionNano": 61931439,
+ "shortestApexExecutionNano": 7289660,
+ "longestApexExecutionNano": 126715541
+ },
+ {
+ "batchNumber": 5428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137364744,
+ "shortestRoundTripNano": 46388685,
+ "longestRoundTripNano": 175139552,
+ "averageApexExecutionNano": 52945690,
+ "shortestApexExecutionNano": 4873337,
+ "longestApexExecutionNano": 111700500
+ },
+ {
+ "batchNumber": 5429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150130275,
+ "shortestRoundTripNano": 88449539,
+ "longestRoundTripNano": 171873096,
+ "averageApexExecutionNano": 57334988,
+ "shortestApexExecutionNano": 11359507,
+ "longestApexExecutionNano": 116715982
+ },
+ {
+ "batchNumber": 5430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153830318,
+ "shortestRoundTripNano": 86561961,
+ "longestRoundTripNano": 184787854,
+ "averageApexExecutionNano": 65546667,
+ "shortestApexExecutionNano": 9988844,
+ "longestApexExecutionNano": 145575509
+ },
+ {
+ "batchNumber": 5431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146725293,
+ "shortestRoundTripNano": 61605370,
+ "longestRoundTripNano": 191968723,
+ "averageApexExecutionNano": 69267239,
+ "shortestApexExecutionNano": 9860492,
+ "longestApexExecutionNano": 133048664
+ },
+ {
+ "batchNumber": 5432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138951282,
+ "shortestRoundTripNano": 72743383,
+ "longestRoundTripNano": 166229228,
+ "averageApexExecutionNano": 60922846,
+ "shortestApexExecutionNano": 11837610,
+ "longestApexExecutionNano": 128080319
+ },
+ {
+ "batchNumber": 5433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127054102,
+ "shortestRoundTripNano": 52644854,
+ "longestRoundTripNano": 159745439,
+ "averageApexExecutionNano": 57902138,
+ "shortestApexExecutionNano": 12977767,
+ "longestApexExecutionNano": 117673504
+ },
+ {
+ "batchNumber": 5434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186641815,
+ "shortestRoundTripNano": 55149767,
+ "longestRoundTripNano": 226918593,
+ "averageApexExecutionNano": 78261306,
+ "shortestApexExecutionNano": 7219560,
+ "longestApexExecutionNano": 154723680
+ },
+ {
+ "batchNumber": 5435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173738257,
+ "shortestRoundTripNano": 80603742,
+ "longestRoundTripNano": 202466746,
+ "averageApexExecutionNano": 72494294,
+ "shortestApexExecutionNano": 12824840,
+ "longestApexExecutionNano": 152088680
+ },
+ {
+ "batchNumber": 5436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131908296,
+ "shortestRoundTripNano": 49111021,
+ "longestRoundTripNano": 156257551,
+ "averageApexExecutionNano": 50839863,
+ "shortestApexExecutionNano": 5317066,
+ "longestApexExecutionNano": 117196741
+ },
+ {
+ "batchNumber": 5437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134592791,
+ "shortestRoundTripNano": 67352502,
+ "longestRoundTripNano": 159836412,
+ "averageApexExecutionNano": 61682085,
+ "shortestApexExecutionNano": 10856820,
+ "longestApexExecutionNano": 113800416
+ },
+ {
+ "batchNumber": 5438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138286846,
+ "shortestRoundTripNano": 59676000,
+ "longestRoundTripNano": 163715922,
+ "averageApexExecutionNano": 56127455,
+ "shortestApexExecutionNano": 7401533,
+ "longestApexExecutionNano": 109202100
+ },
+ {
+ "batchNumber": 5439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147548507,
+ "shortestRoundTripNano": 79398691,
+ "longestRoundTripNano": 169446315,
+ "averageApexExecutionNano": 59041328,
+ "shortestApexExecutionNano": 6086951,
+ "longestApexExecutionNano": 116802112
+ },
+ {
+ "batchNumber": 5440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 201233202,
+ "shortestRoundTripNano": 38896536,
+ "longestRoundTripNano": 232039869,
+ "averageApexExecutionNano": 84002759,
+ "shortestApexExecutionNano": 11367537,
+ "longestApexExecutionNano": 155026208
+ },
+ {
+ "batchNumber": 5441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185702502,
+ "shortestRoundTripNano": 138934934,
+ "longestRoundTripNano": 204071906,
+ "averageApexExecutionNano": 77541074,
+ "shortestApexExecutionNano": 23627308,
+ "longestApexExecutionNano": 156348867
+ },
+ {
+ "batchNumber": 5442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126782144,
+ "shortestRoundTripNano": 62743332,
+ "longestRoundTripNano": 155439838,
+ "averageApexExecutionNano": 44951890,
+ "shortestApexExecutionNano": 6270232,
+ "longestApexExecutionNano": 98307813
+ },
+ {
+ "batchNumber": 5443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132949982,
+ "shortestRoundTripNano": 64055691,
+ "longestRoundTripNano": 164652278,
+ "averageApexExecutionNano": 48998738,
+ "shortestApexExecutionNano": 9748974,
+ "longestApexExecutionNano": 109155662
+ },
+ {
+ "batchNumber": 5444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138523485,
+ "shortestRoundTripNano": 51076668,
+ "longestRoundTripNano": 179715839,
+ "averageApexExecutionNano": 75423482,
+ "shortestApexExecutionNano": 8964222,
+ "longestApexExecutionNano": 135247570
+ },
+ {
+ "batchNumber": 5445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157472612,
+ "shortestRoundTripNano": 76718245,
+ "longestRoundTripNano": 181402068,
+ "averageApexExecutionNano": 79447913,
+ "shortestApexExecutionNano": 21163461,
+ "longestApexExecutionNano": 127871181
+ },
+ {
+ "batchNumber": 5446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125929036,
+ "shortestRoundTripNano": 47834141,
+ "longestRoundTripNano": 162979373,
+ "averageApexExecutionNano": 37885907,
+ "shortestApexExecutionNano": 5640258,
+ "longestApexExecutionNano": 89883511
+ },
+ {
+ "batchNumber": 5447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149391113,
+ "shortestRoundTripNano": 57397999,
+ "longestRoundTripNano": 178835049,
+ "averageApexExecutionNano": 71341054,
+ "shortestApexExecutionNano": 17658514,
+ "longestApexExecutionNano": 132074142
+ },
+ {
+ "batchNumber": 5448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157322364,
+ "shortestRoundTripNano": 62257001,
+ "longestRoundTripNano": 191351732,
+ "averageApexExecutionNano": 63187403,
+ "shortestApexExecutionNano": 4815980,
+ "longestApexExecutionNano": 132967474
+ },
+ {
+ "batchNumber": 5449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118473639,
+ "shortestRoundTripNano": 63521501,
+ "longestRoundTripNano": 147607189,
+ "averageApexExecutionNano": 59160232,
+ "shortestApexExecutionNano": 7460405,
+ "longestApexExecutionNano": 109359473
+ },
+ {
+ "batchNumber": 5450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140240283,
+ "shortestRoundTripNano": 63306590,
+ "longestRoundTripNano": 167575741,
+ "averageApexExecutionNano": 63657973,
+ "shortestApexExecutionNano": 12356062,
+ "longestApexExecutionNano": 116031621
+ },
+ {
+ "batchNumber": 5451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136312211,
+ "shortestRoundTripNano": 68698990,
+ "longestRoundTripNano": 162893633,
+ "averageApexExecutionNano": 65080096,
+ "shortestApexExecutionNano": 8348399,
+ "longestApexExecutionNano": 118093814
+ },
+ {
+ "batchNumber": 5452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167112458,
+ "shortestRoundTripNano": 64611334,
+ "longestRoundTripNano": 196214725,
+ "averageApexExecutionNano": 78783731,
+ "shortestApexExecutionNano": 12221215,
+ "longestApexExecutionNano": 142665930
+ },
+ {
+ "batchNumber": 5453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143021597,
+ "shortestRoundTripNano": 57742558,
+ "longestRoundTripNano": 179273915,
+ "averageApexExecutionNano": 58837023,
+ "shortestApexExecutionNano": 12301866,
+ "longestApexExecutionNano": 112708674
+ },
+ {
+ "batchNumber": 5454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167692293,
+ "shortestRoundTripNano": 75695668,
+ "longestRoundTripNano": 202887342,
+ "averageApexExecutionNano": 75195754,
+ "shortestApexExecutionNano": 11752169,
+ "longestApexExecutionNano": 144846329
+ },
+ {
+ "batchNumber": 5455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151006235,
+ "shortestRoundTripNano": 74328381,
+ "longestRoundTripNano": 174306681,
+ "averageApexExecutionNano": 53958576,
+ "shortestApexExecutionNano": 12844492,
+ "longestApexExecutionNano": 132516475
+ },
+ {
+ "batchNumber": 5456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147148830,
+ "shortestRoundTripNano": 35641547,
+ "longestRoundTripNano": 175037458,
+ "averageApexExecutionNano": 52656347,
+ "shortestApexExecutionNano": 7945918,
+ "longestApexExecutionNano": 102573435
+ },
+ {
+ "batchNumber": 5457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161269008,
+ "shortestRoundTripNano": 59084228,
+ "longestRoundTripNano": 193588330,
+ "averageApexExecutionNano": 61661461,
+ "shortestApexExecutionNano": 6936231,
+ "longestApexExecutionNano": 143660084
+ },
+ {
+ "batchNumber": 5458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135954133,
+ "shortestRoundTripNano": 61944238,
+ "longestRoundTripNano": 172070440,
+ "averageApexExecutionNano": 52233694,
+ "shortestApexExecutionNano": 10158497,
+ "longestApexExecutionNano": 109586040
+ },
+ {
+ "batchNumber": 5459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36804",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 260765825,
+ "shortestRoundTripNano": 46463869,
+ "longestRoundTripNano": 304674162,
+ "averageApexExecutionNano": 152861330,
+ "shortestApexExecutionNano": 18160507,
+ "longestApexExecutionNano": 258262603
+ },
+ {
+ "batchNumber": 5460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136075618,
+ "shortestRoundTripNano": 56956650,
+ "longestRoundTripNano": 162217106,
+ "averageApexExecutionNano": 60595305,
+ "shortestApexExecutionNano": 10774482,
+ "longestApexExecutionNano": 119129335
+ },
+ {
+ "batchNumber": 5461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144710388,
+ "shortestRoundTripNano": 63620827,
+ "longestRoundTripNano": 177702267,
+ "averageApexExecutionNano": 71874833,
+ "shortestApexExecutionNano": 8550363,
+ "longestApexExecutionNano": 133903471
+ },
+ {
+ "batchNumber": 5462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146569223,
+ "shortestRoundTripNano": 70303807,
+ "longestRoundTripNano": 175930763,
+ "averageApexExecutionNano": 72540276,
+ "shortestApexExecutionNano": 17489825,
+ "longestApexExecutionNano": 122131808
+ },
+ {
+ "batchNumber": 5463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176885820,
+ "shortestRoundTripNano": 64211757,
+ "longestRoundTripNano": 208361503,
+ "averageApexExecutionNano": 84897039,
+ "shortestApexExecutionNano": 18053799,
+ "longestApexExecutionNano": 146271939
+ },
+ {
+ "batchNumber": 5464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176914948,
+ "shortestRoundTripNano": 59146816,
+ "longestRoundTripNano": 206630153,
+ "averageApexExecutionNano": 65451850,
+ "shortestApexExecutionNano": 15035292,
+ "longestApexExecutionNano": 154185158
+ },
+ {
+ "batchNumber": 5465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173008143,
+ "shortestRoundTripNano": 52392800,
+ "longestRoundTripNano": 218677873,
+ "averageApexExecutionNano": 66997650,
+ "shortestApexExecutionNano": 7911449,
+ "longestApexExecutionNano": 161282990
+ },
+ {
+ "batchNumber": 5466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136481031,
+ "shortestRoundTripNano": 61522180,
+ "longestRoundTripNano": 168240022,
+ "averageApexExecutionNano": 56561248,
+ "shortestApexExecutionNano": 8965648,
+ "longestApexExecutionNano": 123056441
+ },
+ {
+ "batchNumber": 5467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137351811,
+ "shortestRoundTripNano": 52565216,
+ "longestRoundTripNano": 171708899,
+ "averageApexExecutionNano": 65223439,
+ "shortestApexExecutionNano": 6176252,
+ "longestApexExecutionNano": 118726891
+ },
+ {
+ "batchNumber": 5468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144110935,
+ "shortestRoundTripNano": 68129957,
+ "longestRoundTripNano": 166885308,
+ "averageApexExecutionNano": 50738169,
+ "shortestApexExecutionNano": 6969805,
+ "longestApexExecutionNano": 128657373
+ },
+ {
+ "batchNumber": 5469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140710003,
+ "shortestRoundTripNano": 53607041,
+ "longestRoundTripNano": 167985054,
+ "averageApexExecutionNano": 54551407,
+ "shortestApexExecutionNano": 7482204,
+ "longestApexExecutionNano": 110573089
+ },
+ {
+ "batchNumber": 5470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148631050,
+ "shortestRoundTripNano": 39852325,
+ "longestRoundTripNano": 178888985,
+ "averageApexExecutionNano": 57230198,
+ "shortestApexExecutionNano": 7736767,
+ "longestApexExecutionNano": 112127158
+ },
+ {
+ "batchNumber": 5471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174273710,
+ "shortestRoundTripNano": 84609743,
+ "longestRoundTripNano": 201862123,
+ "averageApexExecutionNano": 66559850,
+ "shortestApexExecutionNano": 13344972,
+ "longestApexExecutionNano": 123742039
+ },
+ {
+ "batchNumber": 5472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147692915,
+ "shortestRoundTripNano": 67001837,
+ "longestRoundTripNano": 172099715,
+ "averageApexExecutionNano": 53298680,
+ "shortestApexExecutionNano": 10184730,
+ "longestApexExecutionNano": 118323543
+ },
+ {
+ "batchNumber": 5473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157144071,
+ "shortestRoundTripNano": 84909431,
+ "longestRoundTripNano": 191959312,
+ "averageApexExecutionNano": 69927231,
+ "shortestApexExecutionNano": 9195349,
+ "longestApexExecutionNano": 113214618
+ },
+ {
+ "batchNumber": 5474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153083651,
+ "shortestRoundTripNano": 80684995,
+ "longestRoundTripNano": 183609381,
+ "averageApexExecutionNano": 78593472,
+ "shortestApexExecutionNano": 7011616,
+ "longestApexExecutionNano": 141775520
+ },
+ {
+ "batchNumber": 5475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133466255,
+ "shortestRoundTripNano": 53648038,
+ "longestRoundTripNano": 163351903,
+ "averageApexExecutionNano": 62921938,
+ "shortestApexExecutionNano": 15441396,
+ "longestApexExecutionNano": 118031934
+ },
+ {
+ "batchNumber": 5476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150562160,
+ "shortestRoundTripNano": 66140227,
+ "longestRoundTripNano": 176058949,
+ "averageApexExecutionNano": 57492787,
+ "shortestApexExecutionNano": 7630119,
+ "longestApexExecutionNano": 116356128
+ },
+ {
+ "batchNumber": 5477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142778985,
+ "shortestRoundTripNano": 35383541,
+ "longestRoundTripNano": 197335495,
+ "averageApexExecutionNano": 58617762,
+ "shortestApexExecutionNano": 8190502,
+ "longestApexExecutionNano": 112734440
+ },
+ {
+ "batchNumber": 5478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147900607,
+ "shortestRoundTripNano": 78594527,
+ "longestRoundTripNano": 173260243,
+ "averageApexExecutionNano": 59998203,
+ "shortestApexExecutionNano": 6283191,
+ "longestApexExecutionNano": 134441891
+ },
+ {
+ "batchNumber": 5479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162301781,
+ "shortestRoundTripNano": 61825787,
+ "longestRoundTripNano": 191931987,
+ "averageApexExecutionNano": 62797039,
+ "shortestApexExecutionNano": 8788927,
+ "longestApexExecutionNano": 122376553
+ },
+ {
+ "batchNumber": 5480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36808",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162294755,
+ "shortestRoundTripNano": 48633260,
+ "longestRoundTripNano": 188491940,
+ "averageApexExecutionNano": 71316206,
+ "shortestApexExecutionNano": 9824732,
+ "longestApexExecutionNano": 129019616
+ },
+ {
+ "batchNumber": 5481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131292728,
+ "shortestRoundTripNano": 53845459,
+ "longestRoundTripNano": 163953976,
+ "averageApexExecutionNano": 67588493,
+ "shortestApexExecutionNano": 5812561,
+ "longestApexExecutionNano": 112211212
+ },
+ {
+ "batchNumber": 5482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169719993,
+ "shortestRoundTripNano": 79520317,
+ "longestRoundTripNano": 199452516,
+ "averageApexExecutionNano": 79787893,
+ "shortestApexExecutionNano": 4599514,
+ "longestApexExecutionNano": 149559208
+ },
+ {
+ "batchNumber": 5483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133007608,
+ "shortestRoundTripNano": 69873692,
+ "longestRoundTripNano": 160435184,
+ "averageApexExecutionNano": 45578173,
+ "shortestApexExecutionNano": 9298042,
+ "longestApexExecutionNano": 102996559
+ },
+ {
+ "batchNumber": 5484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147528785,
+ "shortestRoundTripNano": 73779125,
+ "longestRoundTripNano": 167356328,
+ "averageApexExecutionNano": 69182252,
+ "shortestApexExecutionNano": 12572942,
+ "longestApexExecutionNano": 124635595
+ },
+ {
+ "batchNumber": 5485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149029061,
+ "shortestRoundTripNano": 59187426,
+ "longestRoundTripNano": 177757898,
+ "averageApexExecutionNano": 47050354,
+ "shortestApexExecutionNano": 7368706,
+ "longestApexExecutionNano": 127199449
+ },
+ {
+ "batchNumber": 5486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36816",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175835302,
+ "shortestRoundTripNano": 51627792,
+ "longestRoundTripNano": 213956740,
+ "averageApexExecutionNano": 83524604,
+ "shortestApexExecutionNano": 13504135,
+ "longestApexExecutionNano": 142513700
+ },
+ {
+ "batchNumber": 5487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164204272,
+ "shortestRoundTripNano": 59782939,
+ "longestRoundTripNano": 195308855,
+ "averageApexExecutionNano": 74079448,
+ "shortestApexExecutionNano": 8318417,
+ "longestApexExecutionNano": 140163540
+ },
+ {
+ "batchNumber": 5488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150320463,
+ "shortestRoundTripNano": 61995107,
+ "longestRoundTripNano": 182994430,
+ "averageApexExecutionNano": 71721491,
+ "shortestApexExecutionNano": 11755862,
+ "longestApexExecutionNano": 129873831
+ },
+ {
+ "batchNumber": 5489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154355173,
+ "shortestRoundTripNano": 53262574,
+ "longestRoundTripNano": 183446673,
+ "averageApexExecutionNano": 72849499,
+ "shortestApexExecutionNano": 8680712,
+ "longestApexExecutionNano": 140604180
+ },
+ {
+ "batchNumber": 5490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156430362,
+ "shortestRoundTripNano": 64278938,
+ "longestRoundTripNano": 188872118,
+ "averageApexExecutionNano": 57900230,
+ "shortestApexExecutionNano": 8818970,
+ "longestApexExecutionNano": 124530593
+ },
+ {
+ "batchNumber": 5491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136319871,
+ "shortestRoundTripNano": 76504601,
+ "longestRoundTripNano": 162494488,
+ "averageApexExecutionNano": 55402441,
+ "shortestApexExecutionNano": 7124900,
+ "longestApexExecutionNano": 113068369
+ },
+ {
+ "batchNumber": 5492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160249624,
+ "shortestRoundTripNano": 62969411,
+ "longestRoundTripNano": 200499863,
+ "averageApexExecutionNano": 74646754,
+ "shortestApexExecutionNano": 18982039,
+ "longestApexExecutionNano": 141731310
+ },
+ {
+ "batchNumber": 5493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158080179,
+ "shortestRoundTripNano": 58332537,
+ "longestRoundTripNano": 185610289,
+ "averageApexExecutionNano": 75451791,
+ "shortestApexExecutionNano": 14768129,
+ "longestApexExecutionNano": 136004134
+ },
+ {
+ "batchNumber": 5494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137721322,
+ "shortestRoundTripNano": 62109469,
+ "longestRoundTripNano": 169786784,
+ "averageApexExecutionNano": 54624123,
+ "shortestApexExecutionNano": 5755634,
+ "longestApexExecutionNano": 105058042
+ },
+ {
+ "batchNumber": 5495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129346179,
+ "shortestRoundTripNano": 57048345,
+ "longestRoundTripNano": 163263643,
+ "averageApexExecutionNano": 45467573,
+ "shortestApexExecutionNano": 9478499,
+ "longestApexExecutionNano": 104877371
+ },
+ {
+ "batchNumber": 5496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163917602,
+ "shortestRoundTripNano": 76592115,
+ "longestRoundTripNano": 199507150,
+ "averageApexExecutionNano": 73926729,
+ "shortestApexExecutionNano": 5743768,
+ "longestApexExecutionNano": 138902662
+ },
+ {
+ "batchNumber": 5497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154215677,
+ "shortestRoundTripNano": 62960162,
+ "longestRoundTripNano": 182431314,
+ "averageApexExecutionNano": 76172624,
+ "shortestApexExecutionNano": 12639593,
+ "longestApexExecutionNano": 141684238
+ },
+ {
+ "batchNumber": 5498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164507087,
+ "shortestRoundTripNano": 60344970,
+ "longestRoundTripNano": 202153542,
+ "averageApexExecutionNano": 69715575,
+ "shortestApexExecutionNano": 8300431,
+ "longestApexExecutionNano": 139279813
+ },
+ {
+ "batchNumber": 5499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150611906,
+ "shortestRoundTripNano": 52176215,
+ "longestRoundTripNano": 182179449,
+ "averageApexExecutionNano": 65723798,
+ "shortestApexExecutionNano": 13383912,
+ "longestApexExecutionNano": 135399303
+ },
+ {
+ "batchNumber": 5500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149143070,
+ "shortestRoundTripNano": 52137644,
+ "longestRoundTripNano": 178405174,
+ "averageApexExecutionNano": 71457110,
+ "shortestApexExecutionNano": 6994362,
+ "longestApexExecutionNano": 129850851
+ },
+ {
+ "batchNumber": 5501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169807546,
+ "shortestRoundTripNano": 102308898,
+ "longestRoundTripNano": 198085447,
+ "averageApexExecutionNano": 72764278,
+ "shortestApexExecutionNano": 9682991,
+ "longestApexExecutionNano": 136219210
+ },
+ {
+ "batchNumber": 5502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36820",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150723466,
+ "shortestRoundTripNano": 54146467,
+ "longestRoundTripNano": 178141080,
+ "averageApexExecutionNano": 62468064,
+ "shortestApexExecutionNano": 8806408,
+ "longestApexExecutionNano": 114841251
+ },
+ {
+ "batchNumber": 5503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36822",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160605485,
+ "shortestRoundTripNano": 48868014,
+ "longestRoundTripNano": 194063423,
+ "averageApexExecutionNano": 76392740,
+ "shortestApexExecutionNano": 6102375,
+ "longestApexExecutionNano": 145964583
+ },
+ {
+ "batchNumber": 5504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163171261,
+ "shortestRoundTripNano": 63572278,
+ "longestRoundTripNano": 201611592,
+ "averageApexExecutionNano": 76587428,
+ "shortestApexExecutionNano": 10369291,
+ "longestApexExecutionNano": 154902514
+ },
+ {
+ "batchNumber": 5505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188205918,
+ "shortestRoundTripNano": 102581170,
+ "longestRoundTripNano": 211926912,
+ "averageApexExecutionNano": 85767507,
+ "shortestApexExecutionNano": 7066115,
+ "longestApexExecutionNano": 145048053
+ },
+ {
+ "batchNumber": 5506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153728935,
+ "shortestRoundTripNano": 68522419,
+ "longestRoundTripNano": 188889372,
+ "averageApexExecutionNano": 73959369,
+ "shortestApexExecutionNano": 14939253,
+ "longestApexExecutionNano": 137955580
+ },
+ {
+ "batchNumber": 5507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153632705,
+ "shortestRoundTripNano": 42215666,
+ "longestRoundTripNano": 186588040,
+ "averageApexExecutionNano": 61431096,
+ "shortestApexExecutionNano": 8027235,
+ "longestApexExecutionNano": 141183886
+ },
+ {
+ "batchNumber": 5508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150983080,
+ "shortestRoundTripNano": 48902485,
+ "longestRoundTripNano": 180838573,
+ "averageApexExecutionNano": 68029684,
+ "shortestApexExecutionNano": 11600846,
+ "longestApexExecutionNano": 140087110
+ },
+ {
+ "batchNumber": 5509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145800017,
+ "shortestRoundTripNano": 31571639,
+ "longestRoundTripNano": 177588210,
+ "averageApexExecutionNano": 63627132,
+ "shortestApexExecutionNano": 5414974,
+ "longestApexExecutionNano": 131869415
+ },
+ {
+ "batchNumber": 5510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142507599,
+ "shortestRoundTripNano": 67508848,
+ "longestRoundTripNano": 183305537,
+ "averageApexExecutionNano": 56983004,
+ "shortestApexExecutionNano": 12695809,
+ "longestApexExecutionNano": 129536083
+ },
+ {
+ "batchNumber": 5511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149849878,
+ "shortestRoundTripNano": 79595203,
+ "longestRoundTripNano": 172506528,
+ "averageApexExecutionNano": 65466445,
+ "shortestApexExecutionNano": 13047613,
+ "longestApexExecutionNano": 125188206
+ },
+ {
+ "batchNumber": 5512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164961213,
+ "shortestRoundTripNano": 56963612,
+ "longestRoundTripNano": 190261167,
+ "averageApexExecutionNano": 82171587,
+ "shortestApexExecutionNano": 10087952,
+ "longestApexExecutionNano": 148458499
+ },
+ {
+ "batchNumber": 5513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150257133,
+ "shortestRoundTripNano": 72019112,
+ "longestRoundTripNano": 180040686,
+ "averageApexExecutionNano": 48310202,
+ "shortestApexExecutionNano": 8893960,
+ "longestApexExecutionNano": 100900031
+ },
+ {
+ "batchNumber": 5514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131129066,
+ "shortestRoundTripNano": 53810584,
+ "longestRoundTripNano": 164195422,
+ "averageApexExecutionNano": 51750011,
+ "shortestApexExecutionNano": 8874304,
+ "longestApexExecutionNano": 117402345
+ },
+ {
+ "batchNumber": 5515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134226391,
+ "shortestRoundTripNano": 45921897,
+ "longestRoundTripNano": 178176059,
+ "averageApexExecutionNano": 51538666,
+ "shortestApexExecutionNano": 8519503,
+ "longestApexExecutionNano": 146008018
+ },
+ {
+ "batchNumber": 5516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146294440,
+ "shortestRoundTripNano": 65358667,
+ "longestRoundTripNano": 173962144,
+ "averageApexExecutionNano": 67197004,
+ "shortestApexExecutionNano": 9721604,
+ "longestApexExecutionNano": 120122630
+ },
+ {
+ "batchNumber": 5517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166932562,
+ "shortestRoundTripNano": 52370837,
+ "longestRoundTripNano": 202291893,
+ "averageApexExecutionNano": 81776254,
+ "shortestApexExecutionNano": 12127951,
+ "longestApexExecutionNano": 150970206
+ },
+ {
+ "batchNumber": 5518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142483834,
+ "shortestRoundTripNano": 68509409,
+ "longestRoundTripNano": 167929473,
+ "averageApexExecutionNano": 59582776,
+ "shortestApexExecutionNano": 6321911,
+ "longestApexExecutionNano": 108651026
+ },
+ {
+ "batchNumber": 5519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141759644,
+ "shortestRoundTripNano": 51106265,
+ "longestRoundTripNano": 178067392,
+ "averageApexExecutionNano": 48577169,
+ "shortestApexExecutionNano": 6881023,
+ "longestApexExecutionNano": 123589079
+ },
+ {
+ "batchNumber": 5520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147988527,
+ "shortestRoundTripNano": 73699072,
+ "longestRoundTripNano": 174816001,
+ "averageApexExecutionNano": 51835676,
+ "shortestApexExecutionNano": 6212034,
+ "longestApexExecutionNano": 109021253
+ },
+ {
+ "batchNumber": 5521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 211328303,
+ "shortestRoundTripNano": 60287853,
+ "longestRoundTripNano": 240305060,
+ "averageApexExecutionNano": 90739522,
+ "shortestApexExecutionNano": 9597814,
+ "longestApexExecutionNano": 174703413
+ },
+ {
+ "batchNumber": 5522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156317938,
+ "shortestRoundTripNano": 54997264,
+ "longestRoundTripNano": 188950613,
+ "averageApexExecutionNano": 69526188,
+ "shortestApexExecutionNano": 7785960,
+ "longestApexExecutionNano": 143297151
+ },
+ {
+ "batchNumber": 5523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131740705,
+ "shortestRoundTripNano": 38834525,
+ "longestRoundTripNano": 182768434,
+ "averageApexExecutionNano": 48405864,
+ "shortestApexExecutionNano": 6334600,
+ "longestApexExecutionNano": 117549639
+ },
+ {
+ "batchNumber": 5524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162318626,
+ "shortestRoundTripNano": 48859638,
+ "longestRoundTripNano": 192318876,
+ "averageApexExecutionNano": 77772805,
+ "shortestApexExecutionNano": 11370266,
+ "longestApexExecutionNano": 140091666
+ },
+ {
+ "batchNumber": 5525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135951015,
+ "shortestRoundTripNano": 70736283,
+ "longestRoundTripNano": 167963845,
+ "averageApexExecutionNano": 43865823,
+ "shortestApexExecutionNano": 9133742,
+ "longestApexExecutionNano": 116522290
+ },
+ {
+ "batchNumber": 5526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126584374,
+ "shortestRoundTripNano": 56608442,
+ "longestRoundTripNano": 162519750,
+ "averageApexExecutionNano": 56182549,
+ "shortestApexExecutionNano": 9216166,
+ "longestApexExecutionNano": 122922590
+ },
+ {
+ "batchNumber": 5527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157143554,
+ "shortestRoundTripNano": 75613476,
+ "longestRoundTripNano": 185277262,
+ "averageApexExecutionNano": 74375044,
+ "shortestApexExecutionNano": 13287991,
+ "longestApexExecutionNano": 141223929
+ },
+ {
+ "batchNumber": 5528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174453804,
+ "shortestRoundTripNano": 40230546,
+ "longestRoundTripNano": 240407326,
+ "averageApexExecutionNano": 74497763,
+ "shortestApexExecutionNano": 6025349,
+ "longestApexExecutionNano": 142001384
+ },
+ {
+ "batchNumber": 5529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158515569,
+ "shortestRoundTripNano": 91539249,
+ "longestRoundTripNano": 193854207,
+ "averageApexExecutionNano": 68436563,
+ "shortestApexExecutionNano": 10289119,
+ "longestApexExecutionNano": 151948233
+ },
+ {
+ "batchNumber": 5530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164913805,
+ "shortestRoundTripNano": 62515823,
+ "longestRoundTripNano": 196021146,
+ "averageApexExecutionNano": 56921680,
+ "shortestApexExecutionNano": 9972312,
+ "longestApexExecutionNano": 102188904
+ },
+ {
+ "batchNumber": 5531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148072154,
+ "shortestRoundTripNano": 42126256,
+ "longestRoundTripNano": 182202855,
+ "averageApexExecutionNano": 64379161,
+ "shortestApexExecutionNano": 6076875,
+ "longestApexExecutionNano": 139274701
+ },
+ {
+ "batchNumber": 5532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176843673,
+ "shortestRoundTripNano": 78505672,
+ "longestRoundTripNano": 207269050,
+ "averageApexExecutionNano": 80010073,
+ "shortestApexExecutionNano": 10141176,
+ "longestApexExecutionNano": 151216203
+ },
+ {
+ "batchNumber": 5533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146558765,
+ "shortestRoundTripNano": 70553397,
+ "longestRoundTripNano": 178103908,
+ "averageApexExecutionNano": 44261726,
+ "shortestApexExecutionNano": 6643018,
+ "longestApexExecutionNano": 107981122
+ },
+ {
+ "batchNumber": 5534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154290147,
+ "shortestRoundTripNano": 36927915,
+ "longestRoundTripNano": 177572294,
+ "averageApexExecutionNano": 68692553,
+ "shortestApexExecutionNano": 10496417,
+ "longestApexExecutionNano": 117967959
+ },
+ {
+ "batchNumber": 5535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153963909,
+ "shortestRoundTripNano": 69636934,
+ "longestRoundTripNano": 180071679,
+ "averageApexExecutionNano": 69209694,
+ "shortestApexExecutionNano": 19081733,
+ "longestApexExecutionNano": 139146539
+ },
+ {
+ "batchNumber": 5536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153272664,
+ "shortestRoundTripNano": 51359120,
+ "longestRoundTripNano": 185554610,
+ "averageApexExecutionNano": 59662336,
+ "shortestApexExecutionNano": 7830081,
+ "longestApexExecutionNano": 135238292
+ },
+ {
+ "batchNumber": 5537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149262487,
+ "shortestRoundTripNano": 35539234,
+ "longestRoundTripNano": 182522337,
+ "averageApexExecutionNano": 58513203,
+ "shortestApexExecutionNano": 6688200,
+ "longestApexExecutionNano": 136806360
+ },
+ {
+ "batchNumber": 5538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179829224,
+ "shortestRoundTripNano": 67849636,
+ "longestRoundTripNano": 215323876,
+ "averageApexExecutionNano": 90181411,
+ "shortestApexExecutionNano": 15438135,
+ "longestApexExecutionNano": 174760530
+ },
+ {
+ "batchNumber": 5539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142773640,
+ "shortestRoundTripNano": 75857669,
+ "longestRoundTripNano": 169645563,
+ "averageApexExecutionNano": 61519166,
+ "shortestApexExecutionNano": 14646484,
+ "longestApexExecutionNano": 127550839
+ },
+ {
+ "batchNumber": 5540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36838",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151679427,
+ "shortestRoundTripNano": 47685913,
+ "longestRoundTripNano": 182949160,
+ "averageApexExecutionNano": 56423847,
+ "shortestApexExecutionNano": 6764709,
+ "longestApexExecutionNano": 112841939
+ },
+ {
+ "batchNumber": 5541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142767452,
+ "shortestRoundTripNano": 87829200,
+ "longestRoundTripNano": 173833966,
+ "averageApexExecutionNano": 68188804,
+ "shortestApexExecutionNano": 7579519,
+ "longestApexExecutionNano": 121191469
+ },
+ {
+ "batchNumber": 5542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144737549,
+ "shortestRoundTripNano": 49432378,
+ "longestRoundTripNano": 169621966,
+ "averageApexExecutionNano": 56055000,
+ "shortestApexExecutionNano": 8168766,
+ "longestApexExecutionNano": 111773236
+ },
+ {
+ "batchNumber": 5543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154690259,
+ "shortestRoundTripNano": 62645080,
+ "longestRoundTripNano": 183217901,
+ "averageApexExecutionNano": 63838217,
+ "shortestApexExecutionNano": 9006904,
+ "longestApexExecutionNano": 137578584
+ },
+ {
+ "batchNumber": 5544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150236385,
+ "shortestRoundTripNano": 61014444,
+ "longestRoundTripNano": 184897403,
+ "averageApexExecutionNano": 51439451,
+ "shortestApexExecutionNano": 6376895,
+ "longestApexExecutionNano": 95466763
+ },
+ {
+ "batchNumber": 5545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 113568902,
+ "shortestRoundTripNano": 41943905,
+ "longestRoundTripNano": 148450109,
+ "averageApexExecutionNano": 43972430,
+ "shortestApexExecutionNano": 6835178,
+ "longestApexExecutionNano": 103446864
+ },
+ {
+ "batchNumber": 5546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156492419,
+ "shortestRoundTripNano": 75838778,
+ "longestRoundTripNano": 180181260,
+ "averageApexExecutionNano": 59725894,
+ "shortestApexExecutionNano": 11014958,
+ "longestApexExecutionNano": 127496403
+ },
+ {
+ "batchNumber": 5547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128534079,
+ "shortestRoundTripNano": 47413384,
+ "longestRoundTripNano": 159847420,
+ "averageApexExecutionNano": 43872378,
+ "shortestApexExecutionNano": 5492712,
+ "longestApexExecutionNano": 109921294
+ },
+ {
+ "batchNumber": 5548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148668856,
+ "shortestRoundTripNano": 59891309,
+ "longestRoundTripNano": 181246714,
+ "averageApexExecutionNano": 72117435,
+ "shortestApexExecutionNano": 26051914,
+ "longestApexExecutionNano": 124191683
+ },
+ {
+ "batchNumber": 5549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135051427,
+ "shortestRoundTripNano": 39756832,
+ "longestRoundTripNano": 163577796,
+ "averageApexExecutionNano": 57775580,
+ "shortestApexExecutionNano": 7837167,
+ "longestApexExecutionNano": 119159101
+ },
+ {
+ "batchNumber": 5550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131767162,
+ "shortestRoundTripNano": 56399088,
+ "longestRoundTripNano": 155642074,
+ "averageApexExecutionNano": 51724999,
+ "shortestApexExecutionNano": 9400605,
+ "longestApexExecutionNano": 102808411
+ },
+ {
+ "batchNumber": 5551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152113338,
+ "shortestRoundTripNano": 56484921,
+ "longestRoundTripNano": 180170240,
+ "averageApexExecutionNano": 55424651,
+ "shortestApexExecutionNano": 7052676,
+ "longestApexExecutionNano": 117843809
+ },
+ {
+ "batchNumber": 5552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167911346,
+ "shortestRoundTripNano": 66563065,
+ "longestRoundTripNano": 203585753,
+ "averageApexExecutionNano": 71624994,
+ "shortestApexExecutionNano": 10073686,
+ "longestApexExecutionNano": 145878523
+ },
+ {
+ "batchNumber": 5553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139815783,
+ "shortestRoundTripNano": 63050133,
+ "longestRoundTripNano": 165839765,
+ "averageApexExecutionNano": 39917858,
+ "shortestApexExecutionNano": 7878908,
+ "longestApexExecutionNano": 113360567
+ },
+ {
+ "batchNumber": 5554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156413307,
+ "shortestRoundTripNano": 68418357,
+ "longestRoundTripNano": 192423469,
+ "averageApexExecutionNano": 59832726,
+ "shortestApexExecutionNano": 5829510,
+ "longestApexExecutionNano": 114795417
+ },
+ {
+ "batchNumber": 5555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157748455,
+ "shortestRoundTripNano": 63374117,
+ "longestRoundTripNano": 198039214,
+ "averageApexExecutionNano": 67370315,
+ "shortestApexExecutionNano": 9226204,
+ "longestApexExecutionNano": 126493276
+ },
+ {
+ "batchNumber": 5556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145886818,
+ "shortestRoundTripNano": 73016536,
+ "longestRoundTripNano": 174752888,
+ "averageApexExecutionNano": 64334290,
+ "shortestApexExecutionNano": 7533361,
+ "longestApexExecutionNano": 139474364
+ },
+ {
+ "batchNumber": 5557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151594916,
+ "shortestRoundTripNano": 73725101,
+ "longestRoundTripNano": 188388420,
+ "averageApexExecutionNano": 64881253,
+ "shortestApexExecutionNano": 10734861,
+ "longestApexExecutionNano": 140748252
+ },
+ {
+ "batchNumber": 5558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138081732,
+ "shortestRoundTripNano": 55000440,
+ "longestRoundTripNano": 166985777,
+ "averageApexExecutionNano": 54836189,
+ "shortestApexExecutionNano": 7299118,
+ "longestApexExecutionNano": 113124330
+ },
+ {
+ "batchNumber": 5559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148056422,
+ "shortestRoundTripNano": 68510379,
+ "longestRoundTripNano": 179350630,
+ "averageApexExecutionNano": 51895111,
+ "shortestApexExecutionNano": 7756467,
+ "longestApexExecutionNano": 136603558
+ },
+ {
+ "batchNumber": 5560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135034243,
+ "shortestRoundTripNano": 80572955,
+ "longestRoundTripNano": 159230090,
+ "averageApexExecutionNano": 53447427,
+ "shortestApexExecutionNano": 6672598,
+ "longestApexExecutionNano": 114090693
+ },
+ {
+ "batchNumber": 5561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163668114,
+ "shortestRoundTripNano": 62122419,
+ "longestRoundTripNano": 190798691,
+ "averageApexExecutionNano": 71424427,
+ "shortestApexExecutionNano": 8694626,
+ "longestApexExecutionNano": 136380257
+ },
+ {
+ "batchNumber": 5562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140067560,
+ "shortestRoundTripNano": 49615337,
+ "longestRoundTripNano": 168117262,
+ "averageApexExecutionNano": 54709734,
+ "shortestApexExecutionNano": 7054561,
+ "longestApexExecutionNano": 127622598
+ },
+ {
+ "batchNumber": 5563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36848",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121567733,
+ "shortestRoundTripNano": 65592432,
+ "longestRoundTripNano": 147960309,
+ "averageApexExecutionNano": 64256013,
+ "shortestApexExecutionNano": 8023758,
+ "longestApexExecutionNano": 115577410
+ },
+ {
+ "batchNumber": 5564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126115949,
+ "shortestRoundTripNano": 59689141,
+ "longestRoundTripNano": 154466583,
+ "averageApexExecutionNano": 60122812,
+ "shortestApexExecutionNano": 8646859,
+ "longestApexExecutionNano": 131373341
+ },
+ {
+ "batchNumber": 5565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130569131,
+ "shortestRoundTripNano": 54157731,
+ "longestRoundTripNano": 158486101,
+ "averageApexExecutionNano": 67877123,
+ "shortestApexExecutionNano": 10492014,
+ "longestApexExecutionNano": 121467235
+ },
+ {
+ "batchNumber": 5566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143884341,
+ "shortestRoundTripNano": 75060100,
+ "longestRoundTripNano": 172476806,
+ "averageApexExecutionNano": 73045917,
+ "shortestApexExecutionNano": 11935276,
+ "longestApexExecutionNano": 130277606
+ },
+ {
+ "batchNumber": 5567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166712478,
+ "shortestRoundTripNano": 90898842,
+ "longestRoundTripNano": 197254914,
+ "averageApexExecutionNano": 60479860,
+ "shortestApexExecutionNano": 12467126,
+ "longestApexExecutionNano": 129445222
+ },
+ {
+ "batchNumber": 5568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155821684,
+ "shortestRoundTripNano": 69645328,
+ "longestRoundTripNano": 188665632,
+ "averageApexExecutionNano": 70013505,
+ "shortestApexExecutionNano": 11501043,
+ "longestApexExecutionNano": 135121237
+ },
+ {
+ "batchNumber": 5569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159742330,
+ "shortestRoundTripNano": 58099597,
+ "longestRoundTripNano": 190944533,
+ "averageApexExecutionNano": 76212372,
+ "shortestApexExecutionNano": 21150753,
+ "longestApexExecutionNano": 132899437
+ },
+ {
+ "batchNumber": 5570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140535653,
+ "shortestRoundTripNano": 53593045,
+ "longestRoundTripNano": 181065947,
+ "averageApexExecutionNano": 58738542,
+ "shortestApexExecutionNano": 9220178,
+ "longestApexExecutionNano": 127729517
+ },
+ {
+ "batchNumber": 5571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171904916,
+ "shortestRoundTripNano": 49485341,
+ "longestRoundTripNano": 209282596,
+ "averageApexExecutionNano": 63820110,
+ "shortestApexExecutionNano": 6775290,
+ "longestApexExecutionNano": 151049792
+ },
+ {
+ "batchNumber": 5572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148781648,
+ "shortestRoundTripNano": 47818804,
+ "longestRoundTripNano": 181569905,
+ "averageApexExecutionNano": 51688309,
+ "shortestApexExecutionNano": 8462298,
+ "longestApexExecutionNano": 111381780
+ },
+ {
+ "batchNumber": 5573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133949880,
+ "shortestRoundTripNano": 61642342,
+ "longestRoundTripNano": 163580932,
+ "averageApexExecutionNano": 58723603,
+ "shortestApexExecutionNano": 9759427,
+ "longestApexExecutionNano": 111871955
+ },
+ {
+ "batchNumber": 5574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152681015,
+ "shortestRoundTripNano": 78085788,
+ "longestRoundTripNano": 180345858,
+ "averageApexExecutionNano": 66430226,
+ "shortestApexExecutionNano": 6780893,
+ "longestApexExecutionNano": 132733966
+ },
+ {
+ "batchNumber": 5575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122366353,
+ "shortestRoundTripNano": 58827701,
+ "longestRoundTripNano": 158823207,
+ "averageApexExecutionNano": 57604876,
+ "shortestApexExecutionNano": 7960337,
+ "longestApexExecutionNano": 123853816
+ },
+ {
+ "batchNumber": 5576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138630648,
+ "shortestRoundTripNano": 67725168,
+ "longestRoundTripNano": 170180622,
+ "averageApexExecutionNano": 66777534,
+ "shortestApexExecutionNano": 9294648,
+ "longestApexExecutionNano": 141541584
+ },
+ {
+ "batchNumber": 5577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167579713,
+ "shortestRoundTripNano": 55292044,
+ "longestRoundTripNano": 212050686,
+ "averageApexExecutionNano": 58657390,
+ "shortestApexExecutionNano": 9125449,
+ "longestApexExecutionNano": 120363192
+ },
+ {
+ "batchNumber": 5578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144002365,
+ "shortestRoundTripNano": 51590909,
+ "longestRoundTripNano": 176542143,
+ "averageApexExecutionNano": 61873402,
+ "shortestApexExecutionNano": 6002700,
+ "longestApexExecutionNano": 137897668
+ },
+ {
+ "batchNumber": 5579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141126491,
+ "shortestRoundTripNano": 65170153,
+ "longestRoundTripNano": 174091789,
+ "averageApexExecutionNano": 55633976,
+ "shortestApexExecutionNano": 9078368,
+ "longestApexExecutionNano": 114856246
+ },
+ {
+ "batchNumber": 5580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172259276,
+ "shortestRoundTripNano": 101991786,
+ "longestRoundTripNano": 197249858,
+ "averageApexExecutionNano": 72575755,
+ "shortestApexExecutionNano": 6634861,
+ "longestApexExecutionNano": 147646745
+ },
+ {
+ "batchNumber": 5581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135616689,
+ "shortestRoundTripNano": 69685986,
+ "longestRoundTripNano": 163681593,
+ "averageApexExecutionNano": 54491061,
+ "shortestApexExecutionNano": 5685071,
+ "longestApexExecutionNano": 114201634
+ },
+ {
+ "batchNumber": 5582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148636849,
+ "shortestRoundTripNano": 64442824,
+ "longestRoundTripNano": 178278048,
+ "averageApexExecutionNano": 74689886,
+ "shortestApexExecutionNano": 10032135,
+ "longestApexExecutionNano": 129858043
+ },
+ {
+ "batchNumber": 5583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137853783,
+ "shortestRoundTripNano": 75300032,
+ "longestRoundTripNano": 163299058,
+ "averageApexExecutionNano": 65492676,
+ "shortestApexExecutionNano": 6724638,
+ "longestApexExecutionNano": 115694410
+ },
+ {
+ "batchNumber": 5584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183553930,
+ "shortestRoundTripNano": 97149075,
+ "longestRoundTripNano": 223782123,
+ "averageApexExecutionNano": 60959398,
+ "shortestApexExecutionNano": 7604935,
+ "longestApexExecutionNano": 125886757
+ },
+ {
+ "batchNumber": 5585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157593175,
+ "shortestRoundTripNano": 93787590,
+ "longestRoundTripNano": 181211269,
+ "averageApexExecutionNano": 69438899,
+ "shortestApexExecutionNano": 6031033,
+ "longestApexExecutionNano": 128894530
+ },
+ {
+ "batchNumber": 5586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161081808,
+ "shortestRoundTripNano": 71192977,
+ "longestRoundTripNano": 198351677,
+ "averageApexExecutionNano": 65813145,
+ "shortestApexExecutionNano": 11014936,
+ "longestApexExecutionNano": 122645334
+ },
+ {
+ "batchNumber": 5587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128142575,
+ "shortestRoundTripNano": 70852605,
+ "longestRoundTripNano": 157320953,
+ "averageApexExecutionNano": 64173240,
+ "shortestApexExecutionNano": 7082033,
+ "longestApexExecutionNano": 123466500
+ },
+ {
+ "batchNumber": 5588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143846834,
+ "shortestRoundTripNano": 39997638,
+ "longestRoundTripNano": 183770145,
+ "averageApexExecutionNano": 64248950,
+ "shortestApexExecutionNano": 8893269,
+ "longestApexExecutionNano": 123293566
+ },
+ {
+ "batchNumber": 5589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140497289,
+ "shortestRoundTripNano": 57345805,
+ "longestRoundTripNano": 174297188,
+ "averageApexExecutionNano": 72773315,
+ "shortestApexExecutionNano": 7739141,
+ "longestApexExecutionNano": 131596506
+ },
+ {
+ "batchNumber": 5590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161877740,
+ "shortestRoundTripNano": 58205074,
+ "longestRoundTripNano": 217392310,
+ "averageApexExecutionNano": 65661701,
+ "shortestApexExecutionNano": 10648496,
+ "longestApexExecutionNano": 134198453
+ },
+ {
+ "batchNumber": 5591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147529978,
+ "shortestRoundTripNano": 80630372,
+ "longestRoundTripNano": 169354336,
+ "averageApexExecutionNano": 62517511,
+ "shortestApexExecutionNano": 10047219,
+ "longestApexExecutionNano": 120882789
+ },
+ {
+ "batchNumber": 5592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36854",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 258083452,
+ "shortestRoundTripNano": 64456607,
+ "longestRoundTripNano": 315463075,
+ "averageApexExecutionNano": 108873916,
+ "shortestApexExecutionNano": 8757106,
+ "longestApexExecutionNano": 216445581
+ },
+ {
+ "batchNumber": 5593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36858",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159491356,
+ "shortestRoundTripNano": 89029544,
+ "longestRoundTripNano": 186109094,
+ "averageApexExecutionNano": 72978649,
+ "shortestApexExecutionNano": 7328051,
+ "longestApexExecutionNano": 143347349
+ },
+ {
+ "batchNumber": 5594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36858",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158599909,
+ "shortestRoundTripNano": 59038352,
+ "longestRoundTripNano": 195500234,
+ "averageApexExecutionNano": 69489379,
+ "shortestApexExecutionNano": 10199764,
+ "longestApexExecutionNano": 140563463
+ },
+ {
+ "batchNumber": 5595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134010136,
+ "shortestRoundTripNano": 56565905,
+ "longestRoundTripNano": 165820307,
+ "averageApexExecutionNano": 61639445,
+ "shortestApexExecutionNano": 6667846,
+ "longestApexExecutionNano": 130119264
+ },
+ {
+ "batchNumber": 5596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142126545,
+ "shortestRoundTripNano": 49345969,
+ "longestRoundTripNano": 178286018,
+ "averageApexExecutionNano": 59110712,
+ "shortestApexExecutionNano": 7829569,
+ "longestApexExecutionNano": 116923266
+ },
+ {
+ "batchNumber": 5597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147235429,
+ "shortestRoundTripNano": 73519597,
+ "longestRoundTripNano": 173096062,
+ "averageApexExecutionNano": 64849973,
+ "shortestApexExecutionNano": 8176898,
+ "longestApexExecutionNano": 116152982
+ },
+ {
+ "batchNumber": 5598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162130108,
+ "shortestRoundTripNano": 55723220,
+ "longestRoundTripNano": 194200352,
+ "averageApexExecutionNano": 83602945,
+ "shortestApexExecutionNano": 4770682,
+ "longestApexExecutionNano": 146968459
+ },
+ {
+ "batchNumber": 5599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145082489,
+ "shortestRoundTripNano": 57774980,
+ "longestRoundTripNano": 181844322,
+ "averageApexExecutionNano": 51959466,
+ "shortestApexExecutionNano": 8389293,
+ "longestApexExecutionNano": 108696338
+ },
+ {
+ "batchNumber": 5600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154742660,
+ "shortestRoundTripNano": 68981868,
+ "longestRoundTripNano": 204880831,
+ "averageApexExecutionNano": 66251161,
+ "shortestApexExecutionNano": 10200037,
+ "longestApexExecutionNano": 127847469
+ },
+ {
+ "batchNumber": 5601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164925750,
+ "shortestRoundTripNano": 75793938,
+ "longestRoundTripNano": 192356805,
+ "averageApexExecutionNano": 78983060,
+ "shortestApexExecutionNano": 10306152,
+ "longestApexExecutionNano": 148214061
+ },
+ {
+ "batchNumber": 5602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140804398,
+ "shortestRoundTripNano": 63541609,
+ "longestRoundTripNano": 166999678,
+ "averageApexExecutionNano": 57349675,
+ "shortestApexExecutionNano": 7596596,
+ "longestApexExecutionNano": 101497903
+ },
+ {
+ "batchNumber": 5603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161459759,
+ "shortestRoundTripNano": 60712283,
+ "longestRoundTripNano": 189437340,
+ "averageApexExecutionNano": 64884605,
+ "shortestApexExecutionNano": 8562173,
+ "longestApexExecutionNano": 118928404
+ },
+ {
+ "batchNumber": 5604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128101861,
+ "shortestRoundTripNano": 36804988,
+ "longestRoundTripNano": 152862444,
+ "averageApexExecutionNano": 58811158,
+ "shortestApexExecutionNano": 7582702,
+ "longestApexExecutionNano": 110324393
+ },
+ {
+ "batchNumber": 5605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195863153,
+ "shortestRoundTripNano": 111608841,
+ "longestRoundTripNano": 224033013,
+ "averageApexExecutionNano": 88262422,
+ "shortestApexExecutionNano": 13018052,
+ "longestApexExecutionNano": 159714918
+ },
+ {
+ "batchNumber": 5606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135899315,
+ "shortestRoundTripNano": 60808675,
+ "longestRoundTripNano": 167093471,
+ "averageApexExecutionNano": 60161733,
+ "shortestApexExecutionNano": 6340042,
+ "longestApexExecutionNano": 103756518
+ },
+ {
+ "batchNumber": 5607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137783863,
+ "shortestRoundTripNano": 75485764,
+ "longestRoundTripNano": 164951032,
+ "averageApexExecutionNano": 63663111,
+ "shortestApexExecutionNano": 8531301,
+ "longestApexExecutionNano": 117453596
+ },
+ {
+ "batchNumber": 5608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134757167,
+ "shortestRoundTripNano": 61664974,
+ "longestRoundTripNano": 174464665,
+ "averageApexExecutionNano": 57048480,
+ "shortestApexExecutionNano": 6098300,
+ "longestApexExecutionNano": 116939995
+ },
+ {
+ "batchNumber": 5609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155410674,
+ "shortestRoundTripNano": 66040117,
+ "longestRoundTripNano": 182210359,
+ "averageApexExecutionNano": 74757131,
+ "shortestApexExecutionNano": 12209696,
+ "longestApexExecutionNano": 131440163
+ },
+ {
+ "batchNumber": 5610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129836071,
+ "shortestRoundTripNano": 58468359,
+ "longestRoundTripNano": 168358108,
+ "averageApexExecutionNano": 59166626,
+ "shortestApexExecutionNano": 9642899,
+ "longestApexExecutionNano": 123459944
+ },
+ {
+ "batchNumber": 5611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148460105,
+ "shortestRoundTripNano": 62233673,
+ "longestRoundTripNano": 178287055,
+ "averageApexExecutionNano": 66348833,
+ "shortestApexExecutionNano": 6870601,
+ "longestApexExecutionNano": 119758739
+ },
+ {
+ "batchNumber": 5612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128123605,
+ "shortestRoundTripNano": 60732603,
+ "longestRoundTripNano": 152361591,
+ "averageApexExecutionNano": 51367027,
+ "shortestApexExecutionNano": 8951949,
+ "longestApexExecutionNano": 109788846
+ },
+ {
+ "batchNumber": 5613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168184765,
+ "shortestRoundTripNano": 68098162,
+ "longestRoundTripNano": 198937630,
+ "averageApexExecutionNano": 74248428,
+ "shortestApexExecutionNano": 12565966,
+ "longestApexExecutionNano": 130458315
+ },
+ {
+ "batchNumber": 5614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137570072,
+ "shortestRoundTripNano": 65279079,
+ "longestRoundTripNano": 163053248,
+ "averageApexExecutionNano": 67839946,
+ "shortestApexExecutionNano": 8434758,
+ "longestApexExecutionNano": 129238428
+ },
+ {
+ "batchNumber": 5615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160790598,
+ "shortestRoundTripNano": 55160300,
+ "longestRoundTripNano": 193325212,
+ "averageApexExecutionNano": 63424936,
+ "shortestApexExecutionNano": 11300069,
+ "longestApexExecutionNano": 144114133
+ },
+ {
+ "batchNumber": 5616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126043828,
+ "shortestRoundTripNano": 56407888,
+ "longestRoundTripNano": 152234550,
+ "averageApexExecutionNano": 58316373,
+ "shortestApexExecutionNano": 10183989,
+ "longestApexExecutionNano": 107895458
+ },
+ {
+ "batchNumber": 5617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135175937,
+ "shortestRoundTripNano": 54671058,
+ "longestRoundTripNano": 166202797,
+ "averageApexExecutionNano": 54643463,
+ "shortestApexExecutionNano": 7060666,
+ "longestApexExecutionNano": 103531188
+ },
+ {
+ "batchNumber": 5618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143975588,
+ "shortestRoundTripNano": 71438061,
+ "longestRoundTripNano": 170505422,
+ "averageApexExecutionNano": 68409464,
+ "shortestApexExecutionNano": 18927774,
+ "longestApexExecutionNano": 121151558
+ },
+ {
+ "batchNumber": 5619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146346002,
+ "shortestRoundTripNano": 58563630,
+ "longestRoundTripNano": 179689558,
+ "averageApexExecutionNano": 61497844,
+ "shortestApexExecutionNano": 6759024,
+ "longestApexExecutionNano": 128124303
+ },
+ {
+ "batchNumber": 5620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130227489,
+ "shortestRoundTripNano": 49837103,
+ "longestRoundTripNano": 158521855,
+ "averageApexExecutionNano": 56146028,
+ "shortestApexExecutionNano": 11929357,
+ "longestApexExecutionNano": 102344857
+ },
+ {
+ "batchNumber": 5621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154120192,
+ "shortestRoundTripNano": 76030168,
+ "longestRoundTripNano": 182802715,
+ "averageApexExecutionNano": 50898907,
+ "shortestApexExecutionNano": 7001355,
+ "longestApexExecutionNano": 120944742
+ },
+ {
+ "batchNumber": 5622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150490664,
+ "shortestRoundTripNano": 59220072,
+ "longestRoundTripNano": 177011010,
+ "averageApexExecutionNano": 49280062,
+ "shortestApexExecutionNano": 7289505,
+ "longestApexExecutionNano": 114427506
+ },
+ {
+ "batchNumber": 5623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150192275,
+ "shortestRoundTripNano": 74679307,
+ "longestRoundTripNano": 182903719,
+ "averageApexExecutionNano": 57014191,
+ "shortestApexExecutionNano": 9016106,
+ "longestApexExecutionNano": 135864722
+ },
+ {
+ "batchNumber": 5624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133985549,
+ "shortestRoundTripNano": 59058164,
+ "longestRoundTripNano": 167193467,
+ "averageApexExecutionNano": 61284401,
+ "shortestApexExecutionNano": 6552009,
+ "longestApexExecutionNano": 120527961
+ },
+ {
+ "batchNumber": 5625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153492752,
+ "shortestRoundTripNano": 62102161,
+ "longestRoundTripNano": 194217980,
+ "averageApexExecutionNano": 60804149,
+ "shortestApexExecutionNano": 7949867,
+ "longestApexExecutionNano": 129887209
+ },
+ {
+ "batchNumber": 5626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151626615,
+ "shortestRoundTripNano": 57864426,
+ "longestRoundTripNano": 178758070,
+ "averageApexExecutionNano": 69237345,
+ "shortestApexExecutionNano": 16036537,
+ "longestApexExecutionNano": 124225859
+ },
+ {
+ "batchNumber": 5627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158589744,
+ "shortestRoundTripNano": 85665340,
+ "longestRoundTripNano": 182420130,
+ "averageApexExecutionNano": 64879925,
+ "shortestApexExecutionNano": 9418811,
+ "longestApexExecutionNano": 130419798
+ },
+ {
+ "batchNumber": 5628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149024153,
+ "shortestRoundTripNano": 61483566,
+ "longestRoundTripNano": 172565247,
+ "averageApexExecutionNano": 67208373,
+ "shortestApexExecutionNano": 13426533,
+ "longestApexExecutionNano": 127516524
+ },
+ {
+ "batchNumber": 5629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167740070,
+ "shortestRoundTripNano": 42443076,
+ "longestRoundTripNano": 206300026,
+ "averageApexExecutionNano": 68631035,
+ "shortestApexExecutionNano": 10640621,
+ "longestApexExecutionNano": 146024479
+ },
+ {
+ "batchNumber": 5630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168940103,
+ "shortestRoundTripNano": 91253742,
+ "longestRoundTripNano": 194709089,
+ "averageApexExecutionNano": 74331866,
+ "shortestApexExecutionNano": 9876013,
+ "longestApexExecutionNano": 146582429
+ },
+ {
+ "batchNumber": 5631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132137128,
+ "shortestRoundTripNano": 76778835,
+ "longestRoundTripNano": 158228241,
+ "averageApexExecutionNano": 51570165,
+ "shortestApexExecutionNano": 11737646,
+ "longestApexExecutionNano": 109252982
+ },
+ {
+ "batchNumber": 5632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141080383,
+ "shortestRoundTripNano": 78386595,
+ "longestRoundTripNano": 171560253,
+ "averageApexExecutionNano": 65359538,
+ "shortestApexExecutionNano": 8611067,
+ "longestApexExecutionNano": 117338755
+ },
+ {
+ "batchNumber": 5633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164531904,
+ "shortestRoundTripNano": 64029726,
+ "longestRoundTripNano": 191165973,
+ "averageApexExecutionNano": 70276541,
+ "shortestApexExecutionNano": 20375093,
+ "longestApexExecutionNano": 135998549
+ },
+ {
+ "batchNumber": 5634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167818034,
+ "shortestRoundTripNano": 61803973,
+ "longestRoundTripNano": 205225338,
+ "averageApexExecutionNano": 61704163,
+ "shortestApexExecutionNano": 8047314,
+ "longestApexExecutionNano": 128881976
+ },
+ {
+ "batchNumber": 5635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160149790,
+ "shortestRoundTripNano": 52536179,
+ "longestRoundTripNano": 219292372,
+ "averageApexExecutionNano": 81318919,
+ "shortestApexExecutionNano": 8175116,
+ "longestApexExecutionNano": 155385703
+ },
+ {
+ "batchNumber": 5636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160340349,
+ "shortestRoundTripNano": 49603394,
+ "longestRoundTripNano": 192332291,
+ "averageApexExecutionNano": 62027097,
+ "shortestApexExecutionNano": 8726703,
+ "longestApexExecutionNano": 142592516
+ },
+ {
+ "batchNumber": 5637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36876",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131683669,
+ "shortestRoundTripNano": 60736819,
+ "longestRoundTripNano": 156096681,
+ "averageApexExecutionNano": 54434207,
+ "shortestApexExecutionNano": 8229432,
+ "longestApexExecutionNano": 117166982
+ },
+ {
+ "batchNumber": 5638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132193298,
+ "shortestRoundTripNano": 58564082,
+ "longestRoundTripNano": 164931654,
+ "averageApexExecutionNano": 37897183,
+ "shortestApexExecutionNano": 6974171,
+ "longestApexExecutionNano": 123169147
+ },
+ {
+ "batchNumber": 5639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171189892,
+ "shortestRoundTripNano": 58595122,
+ "longestRoundTripNano": 210442276,
+ "averageApexExecutionNano": 67933008,
+ "shortestApexExecutionNano": 11343851,
+ "longestApexExecutionNano": 140181857
+ },
+ {
+ "batchNumber": 5640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161801470,
+ "shortestRoundTripNano": 50704839,
+ "longestRoundTripNano": 193964328,
+ "averageApexExecutionNano": 75672576,
+ "shortestApexExecutionNano": 8572334,
+ "longestApexExecutionNano": 132962092
+ },
+ {
+ "batchNumber": 5641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132483788,
+ "shortestRoundTripNano": 57910376,
+ "longestRoundTripNano": 169101435,
+ "averageApexExecutionNano": 51340922,
+ "shortestApexExecutionNano": 8763473,
+ "longestApexExecutionNano": 124935511
+ },
+ {
+ "batchNumber": 5642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153479225,
+ "shortestRoundTripNano": 49894995,
+ "longestRoundTripNano": 188597573,
+ "averageApexExecutionNano": 64635828,
+ "shortestApexExecutionNano": 10051066,
+ "longestApexExecutionNano": 138931603
+ },
+ {
+ "batchNumber": 5643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158243445,
+ "shortestRoundTripNano": 50472974,
+ "longestRoundTripNano": 193076336,
+ "averageApexExecutionNano": 60992011,
+ "shortestApexExecutionNano": 9341902,
+ "longestApexExecutionNano": 137425357
+ },
+ {
+ "batchNumber": 5644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147795443,
+ "shortestRoundTripNano": 73747823,
+ "longestRoundTripNano": 176547743,
+ "averageApexExecutionNano": 61298096,
+ "shortestApexExecutionNano": 9608172,
+ "longestApexExecutionNano": 131012085
+ },
+ {
+ "batchNumber": 5645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157627235,
+ "shortestRoundTripNano": 60576806,
+ "longestRoundTripNano": 194333311,
+ "averageApexExecutionNano": 68742600,
+ "shortestApexExecutionNano": 8326159,
+ "longestApexExecutionNano": 137499811
+ },
+ {
+ "batchNumber": 5646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161559380,
+ "shortestRoundTripNano": 30682871,
+ "longestRoundTripNano": 194312567,
+ "averageApexExecutionNano": 80381911,
+ "shortestApexExecutionNano": 5041502,
+ "longestApexExecutionNano": 135522399
+ },
+ {
+ "batchNumber": 5647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161432393,
+ "shortestRoundTripNano": 68898882,
+ "longestRoundTripNano": 189508083,
+ "averageApexExecutionNano": 65089171,
+ "shortestApexExecutionNano": 7585570,
+ "longestApexExecutionNano": 144722842
+ },
+ {
+ "batchNumber": 5648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160806901,
+ "shortestRoundTripNano": 81020514,
+ "longestRoundTripNano": 184765772,
+ "averageApexExecutionNano": 65289819,
+ "shortestApexExecutionNano": 10200743,
+ "longestApexExecutionNano": 129407580
+ },
+ {
+ "batchNumber": 5649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145075784,
+ "shortestRoundTripNano": 70667672,
+ "longestRoundTripNano": 182413025,
+ "averageApexExecutionNano": 64646655,
+ "shortestApexExecutionNano": 6717523,
+ "longestApexExecutionNano": 146737483
+ },
+ {
+ "batchNumber": 5650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143616905,
+ "shortestRoundTripNano": 39420537,
+ "longestRoundTripNano": 177912344,
+ "averageApexExecutionNano": 69649640,
+ "shortestApexExecutionNano": 16128285,
+ "longestApexExecutionNano": 123369656
+ },
+ {
+ "batchNumber": 5651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147308907,
+ "shortestRoundTripNano": 61511003,
+ "longestRoundTripNano": 177971024,
+ "averageApexExecutionNano": 66708882,
+ "shortestApexExecutionNano": 9326280,
+ "longestApexExecutionNano": 111927534
+ },
+ {
+ "batchNumber": 5652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146779356,
+ "shortestRoundTripNano": 55785910,
+ "longestRoundTripNano": 175302928,
+ "averageApexExecutionNano": 68251750,
+ "shortestApexExecutionNano": 8007187,
+ "longestApexExecutionNano": 137821645
+ },
+ {
+ "batchNumber": 5653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130226648,
+ "shortestRoundTripNano": 53983109,
+ "longestRoundTripNano": 166419623,
+ "averageApexExecutionNano": 50534078,
+ "shortestApexExecutionNano": 10119797,
+ "longestApexExecutionNano": 115214151
+ },
+ {
+ "batchNumber": 5654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155029632,
+ "shortestRoundTripNano": 40790408,
+ "longestRoundTripNano": 187353237,
+ "averageApexExecutionNano": 69979321,
+ "shortestApexExecutionNano": 5400221,
+ "longestApexExecutionNano": 124262762
+ },
+ {
+ "batchNumber": 5655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158985715,
+ "shortestRoundTripNano": 92564527,
+ "longestRoundTripNano": 188888980,
+ "averageApexExecutionNano": 78459439,
+ "shortestApexExecutionNano": 11037329,
+ "longestApexExecutionNano": 151071680
+ },
+ {
+ "batchNumber": 5656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151729688,
+ "shortestRoundTripNano": 78356354,
+ "longestRoundTripNano": 181881275,
+ "averageApexExecutionNano": 65414333,
+ "shortestApexExecutionNano": 5071598,
+ "longestApexExecutionNano": 132923251
+ },
+ {
+ "batchNumber": 5657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143341078,
+ "shortestRoundTripNano": 65197487,
+ "longestRoundTripNano": 179594422,
+ "averageApexExecutionNano": 60988703,
+ "shortestApexExecutionNano": 7051490,
+ "longestApexExecutionNano": 139552695
+ },
+ {
+ "batchNumber": 5658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142647755,
+ "shortestRoundTripNano": 44064198,
+ "longestRoundTripNano": 173633336,
+ "averageApexExecutionNano": 57512239,
+ "shortestApexExecutionNano": 7119211,
+ "longestApexExecutionNano": 124868858
+ },
+ {
+ "batchNumber": 5659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153417613,
+ "shortestRoundTripNano": 50740422,
+ "longestRoundTripNano": 205122805,
+ "averageApexExecutionNano": 58825238,
+ "shortestApexExecutionNano": 9284345,
+ "longestApexExecutionNano": 111755849
+ },
+ {
+ "batchNumber": 5660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138991741,
+ "shortestRoundTripNano": 85006183,
+ "longestRoundTripNano": 166621359,
+ "averageApexExecutionNano": 67373743,
+ "shortestApexExecutionNano": 12555688,
+ "longestApexExecutionNano": 129318817
+ },
+ {
+ "batchNumber": 5661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169942391,
+ "shortestRoundTripNano": 40880513,
+ "longestRoundTripNano": 204676037,
+ "averageApexExecutionNano": 62231996,
+ "shortestApexExecutionNano": 8452022,
+ "longestApexExecutionNano": 149463597
+ },
+ {
+ "batchNumber": 5662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153450983,
+ "shortestRoundTripNano": 74533940,
+ "longestRoundTripNano": 181636643,
+ "averageApexExecutionNano": 52220672,
+ "shortestApexExecutionNano": 9152523,
+ "longestApexExecutionNano": 110835857
+ },
+ {
+ "batchNumber": 5663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160515493,
+ "shortestRoundTripNano": 68857045,
+ "longestRoundTripNano": 200610536,
+ "averageApexExecutionNano": 63152679,
+ "shortestApexExecutionNano": 11964262,
+ "longestApexExecutionNano": 136364423
+ },
+ {
+ "batchNumber": 5664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150870745,
+ "shortestRoundTripNano": 67007402,
+ "longestRoundTripNano": 176149695,
+ "averageApexExecutionNano": 62251225,
+ "shortestApexExecutionNano": 6639106,
+ "longestApexExecutionNano": 126010343
+ },
+ {
+ "batchNumber": 5665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155351255,
+ "shortestRoundTripNano": 90768255,
+ "longestRoundTripNano": 182767948,
+ "averageApexExecutionNano": 63342379,
+ "shortestApexExecutionNano": 11561092,
+ "longestApexExecutionNano": 111463065
+ },
+ {
+ "batchNumber": 5666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133911094,
+ "shortestRoundTripNano": 80761970,
+ "longestRoundTripNano": 166615436,
+ "averageApexExecutionNano": 72483700,
+ "shortestApexExecutionNano": 15279819,
+ "longestApexExecutionNano": 126603082
+ },
+ {
+ "batchNumber": 5667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142368820,
+ "shortestRoundTripNano": 66601695,
+ "longestRoundTripNano": 172173705,
+ "averageApexExecutionNano": 65051142,
+ "shortestApexExecutionNano": 15750988,
+ "longestApexExecutionNano": 120339570
+ },
+ {
+ "batchNumber": 5668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153337356,
+ "shortestRoundTripNano": 74902418,
+ "longestRoundTripNano": 189966259,
+ "averageApexExecutionNano": 55903024,
+ "shortestApexExecutionNano": 8872139,
+ "longestApexExecutionNano": 130164346
+ },
+ {
+ "batchNumber": 5669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137649998,
+ "shortestRoundTripNano": 44814335,
+ "longestRoundTripNano": 166292993,
+ "averageApexExecutionNano": 54631490,
+ "shortestApexExecutionNano": 9799603,
+ "longestApexExecutionNano": 114171874
+ },
+ {
+ "batchNumber": 5670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138407785,
+ "shortestRoundTripNano": 69128396,
+ "longestRoundTripNano": 164126726,
+ "averageApexExecutionNano": 55061399,
+ "shortestApexExecutionNano": 7569526,
+ "longestApexExecutionNano": 118318254
+ },
+ {
+ "batchNumber": 5671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150378918,
+ "shortestRoundTripNano": 52778377,
+ "longestRoundTripNano": 180932229,
+ "averageApexExecutionNano": 57370779,
+ "shortestApexExecutionNano": 14515932,
+ "longestApexExecutionNano": 117170785
+ },
+ {
+ "batchNumber": 5672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140409545,
+ "shortestRoundTripNano": 24906296,
+ "longestRoundTripNano": 170146695,
+ "averageApexExecutionNano": 59867833,
+ "shortestApexExecutionNano": 8186693,
+ "longestApexExecutionNano": 123286230
+ },
+ {
+ "batchNumber": 5673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150910064,
+ "shortestRoundTripNano": 58575560,
+ "longestRoundTripNano": 190186208,
+ "averageApexExecutionNano": 68803643,
+ "shortestApexExecutionNano": 6518456,
+ "longestApexExecutionNano": 139101145
+ },
+ {
+ "batchNumber": 5674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139651174,
+ "shortestRoundTripNano": 47644612,
+ "longestRoundTripNano": 174045158,
+ "averageApexExecutionNano": 43066864,
+ "shortestApexExecutionNano": 7028870,
+ "longestApexExecutionNano": 125521300
+ },
+ {
+ "batchNumber": 5675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36892",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152725370,
+ "shortestRoundTripNano": 42880133,
+ "longestRoundTripNano": 183634540,
+ "averageApexExecutionNano": 57335658,
+ "shortestApexExecutionNano": 7945418,
+ "longestApexExecutionNano": 143747630
+ },
+ {
+ "batchNumber": 5676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162832721,
+ "shortestRoundTripNano": 75472003,
+ "longestRoundTripNano": 191570252,
+ "averageApexExecutionNano": 77778420,
+ "shortestApexExecutionNano": 5994022,
+ "longestApexExecutionNano": 147796989
+ },
+ {
+ "batchNumber": 5677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152678660,
+ "shortestRoundTripNano": 60460604,
+ "longestRoundTripNano": 179202994,
+ "averageApexExecutionNano": 72271216,
+ "shortestApexExecutionNano": 12479717,
+ "longestApexExecutionNano": 142712095
+ },
+ {
+ "batchNumber": 5678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153427720,
+ "shortestRoundTripNano": 76467036,
+ "longestRoundTripNano": 178727167,
+ "averageApexExecutionNano": 71642677,
+ "shortestApexExecutionNano": 5988594,
+ "longestApexExecutionNano": 137257854
+ },
+ {
+ "batchNumber": 5679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142435494,
+ "shortestRoundTripNano": 76097838,
+ "longestRoundTripNano": 169158621,
+ "averageApexExecutionNano": 63969922,
+ "shortestApexExecutionNano": 8363503,
+ "longestApexExecutionNano": 116872495
+ },
+ {
+ "batchNumber": 5680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147266741,
+ "shortestRoundTripNano": 71018889,
+ "longestRoundTripNano": 176114186,
+ "averageApexExecutionNano": 58940420,
+ "shortestApexExecutionNano": 10064686,
+ "longestApexExecutionNano": 112823278
+ },
+ {
+ "batchNumber": 5681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158587829,
+ "shortestRoundTripNano": 66348914,
+ "longestRoundTripNano": 184491322,
+ "averageApexExecutionNano": 68650775,
+ "shortestApexExecutionNano": 12370689,
+ "longestApexExecutionNano": 140010839
+ },
+ {
+ "batchNumber": 5682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142034089,
+ "shortestRoundTripNano": 62458767,
+ "longestRoundTripNano": 177302086,
+ "averageApexExecutionNano": 42557770,
+ "shortestApexExecutionNano": 9827116,
+ "longestApexExecutionNano": 107806347
+ },
+ {
+ "batchNumber": 5683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145851013,
+ "shortestRoundTripNano": 38487141,
+ "longestRoundTripNano": 190701676,
+ "averageApexExecutionNano": 72404989,
+ "shortestApexExecutionNano": 6660159,
+ "longestApexExecutionNano": 151730878
+ },
+ {
+ "batchNumber": 5684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148773993,
+ "shortestRoundTripNano": 70411575,
+ "longestRoundTripNano": 174890155,
+ "averageApexExecutionNano": 64343566,
+ "shortestApexExecutionNano": 8758708,
+ "longestApexExecutionNano": 116675860
+ },
+ {
+ "batchNumber": 5685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147099772,
+ "shortestRoundTripNano": 59805669,
+ "longestRoundTripNano": 182174564,
+ "averageApexExecutionNano": 51597539,
+ "shortestApexExecutionNano": 5868841,
+ "longestApexExecutionNano": 134910491
+ },
+ {
+ "batchNumber": 5686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152037145,
+ "shortestRoundTripNano": 83629475,
+ "longestRoundTripNano": 185600607,
+ "averageApexExecutionNano": 64860777,
+ "shortestApexExecutionNano": 8052077,
+ "longestApexExecutionNano": 131461261
+ },
+ {
+ "batchNumber": 5687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142709919,
+ "shortestRoundTripNano": 58172868,
+ "longestRoundTripNano": 172221818,
+ "averageApexExecutionNano": 68586338,
+ "shortestApexExecutionNano": 7370256,
+ "longestApexExecutionNano": 124945691
+ },
+ {
+ "batchNumber": 5688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152143163,
+ "shortestRoundTripNano": 56985099,
+ "longestRoundTripNano": 196461266,
+ "averageApexExecutionNano": 59401240,
+ "shortestApexExecutionNano": 9100257,
+ "longestApexExecutionNano": 133512058
+ },
+ {
+ "batchNumber": 5689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162264972,
+ "shortestRoundTripNano": 79314062,
+ "longestRoundTripNano": 198500783,
+ "averageApexExecutionNano": 67730195,
+ "shortestApexExecutionNano": 7197728,
+ "longestApexExecutionNano": 138816737
+ },
+ {
+ "batchNumber": 5690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145753319,
+ "shortestRoundTripNano": 64400249,
+ "longestRoundTripNano": 175916565,
+ "averageApexExecutionNano": 60678570,
+ "shortestApexExecutionNano": 4899386,
+ "longestApexExecutionNano": 129253782
+ },
+ {
+ "batchNumber": 5691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163920937,
+ "shortestRoundTripNano": 85585951,
+ "longestRoundTripNano": 187549147,
+ "averageApexExecutionNano": 84188190,
+ "shortestApexExecutionNano": 11193648,
+ "longestApexExecutionNano": 150167958
+ },
+ {
+ "batchNumber": 5692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148645368,
+ "shortestRoundTripNano": 71723300,
+ "longestRoundTripNano": 185336756,
+ "averageApexExecutionNano": 63970684,
+ "shortestApexExecutionNano": 6780104,
+ "longestApexExecutionNano": 140949288
+ },
+ {
+ "batchNumber": 5693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 229301465,
+ "shortestRoundTripNano": 98400248,
+ "longestRoundTripNano": 271779184,
+ "averageApexExecutionNano": 133041224,
+ "shortestApexExecutionNano": 57137440,
+ "longestApexExecutionNano": 201513984
+ },
+ {
+ "batchNumber": 5694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134980858,
+ "shortestRoundTripNano": 53394761,
+ "longestRoundTripNano": 167981697,
+ "averageApexExecutionNano": 59826164,
+ "shortestApexExecutionNano": 8229069,
+ "longestApexExecutionNano": 113235352
+ },
+ {
+ "batchNumber": 5695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158979230,
+ "shortestRoundTripNano": 49663888,
+ "longestRoundTripNano": 194572260,
+ "averageApexExecutionNano": 63984064,
+ "shortestApexExecutionNano": 17023686,
+ "longestApexExecutionNano": 134781591
+ },
+ {
+ "batchNumber": 5696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153782259,
+ "shortestRoundTripNano": 48550760,
+ "longestRoundTripNano": 184214992,
+ "averageApexExecutionNano": 70843378,
+ "shortestApexExecutionNano": 11355887,
+ "longestApexExecutionNano": 130643157
+ },
+ {
+ "batchNumber": 5697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138517062,
+ "shortestRoundTripNano": 64679147,
+ "longestRoundTripNano": 167160455,
+ "averageApexExecutionNano": 54737846,
+ "shortestApexExecutionNano": 9866848,
+ "longestApexExecutionNano": 114435307
+ },
+ {
+ "batchNumber": 5698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153556393,
+ "shortestRoundTripNano": 57266138,
+ "longestRoundTripNano": 188584467,
+ "averageApexExecutionNano": 62289678,
+ "shortestApexExecutionNano": 10254029,
+ "longestApexExecutionNano": 120518684
+ },
+ {
+ "batchNumber": 5699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172579683,
+ "shortestRoundTripNano": 97804044,
+ "longestRoundTripNano": 196633270,
+ "averageApexExecutionNano": 62214289,
+ "shortestApexExecutionNano": 6611268,
+ "longestApexExecutionNano": 143205647
+ },
+ {
+ "batchNumber": 5700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160199413,
+ "shortestRoundTripNano": 54264746,
+ "longestRoundTripNano": 200252001,
+ "averageApexExecutionNano": 64101309,
+ "shortestApexExecutionNano": 10897809,
+ "longestApexExecutionNano": 127243297
+ },
+ {
+ "batchNumber": 5701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140343535,
+ "shortestRoundTripNano": 72673587,
+ "longestRoundTripNano": 166696473,
+ "averageApexExecutionNano": 60738521,
+ "shortestApexExecutionNano": 9349280,
+ "longestApexExecutionNano": 122408306
+ },
+ {
+ "batchNumber": 5702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158526136,
+ "shortestRoundTripNano": 57508011,
+ "longestRoundTripNano": 200194909,
+ "averageApexExecutionNano": 75072897,
+ "shortestApexExecutionNano": 8909724,
+ "longestApexExecutionNano": 133641664
+ },
+ {
+ "batchNumber": 5703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146835083,
+ "shortestRoundTripNano": 42124343,
+ "longestRoundTripNano": 174883936,
+ "averageApexExecutionNano": 55507733,
+ "shortestApexExecutionNano": 8547410,
+ "longestApexExecutionNano": 122414047
+ },
+ {
+ "batchNumber": 5704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143932985,
+ "shortestRoundTripNano": 77995329,
+ "longestRoundTripNano": 172928067,
+ "averageApexExecutionNano": 61904725,
+ "shortestApexExecutionNano": 12857804,
+ "longestApexExecutionNano": 127632270
+ },
+ {
+ "batchNumber": 5705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140932758,
+ "shortestRoundTripNano": 58787786,
+ "longestRoundTripNano": 171164472,
+ "averageApexExecutionNano": 53208107,
+ "shortestApexExecutionNano": 9965525,
+ "longestApexExecutionNano": 106161661
+ },
+ {
+ "batchNumber": 5706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156674726,
+ "shortestRoundTripNano": 77962410,
+ "longestRoundTripNano": 182480530,
+ "averageApexExecutionNano": 72781472,
+ "shortestApexExecutionNano": 10470470,
+ "longestApexExecutionNano": 125879350
+ },
+ {
+ "batchNumber": 5707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36900",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188997456,
+ "shortestRoundTripNano": 93142217,
+ "longestRoundTripNano": 213890982,
+ "averageApexExecutionNano": 87578758,
+ "shortestApexExecutionNano": 16425281,
+ "longestApexExecutionNano": 154908967
+ },
+ {
+ "batchNumber": 5708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134696405,
+ "shortestRoundTripNano": 58366837,
+ "longestRoundTripNano": 165687874,
+ "averageApexExecutionNano": 58909555,
+ "shortestApexExecutionNano": 7433595,
+ "longestApexExecutionNano": 122763025
+ },
+ {
+ "batchNumber": 5709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141942120,
+ "shortestRoundTripNano": 70258495,
+ "longestRoundTripNano": 171358876,
+ "averageApexExecutionNano": 61576145,
+ "shortestApexExecutionNano": 5221512,
+ "longestApexExecutionNano": 108587479
+ },
+ {
+ "batchNumber": 5710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157664824,
+ "shortestRoundTripNano": 52890412,
+ "longestRoundTripNano": 188991730,
+ "averageApexExecutionNano": 77475829,
+ "shortestApexExecutionNano": 15034346,
+ "longestApexExecutionNano": 132330653
+ },
+ {
+ "batchNumber": 5711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149274101,
+ "shortestRoundTripNano": 81597143,
+ "longestRoundTripNano": 177286254,
+ "averageApexExecutionNano": 34275190,
+ "shortestApexExecutionNano": 7476101,
+ "longestApexExecutionNano": 113678092
+ },
+ {
+ "batchNumber": 5712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153797458,
+ "shortestRoundTripNano": 53185707,
+ "longestRoundTripNano": 182763787,
+ "averageApexExecutionNano": 57887457,
+ "shortestApexExecutionNano": 7078130,
+ "longestApexExecutionNano": 123777407
+ },
+ {
+ "batchNumber": 5713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148339716,
+ "shortestRoundTripNano": 74075825,
+ "longestRoundTripNano": 179666596,
+ "averageApexExecutionNano": 68284781,
+ "shortestApexExecutionNano": 6822647,
+ "longestApexExecutionNano": 129640400
+ },
+ {
+ "batchNumber": 5714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165495353,
+ "shortestRoundTripNano": 49108105,
+ "longestRoundTripNano": 192536847,
+ "averageApexExecutionNano": 71762045,
+ "shortestApexExecutionNano": 12211769,
+ "longestApexExecutionNano": 154218733
+ },
+ {
+ "batchNumber": 5715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143733471,
+ "shortestRoundTripNano": 56881294,
+ "longestRoundTripNano": 168313312,
+ "averageApexExecutionNano": 69192022,
+ "shortestApexExecutionNano": 7444423,
+ "longestApexExecutionNano": 112911519
+ },
+ {
+ "batchNumber": 5716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159521764,
+ "shortestRoundTripNano": 75418580,
+ "longestRoundTripNano": 197658356,
+ "averageApexExecutionNano": 58335716,
+ "shortestApexExecutionNano": 9592672,
+ "longestApexExecutionNano": 115353075
+ },
+ {
+ "batchNumber": 5717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147051280,
+ "shortestRoundTripNano": 81850344,
+ "longestRoundTripNano": 177614548,
+ "averageApexExecutionNano": 67659277,
+ "shortestApexExecutionNano": 18042426,
+ "longestApexExecutionNano": 128607020
+ },
+ {
+ "batchNumber": 5718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138170519,
+ "shortestRoundTripNano": 65346912,
+ "longestRoundTripNano": 170297592,
+ "averageApexExecutionNano": 66397629,
+ "shortestApexExecutionNano": 7225251,
+ "longestApexExecutionNano": 129519561
+ },
+ {
+ "batchNumber": 5719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136998423,
+ "shortestRoundTripNano": 58404029,
+ "longestRoundTripNano": 172769540,
+ "averageApexExecutionNano": 35355104,
+ "shortestApexExecutionNano": 7442124,
+ "longestApexExecutionNano": 84035686
+ },
+ {
+ "batchNumber": 5720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148515806,
+ "shortestRoundTripNano": 54209551,
+ "longestRoundTripNano": 197361118,
+ "averageApexExecutionNano": 62982330,
+ "shortestApexExecutionNano": 8357593,
+ "longestApexExecutionNano": 134180654
+ },
+ {
+ "batchNumber": 5721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155844555,
+ "shortestRoundTripNano": 79169051,
+ "longestRoundTripNano": 186528316,
+ "averageApexExecutionNano": 68801625,
+ "shortestApexExecutionNano": 7024062,
+ "longestApexExecutionNano": 144464430
+ },
+ {
+ "batchNumber": 5722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133803490,
+ "shortestRoundTripNano": 50308106,
+ "longestRoundTripNano": 159298897,
+ "averageApexExecutionNano": 53014958,
+ "shortestApexExecutionNano": 11983957,
+ "longestApexExecutionNano": 115860388
+ },
+ {
+ "batchNumber": 5723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150841281,
+ "shortestRoundTripNano": 67033175,
+ "longestRoundTripNano": 188447626,
+ "averageApexExecutionNano": 53816318,
+ "shortestApexExecutionNano": 6916080,
+ "longestApexExecutionNano": 126013859
+ },
+ {
+ "batchNumber": 5724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137008069,
+ "shortestRoundTripNano": 54899176,
+ "longestRoundTripNano": 160451753,
+ "averageApexExecutionNano": 51767228,
+ "shortestApexExecutionNano": 6518060,
+ "longestApexExecutionNano": 108187973
+ },
+ {
+ "batchNumber": 5725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161971136,
+ "shortestRoundTripNano": 75193609,
+ "longestRoundTripNano": 199565930,
+ "averageApexExecutionNano": 57402919,
+ "shortestApexExecutionNano": 6570455,
+ "longestApexExecutionNano": 153229202
+ },
+ {
+ "batchNumber": 5726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36912",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156038845,
+ "shortestRoundTripNano": 56729985,
+ "longestRoundTripNano": 201066932,
+ "averageApexExecutionNano": 41182580,
+ "shortestApexExecutionNano": 6810815,
+ "longestApexExecutionNano": 120319523
+ },
+ {
+ "batchNumber": 5727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36912",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117760415,
+ "shortestRoundTripNano": 64723732,
+ "longestRoundTripNano": 144910156,
+ "averageApexExecutionNano": 47503953,
+ "shortestApexExecutionNano": 6713836,
+ "longestApexExecutionNano": 107593200
+ },
+ {
+ "batchNumber": 5728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36912",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138926567,
+ "shortestRoundTripNano": 72178293,
+ "longestRoundTripNano": 164987058,
+ "averageApexExecutionNano": 64914786,
+ "shortestApexExecutionNano": 8599199,
+ "longestApexExecutionNano": 120257404
+ },
+ {
+ "batchNumber": 5729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36912",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135399586,
+ "shortestRoundTripNano": 80592252,
+ "longestRoundTripNano": 162189028,
+ "averageApexExecutionNano": 49992012,
+ "shortestApexExecutionNano": 6148845,
+ "longestApexExecutionNano": 100095871
+ },
+ {
+ "batchNumber": 5730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36912",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163747295,
+ "shortestRoundTripNano": 61597480,
+ "longestRoundTripNano": 190955760,
+ "averageApexExecutionNano": 88880638,
+ "shortestApexExecutionNano": 14516201,
+ "longestApexExecutionNano": 146551970
+ },
+ {
+ "batchNumber": 5731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146691968,
+ "shortestRoundTripNano": 62368469,
+ "longestRoundTripNano": 173531128,
+ "averageApexExecutionNano": 67724737,
+ "shortestApexExecutionNano": 6554220,
+ "longestApexExecutionNano": 127519272
+ },
+ {
+ "batchNumber": 5732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140911013,
+ "shortestRoundTripNano": 57600104,
+ "longestRoundTripNano": 165488850,
+ "averageApexExecutionNano": 49789137,
+ "shortestApexExecutionNano": 8580249,
+ "longestApexExecutionNano": 98155804
+ },
+ {
+ "batchNumber": 5733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136556264,
+ "shortestRoundTripNano": 80227711,
+ "longestRoundTripNano": 158414156,
+ "averageApexExecutionNano": 51592931,
+ "shortestApexExecutionNano": 10836177,
+ "longestApexExecutionNano": 104017894
+ },
+ {
+ "batchNumber": 5734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148381291,
+ "shortestRoundTripNano": 59153448,
+ "longestRoundTripNano": 181524141,
+ "averageApexExecutionNano": 63762270,
+ "shortestApexExecutionNano": 8115163,
+ "longestApexExecutionNano": 119392696
+ },
+ {
+ "batchNumber": 5735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147900377,
+ "shortestRoundTripNano": 85441210,
+ "longestRoundTripNano": 169846628,
+ "averageApexExecutionNano": 70783762,
+ "shortestApexExecutionNano": 11604020,
+ "longestApexExecutionNano": 118556472
+ },
+ {
+ "batchNumber": 5736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147454947,
+ "shortestRoundTripNano": 68855190,
+ "longestRoundTripNano": 181032140,
+ "averageApexExecutionNano": 62257852,
+ "shortestApexExecutionNano": 15620227,
+ "longestApexExecutionNano": 115387786
+ },
+ {
+ "batchNumber": 5737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121184635,
+ "shortestRoundTripNano": 59794546,
+ "longestRoundTripNano": 149380533,
+ "averageApexExecutionNano": 53558703,
+ "shortestApexExecutionNano": 6932137,
+ "longestApexExecutionNano": 97649872
+ },
+ {
+ "batchNumber": 5738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 254684825,
+ "shortestRoundTripNano": 55419418,
+ "longestRoundTripNano": 290210198,
+ "averageApexExecutionNano": 115395727,
+ "shortestApexExecutionNano": 6819118,
+ "longestApexExecutionNano": 228236594
+ },
+ {
+ "batchNumber": 5739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171183798,
+ "shortestRoundTripNano": 63237135,
+ "longestRoundTripNano": 198932569,
+ "averageApexExecutionNano": 74300999,
+ "shortestApexExecutionNano": 8598786,
+ "longestApexExecutionNano": 152365080
+ },
+ {
+ "batchNumber": 5740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139855058,
+ "shortestRoundTripNano": 54118245,
+ "longestRoundTripNano": 169474374,
+ "averageApexExecutionNano": 58650673,
+ "shortestApexExecutionNano": 7798014,
+ "longestApexExecutionNano": 106900799
+ },
+ {
+ "batchNumber": 5741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145723935,
+ "shortestRoundTripNano": 65772941,
+ "longestRoundTripNano": 173070084,
+ "averageApexExecutionNano": 72222652,
+ "shortestApexExecutionNano": 6948436,
+ "longestApexExecutionNano": 118236965
+ },
+ {
+ "batchNumber": 5742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157614096,
+ "shortestRoundTripNano": 77494958,
+ "longestRoundTripNano": 185889311,
+ "averageApexExecutionNano": 52217136,
+ "shortestApexExecutionNano": 9581757,
+ "longestApexExecutionNano": 114038259
+ },
+ {
+ "batchNumber": 5743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128158128,
+ "shortestRoundTripNano": 24027816,
+ "longestRoundTripNano": 156086278,
+ "averageApexExecutionNano": 59352228,
+ "shortestApexExecutionNano": 7053706,
+ "longestApexExecutionNano": 106331541
+ },
+ {
+ "batchNumber": 5744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150344454,
+ "shortestRoundTripNano": 68448191,
+ "longestRoundTripNano": 186783059,
+ "averageApexExecutionNano": 63296740,
+ "shortestApexExecutionNano": 8953268,
+ "longestApexExecutionNano": 120860472
+ },
+ {
+ "batchNumber": 5745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165255574,
+ "shortestRoundTripNano": 64017552,
+ "longestRoundTripNano": 202273830,
+ "averageApexExecutionNano": 77178470,
+ "shortestApexExecutionNano": 6498750,
+ "longestApexExecutionNano": 169374419
+ },
+ {
+ "batchNumber": 5746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188996195,
+ "shortestRoundTripNano": 98762731,
+ "longestRoundTripNano": 220825481,
+ "averageApexExecutionNano": 89540533,
+ "shortestApexExecutionNano": 11868852,
+ "longestApexExecutionNano": 167773407
+ },
+ {
+ "batchNumber": 5747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151684637,
+ "shortestRoundTripNano": 75654636,
+ "longestRoundTripNano": 195874865,
+ "averageApexExecutionNano": 57312660,
+ "shortestApexExecutionNano": 7267898,
+ "longestApexExecutionNano": 125911474
+ },
+ {
+ "batchNumber": 5748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146432872,
+ "shortestRoundTripNano": 72148448,
+ "longestRoundTripNano": 168042184,
+ "averageApexExecutionNano": 59022101,
+ "shortestApexExecutionNano": 11378068,
+ "longestApexExecutionNano": 131873214
+ },
+ {
+ "batchNumber": 5749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156385358,
+ "shortestRoundTripNano": 48460050,
+ "longestRoundTripNano": 191493592,
+ "averageApexExecutionNano": 61122377,
+ "shortestApexExecutionNano": 5892272,
+ "longestApexExecutionNano": 126229779
+ },
+ {
+ "batchNumber": 5750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145427618,
+ "shortestRoundTripNano": 44870215,
+ "longestRoundTripNano": 176756885,
+ "averageApexExecutionNano": 54370178,
+ "shortestApexExecutionNano": 8524124,
+ "longestApexExecutionNano": 117567533
+ },
+ {
+ "batchNumber": 5751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150018984,
+ "shortestRoundTripNano": 69670777,
+ "longestRoundTripNano": 171815817,
+ "averageApexExecutionNano": 67116178,
+ "shortestApexExecutionNano": 19574630,
+ "longestApexExecutionNano": 125392298
+ },
+ {
+ "batchNumber": 5752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136855012,
+ "shortestRoundTripNano": 59673816,
+ "longestRoundTripNano": 165266925,
+ "averageApexExecutionNano": 51328304,
+ "shortestApexExecutionNano": 7428074,
+ "longestApexExecutionNano": 121112344
+ },
+ {
+ "batchNumber": 5753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156238141,
+ "shortestRoundTripNano": 63131657,
+ "longestRoundTripNano": 180781441,
+ "averageApexExecutionNano": 62188764,
+ "shortestApexExecutionNano": 12570798,
+ "longestApexExecutionNano": 113691831
+ },
+ {
+ "batchNumber": 5754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150798322,
+ "shortestRoundTripNano": 81414458,
+ "longestRoundTripNano": 178841043,
+ "averageApexExecutionNano": 80466920,
+ "shortestApexExecutionNano": 13424906,
+ "longestApexExecutionNano": 137761263
+ },
+ {
+ "batchNumber": 5755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142420509,
+ "shortestRoundTripNano": 65634045,
+ "longestRoundTripNano": 163903049,
+ "averageApexExecutionNano": 61507547,
+ "shortestApexExecutionNano": 11486214,
+ "longestApexExecutionNano": 115952815
+ },
+ {
+ "batchNumber": 5756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151527229,
+ "shortestRoundTripNano": 50461951,
+ "longestRoundTripNano": 184418276,
+ "averageApexExecutionNano": 52949632,
+ "shortestApexExecutionNano": 8841506,
+ "longestApexExecutionNano": 104007280
+ },
+ {
+ "batchNumber": 5757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141647186,
+ "shortestRoundTripNano": 75052890,
+ "longestRoundTripNano": 162984298,
+ "averageApexExecutionNano": 50352294,
+ "shortestApexExecutionNano": 9114197,
+ "longestApexExecutionNano": 103636319
+ },
+ {
+ "batchNumber": 5758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159345470,
+ "shortestRoundTripNano": 50537338,
+ "longestRoundTripNano": 196891022,
+ "averageApexExecutionNano": 70755115,
+ "shortestApexExecutionNano": 7799529,
+ "longestApexExecutionNano": 154004821
+ },
+ {
+ "batchNumber": 5759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152856207,
+ "shortestRoundTripNano": 61991687,
+ "longestRoundTripNano": 187234192,
+ "averageApexExecutionNano": 57139029,
+ "shortestApexExecutionNano": 9508839,
+ "longestApexExecutionNano": 105591750
+ },
+ {
+ "batchNumber": 5760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163253809,
+ "shortestRoundTripNano": 65875161,
+ "longestRoundTripNano": 191191772,
+ "averageApexExecutionNano": 80217878,
+ "shortestApexExecutionNano": 12784443,
+ "longestApexExecutionNano": 137250990
+ },
+ {
+ "batchNumber": 5761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131496434,
+ "shortestRoundTripNano": 46540071,
+ "longestRoundTripNano": 160043757,
+ "averageApexExecutionNano": 57717853,
+ "shortestApexExecutionNano": 7674525,
+ "longestApexExecutionNano": 114220797
+ },
+ {
+ "batchNumber": 5762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146727978,
+ "shortestRoundTripNano": 55676837,
+ "longestRoundTripNano": 172742065,
+ "averageApexExecutionNano": 68900867,
+ "shortestApexExecutionNano": 10672044,
+ "longestApexExecutionNano": 130025936
+ },
+ {
+ "batchNumber": 5763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148789557,
+ "shortestRoundTripNano": 53730526,
+ "longestRoundTripNano": 184707957,
+ "averageApexExecutionNano": 61616654,
+ "shortestApexExecutionNano": 10371908,
+ "longestApexExecutionNano": 125208864
+ },
+ {
+ "batchNumber": 5764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144369114,
+ "shortestRoundTripNano": 75901782,
+ "longestRoundTripNano": 180899414,
+ "averageApexExecutionNano": 54231577,
+ "shortestApexExecutionNano": 11630495,
+ "longestApexExecutionNano": 111845236
+ },
+ {
+ "batchNumber": 5765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123684253,
+ "shortestRoundTripNano": 44572607,
+ "longestRoundTripNano": 153669222,
+ "averageApexExecutionNano": 53935792,
+ "shortestApexExecutionNano": 6935429,
+ "longestApexExecutionNano": 109985616
+ },
+ {
+ "batchNumber": 5766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140489491,
+ "shortestRoundTripNano": 52948220,
+ "longestRoundTripNano": 173397699,
+ "averageApexExecutionNano": 56317088,
+ "shortestApexExecutionNano": 6802679,
+ "longestApexExecutionNano": 112407903
+ },
+ {
+ "batchNumber": 5767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144371422,
+ "shortestRoundTripNano": 84997389,
+ "longestRoundTripNano": 169601757,
+ "averageApexExecutionNano": 71012042,
+ "shortestApexExecutionNano": 7288732,
+ "longestApexExecutionNano": 127499426
+ },
+ {
+ "batchNumber": 5768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151040318,
+ "shortestRoundTripNano": 51906566,
+ "longestRoundTripNano": 191327949,
+ "averageApexExecutionNano": 54186931,
+ "shortestApexExecutionNano": 10100415,
+ "longestApexExecutionNano": 153902592
+ },
+ {
+ "batchNumber": 5769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162622727,
+ "shortestRoundTripNano": 91927494,
+ "longestRoundTripNano": 186012072,
+ "averageApexExecutionNano": 70466373,
+ "shortestApexExecutionNano": 5807451,
+ "longestApexExecutionNano": 141703501
+ },
+ {
+ "batchNumber": 5770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137870957,
+ "shortestRoundTripNano": 60649998,
+ "longestRoundTripNano": 169802729,
+ "averageApexExecutionNano": 62349947,
+ "shortestApexExecutionNano": 7267678,
+ "longestApexExecutionNano": 116628331
+ },
+ {
+ "batchNumber": 5771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123524087,
+ "shortestRoundTripNano": 71098500,
+ "longestRoundTripNano": 143043583,
+ "averageApexExecutionNano": 50802951,
+ "shortestApexExecutionNano": 8985748,
+ "longestApexExecutionNano": 89520978
+ },
+ {
+ "batchNumber": 5772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142541965,
+ "shortestRoundTripNano": 72866613,
+ "longestRoundTripNano": 169857948,
+ "averageApexExecutionNano": 43671362,
+ "shortestApexExecutionNano": 9482762,
+ "longestApexExecutionNano": 107776585
+ },
+ {
+ "batchNumber": 5773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135154464,
+ "shortestRoundTripNano": 67551459,
+ "longestRoundTripNano": 167385268,
+ "averageApexExecutionNano": 52911888,
+ "shortestApexExecutionNano": 6912608,
+ "longestApexExecutionNano": 104115853
+ },
+ {
+ "batchNumber": 5774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132170234,
+ "shortestRoundTripNano": 60050105,
+ "longestRoundTripNano": 158908303,
+ "averageApexExecutionNano": 39529626,
+ "shortestApexExecutionNano": 6013003,
+ "longestApexExecutionNano": 93945030
+ },
+ {
+ "batchNumber": 5775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147741105,
+ "shortestRoundTripNano": 82248807,
+ "longestRoundTripNano": 175866119,
+ "averageApexExecutionNano": 72623510,
+ "shortestApexExecutionNano": 7846121,
+ "longestApexExecutionNano": 133277674
+ },
+ {
+ "batchNumber": 5776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146966619,
+ "shortestRoundTripNano": 48683972,
+ "longestRoundTripNano": 180130742,
+ "averageApexExecutionNano": 67249077,
+ "shortestApexExecutionNano": 11872145,
+ "longestApexExecutionNano": 132539876
+ },
+ {
+ "batchNumber": 5777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147938222,
+ "shortestRoundTripNano": 66871716,
+ "longestRoundTripNano": 182629270,
+ "averageApexExecutionNano": 56526994,
+ "shortestApexExecutionNano": 7073478,
+ "longestApexExecutionNano": 144656407
+ },
+ {
+ "batchNumber": 5778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147709564,
+ "shortestRoundTripNano": 42199241,
+ "longestRoundTripNano": 180126145,
+ "averageApexExecutionNano": 60449987,
+ "shortestApexExecutionNano": 5882471,
+ "longestApexExecutionNano": 102515511
+ },
+ {
+ "batchNumber": 5779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148502517,
+ "shortestRoundTripNano": 70706020,
+ "longestRoundTripNano": 177159731,
+ "averageApexExecutionNano": 62465337,
+ "shortestApexExecutionNano": 6276588,
+ "longestApexExecutionNano": 121042582
+ },
+ {
+ "batchNumber": 5780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149560428,
+ "shortestRoundTripNano": 60650903,
+ "longestRoundTripNano": 178085540,
+ "averageApexExecutionNano": 71693060,
+ "shortestApexExecutionNano": 12844333,
+ "longestApexExecutionNano": 126851724
+ },
+ {
+ "batchNumber": 5781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151543825,
+ "shortestRoundTripNano": 74799355,
+ "longestRoundTripNano": 182350947,
+ "averageApexExecutionNano": 49808906,
+ "shortestApexExecutionNano": 9178980,
+ "longestApexExecutionNano": 125109892
+ },
+ {
+ "batchNumber": 5782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161231304,
+ "shortestRoundTripNano": 42975416,
+ "longestRoundTripNano": 193886296,
+ "averageApexExecutionNano": 61919810,
+ "shortestApexExecutionNano": 8811520,
+ "longestApexExecutionNano": 137260698
+ },
+ {
+ "batchNumber": 5783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130311346,
+ "shortestRoundTripNano": 59143781,
+ "longestRoundTripNano": 161981561,
+ "averageApexExecutionNano": 63630807,
+ "shortestApexExecutionNano": 6738949,
+ "longestApexExecutionNano": 128997259
+ },
+ {
+ "batchNumber": 5784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135560286,
+ "shortestRoundTripNano": 57464374,
+ "longestRoundTripNano": 166125040,
+ "averageApexExecutionNano": 63077992,
+ "shortestApexExecutionNano": 7763548,
+ "longestApexExecutionNano": 125267432
+ },
+ {
+ "batchNumber": 5785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146843243,
+ "shortestRoundTripNano": 64887515,
+ "longestRoundTripNano": 180954057,
+ "averageApexExecutionNano": 51567388,
+ "shortestApexExecutionNano": 5178463,
+ "longestApexExecutionNano": 116630793
+ },
+ {
+ "batchNumber": 5786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142211265,
+ "shortestRoundTripNano": 72728445,
+ "longestRoundTripNano": 171548434,
+ "averageApexExecutionNano": 68735950,
+ "shortestApexExecutionNano": 17610694,
+ "longestApexExecutionNano": 124402511
+ },
+ {
+ "batchNumber": 5787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145154968,
+ "shortestRoundTripNano": 56362352,
+ "longestRoundTripNano": 173349042,
+ "averageApexExecutionNano": 49899868,
+ "shortestApexExecutionNano": 4792105,
+ "longestApexExecutionNano": 107106404
+ },
+ {
+ "batchNumber": 5788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144937928,
+ "shortestRoundTripNano": 78845169,
+ "longestRoundTripNano": 168076819,
+ "averageApexExecutionNano": 62717200,
+ "shortestApexExecutionNano": 7325281,
+ "longestApexExecutionNano": 130464679
+ },
+ {
+ "batchNumber": 5789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147541104,
+ "shortestRoundTripNano": 55272338,
+ "longestRoundTripNano": 185912702,
+ "averageApexExecutionNano": 72991911,
+ "shortestApexExecutionNano": 10813045,
+ "longestApexExecutionNano": 152491794
+ },
+ {
+ "batchNumber": 5790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152300213,
+ "shortestRoundTripNano": 82278224,
+ "longestRoundTripNano": 185672020,
+ "averageApexExecutionNano": 73196453,
+ "shortestApexExecutionNano": 7494776,
+ "longestApexExecutionNano": 137790863
+ },
+ {
+ "batchNumber": 5791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131591269,
+ "shortestRoundTripNano": 38645871,
+ "longestRoundTripNano": 157980308,
+ "averageApexExecutionNano": 51955195,
+ "shortestApexExecutionNano": 5217052,
+ "longestApexExecutionNano": 118920149
+ },
+ {
+ "batchNumber": 5792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167321182,
+ "shortestRoundTripNano": 80203974,
+ "longestRoundTripNano": 191698935,
+ "averageApexExecutionNano": 64271521,
+ "shortestApexExecutionNano": 13176082,
+ "longestApexExecutionNano": 132121886
+ },
+ {
+ "batchNumber": 5793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150080385,
+ "shortestRoundTripNano": 74141372,
+ "longestRoundTripNano": 175833537,
+ "averageApexExecutionNano": 66397637,
+ "shortestApexExecutionNano": 12179457,
+ "longestApexExecutionNano": 124961546
+ },
+ {
+ "batchNumber": 5794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144867622,
+ "shortestRoundTripNano": 71990066,
+ "longestRoundTripNano": 178587249,
+ "averageApexExecutionNano": 60018436,
+ "shortestApexExecutionNano": 11036002,
+ "longestApexExecutionNano": 120171240
+ },
+ {
+ "batchNumber": 5795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150187198,
+ "shortestRoundTripNano": 38337424,
+ "longestRoundTripNano": 177855438,
+ "averageApexExecutionNano": 64716839,
+ "shortestApexExecutionNano": 7697017,
+ "longestApexExecutionNano": 129597702
+ },
+ {
+ "batchNumber": 5796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153903566,
+ "shortestRoundTripNano": 54334963,
+ "longestRoundTripNano": 188062928,
+ "averageApexExecutionNano": 68408704,
+ "shortestApexExecutionNano": 8422008,
+ "longestApexExecutionNano": 132345146
+ },
+ {
+ "batchNumber": 5797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135125409,
+ "shortestRoundTripNano": 71142996,
+ "longestRoundTripNano": 165063166,
+ "averageApexExecutionNano": 58642842,
+ "shortestApexExecutionNano": 9820200,
+ "longestApexExecutionNano": 124271742
+ },
+ {
+ "batchNumber": 5798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124429800,
+ "shortestRoundTripNano": 56903654,
+ "longestRoundTripNano": 154804837,
+ "averageApexExecutionNano": 50363941,
+ "shortestApexExecutionNano": 8847952,
+ "longestApexExecutionNano": 104780532
+ },
+ {
+ "batchNumber": 5799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142742979,
+ "shortestRoundTripNano": 47158085,
+ "longestRoundTripNano": 177181351,
+ "averageApexExecutionNano": 57330422,
+ "shortestApexExecutionNano": 8646754,
+ "longestApexExecutionNano": 128647687
+ },
+ {
+ "batchNumber": 5800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133346648,
+ "shortestRoundTripNano": 52569421,
+ "longestRoundTripNano": 174329937,
+ "averageApexExecutionNano": 62716797,
+ "shortestApexExecutionNano": 11047445,
+ "longestApexExecutionNano": 130784166
+ },
+ {
+ "batchNumber": 5801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149229667,
+ "shortestRoundTripNano": 80006952,
+ "longestRoundTripNano": 175203860,
+ "averageApexExecutionNano": 68806667,
+ "shortestApexExecutionNano": 11625754,
+ "longestApexExecutionNano": 120395469
+ },
+ {
+ "batchNumber": 5802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191418089,
+ "shortestRoundTripNano": 63534001,
+ "longestRoundTripNano": 238981877,
+ "averageApexExecutionNano": 71000595,
+ "shortestApexExecutionNano": 11101329,
+ "longestApexExecutionNano": 176888848
+ },
+ {
+ "batchNumber": 5803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167393682,
+ "shortestRoundTripNano": 74632747,
+ "longestRoundTripNano": 196247312,
+ "averageApexExecutionNano": 73750695,
+ "shortestApexExecutionNano": 13371188,
+ "longestApexExecutionNano": 123865675
+ },
+ {
+ "batchNumber": 5804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129731258,
+ "shortestRoundTripNano": 71663818,
+ "longestRoundTripNano": 154211768,
+ "averageApexExecutionNano": 73557460,
+ "shortestApexExecutionNano": 13884251,
+ "longestApexExecutionNano": 115227368
+ },
+ {
+ "batchNumber": 5805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139366954,
+ "shortestRoundTripNano": 75981778,
+ "longestRoundTripNano": 168550358,
+ "averageApexExecutionNano": 56813455,
+ "shortestApexExecutionNano": 10121644,
+ "longestApexExecutionNano": 98900013
+ },
+ {
+ "batchNumber": 5806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139527187,
+ "shortestRoundTripNano": 64172292,
+ "longestRoundTripNano": 173900297,
+ "averageApexExecutionNano": 63619593,
+ "shortestApexExecutionNano": 12636480,
+ "longestApexExecutionNano": 134641414
+ },
+ {
+ "batchNumber": 5807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147610063,
+ "shortestRoundTripNano": 67799645,
+ "longestRoundTripNano": 189002610,
+ "averageApexExecutionNano": 70170156,
+ "shortestApexExecutionNano": 10010662,
+ "longestApexExecutionNano": 134754683
+ },
+ {
+ "batchNumber": 5808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149943917,
+ "shortestRoundTripNano": 41342481,
+ "longestRoundTripNano": 194930698,
+ "averageApexExecutionNano": 71671123,
+ "shortestApexExecutionNano": 9907894,
+ "longestApexExecutionNano": 138926128
+ },
+ {
+ "batchNumber": 5809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155356079,
+ "shortestRoundTripNano": 84731563,
+ "longestRoundTripNano": 183655667,
+ "averageApexExecutionNano": 76595789,
+ "shortestApexExecutionNano": 10730301,
+ "longestApexExecutionNano": 136249753
+ },
+ {
+ "batchNumber": 5810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36944",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168941682,
+ "shortestRoundTripNano": 65349851,
+ "longestRoundTripNano": 203512239,
+ "averageApexExecutionNano": 71447954,
+ "shortestApexExecutionNano": 14754946,
+ "longestApexExecutionNano": 149649480
+ },
+ {
+ "batchNumber": 5811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156538080,
+ "shortestRoundTripNano": 83735676,
+ "longestRoundTripNano": 180170658,
+ "averageApexExecutionNano": 73698550,
+ "shortestApexExecutionNano": 13500271,
+ "longestApexExecutionNano": 134631180
+ },
+ {
+ "batchNumber": 5812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137654028,
+ "shortestRoundTripNano": 57871763,
+ "longestRoundTripNano": 174997386,
+ "averageApexExecutionNano": 49649984,
+ "shortestApexExecutionNano": 7542813,
+ "longestApexExecutionNano": 121632323
+ },
+ {
+ "batchNumber": 5813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144220857,
+ "shortestRoundTripNano": 82737814,
+ "longestRoundTripNano": 163669994,
+ "averageApexExecutionNano": 63548210,
+ "shortestApexExecutionNano": 10919729,
+ "longestApexExecutionNano": 117309741
+ },
+ {
+ "batchNumber": 5814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137299093,
+ "shortestRoundTripNano": 62369047,
+ "longestRoundTripNano": 160387341,
+ "averageApexExecutionNano": 57554183,
+ "shortestApexExecutionNano": 6199828,
+ "longestApexExecutionNano": 105444289
+ },
+ {
+ "batchNumber": 5815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142959791,
+ "shortestRoundTripNano": 65741362,
+ "longestRoundTripNano": 174428429,
+ "averageApexExecutionNano": 61678975,
+ "shortestApexExecutionNano": 7500536,
+ "longestApexExecutionNano": 117740402
+ },
+ {
+ "batchNumber": 5816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174977641,
+ "shortestRoundTripNano": 104510835,
+ "longestRoundTripNano": 205437579,
+ "averageApexExecutionNano": 78120054,
+ "shortestApexExecutionNano": 15385069,
+ "longestApexExecutionNano": 132003749
+ },
+ {
+ "batchNumber": 5817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142891820,
+ "shortestRoundTripNano": 54163423,
+ "longestRoundTripNano": 170666623,
+ "averageApexExecutionNano": 59587399,
+ "shortestApexExecutionNano": 6952939,
+ "longestApexExecutionNano": 112618833
+ },
+ {
+ "batchNumber": 5818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160294078,
+ "shortestRoundTripNano": 70027883,
+ "longestRoundTripNano": 188947023,
+ "averageApexExecutionNano": 73940979,
+ "shortestApexExecutionNano": 11963034,
+ "longestApexExecutionNano": 126927675
+ },
+ {
+ "batchNumber": 5819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157206064,
+ "shortestRoundTripNano": 77786433,
+ "longestRoundTripNano": 192569164,
+ "averageApexExecutionNano": 56218651,
+ "shortestApexExecutionNano": 6946051,
+ "longestApexExecutionNano": 124508203
+ },
+ {
+ "batchNumber": 5820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170091397,
+ "shortestRoundTripNano": 39962642,
+ "longestRoundTripNano": 212960115,
+ "averageApexExecutionNano": 60888009,
+ "shortestApexExecutionNano": 9390037,
+ "longestApexExecutionNano": 130037928
+ },
+ {
+ "batchNumber": 5821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138174415,
+ "shortestRoundTripNano": 79205440,
+ "longestRoundTripNano": 177133633,
+ "averageApexExecutionNano": 67186189,
+ "shortestApexExecutionNano": 7038912,
+ "longestApexExecutionNano": 134171333
+ },
+ {
+ "batchNumber": 5822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151356224,
+ "shortestRoundTripNano": 63225652,
+ "longestRoundTripNano": 184538346,
+ "averageApexExecutionNano": 72220056,
+ "shortestApexExecutionNano": 11267936,
+ "longestApexExecutionNano": 135203903
+ },
+ {
+ "batchNumber": 5823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145076218,
+ "shortestRoundTripNano": 37494293,
+ "longestRoundTripNano": 177354484,
+ "averageApexExecutionNano": 66599066,
+ "shortestApexExecutionNano": 11056952,
+ "longestApexExecutionNano": 129528737
+ },
+ {
+ "batchNumber": 5824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153694131,
+ "shortestRoundTripNano": 68910664,
+ "longestRoundTripNano": 182498046,
+ "averageApexExecutionNano": 67404238,
+ "shortestApexExecutionNano": 12001529,
+ "longestApexExecutionNano": 137510903
+ },
+ {
+ "batchNumber": 5825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143330385,
+ "shortestRoundTripNano": 77103476,
+ "longestRoundTripNano": 167063963,
+ "averageApexExecutionNano": 59106105,
+ "shortestApexExecutionNano": 5632464,
+ "longestApexExecutionNano": 117207467
+ },
+ {
+ "batchNumber": 5826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144752141,
+ "shortestRoundTripNano": 77633186,
+ "longestRoundTripNano": 176545336,
+ "averageApexExecutionNano": 70290997,
+ "shortestApexExecutionNano": 17092903,
+ "longestApexExecutionNano": 128563487
+ },
+ {
+ "batchNumber": 5827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164577868,
+ "shortestRoundTripNano": 64035515,
+ "longestRoundTripNano": 195203019,
+ "averageApexExecutionNano": 74767370,
+ "shortestApexExecutionNano": 12539620,
+ "longestApexExecutionNano": 127390206
+ },
+ {
+ "batchNumber": 5828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150481955,
+ "shortestRoundTripNano": 46302059,
+ "longestRoundTripNano": 186048562,
+ "averageApexExecutionNano": 67683099,
+ "shortestApexExecutionNano": 11348573,
+ "longestApexExecutionNano": 139106113
+ },
+ {
+ "batchNumber": 5829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156496543,
+ "shortestRoundTripNano": 88202400,
+ "longestRoundTripNano": 204515371,
+ "averageApexExecutionNano": 54833787,
+ "shortestApexExecutionNano": 7464213,
+ "longestApexExecutionNano": 122069435
+ },
+ {
+ "batchNumber": 5830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118856422,
+ "shortestRoundTripNano": 54362298,
+ "longestRoundTripNano": 156014457,
+ "averageApexExecutionNano": 44393608,
+ "shortestApexExecutionNano": 6217165,
+ "longestApexExecutionNano": 118775535
+ },
+ {
+ "batchNumber": 5831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157136022,
+ "shortestRoundTripNano": 62812234,
+ "longestRoundTripNano": 193127017,
+ "averageApexExecutionNano": 84421189,
+ "shortestApexExecutionNano": 6911925,
+ "longestApexExecutionNano": 147336340
+ },
+ {
+ "batchNumber": 5832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121387442,
+ "shortestRoundTripNano": 59582093,
+ "longestRoundTripNano": 147617775,
+ "averageApexExecutionNano": 47385677,
+ "shortestApexExecutionNano": 7604656,
+ "longestApexExecutionNano": 101308313
+ },
+ {
+ "batchNumber": 5833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161687710,
+ "shortestRoundTripNano": 97617722,
+ "longestRoundTripNano": 189986344,
+ "averageApexExecutionNano": 66249298,
+ "shortestApexExecutionNano": 14010887,
+ "longestApexExecutionNano": 122250921
+ },
+ {
+ "batchNumber": 5834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142815112,
+ "shortestRoundTripNano": 72980486,
+ "longestRoundTripNano": 172013066,
+ "averageApexExecutionNano": 55080315,
+ "shortestApexExecutionNano": 8645068,
+ "longestApexExecutionNano": 122773470
+ },
+ {
+ "batchNumber": 5835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139063716,
+ "shortestRoundTripNano": 62377879,
+ "longestRoundTripNano": 167510253,
+ "averageApexExecutionNano": 55715847,
+ "shortestApexExecutionNano": 6136772,
+ "longestApexExecutionNano": 115397490
+ },
+ {
+ "batchNumber": 5836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127780014,
+ "shortestRoundTripNano": 52080795,
+ "longestRoundTripNano": 160069502,
+ "averageApexExecutionNano": 50882466,
+ "shortestApexExecutionNano": 8710938,
+ "longestApexExecutionNano": 104054494
+ },
+ {
+ "batchNumber": 5837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157256267,
+ "shortestRoundTripNano": 59508732,
+ "longestRoundTripNano": 189400203,
+ "averageApexExecutionNano": 65152103,
+ "shortestApexExecutionNano": 10445676,
+ "longestApexExecutionNano": 144377131
+ },
+ {
+ "batchNumber": 5838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138294062,
+ "shortestRoundTripNano": 50182567,
+ "longestRoundTripNano": 170359042,
+ "averageApexExecutionNano": 51334688,
+ "shortestApexExecutionNano": 9004442,
+ "longestApexExecutionNano": 114355378
+ },
+ {
+ "batchNumber": 5839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36946",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142501714,
+ "shortestRoundTripNano": 30184814,
+ "longestRoundTripNano": 172899443,
+ "averageApexExecutionNano": 55690967,
+ "shortestApexExecutionNano": 7478951,
+ "longestApexExecutionNano": 121986383
+ },
+ {
+ "batchNumber": 5840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144872213,
+ "shortestRoundTripNano": 55421138,
+ "longestRoundTripNano": 177810133,
+ "averageApexExecutionNano": 59025465,
+ "shortestApexExecutionNano": 5824557,
+ "longestApexExecutionNano": 137589490
+ },
+ {
+ "batchNumber": 5841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138584232,
+ "shortestRoundTripNano": 76740497,
+ "longestRoundTripNano": 164290787,
+ "averageApexExecutionNano": 61348632,
+ "shortestApexExecutionNano": 18900716,
+ "longestApexExecutionNano": 104683947
+ },
+ {
+ "batchNumber": 5842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142242993,
+ "shortestRoundTripNano": 69755880,
+ "longestRoundTripNano": 177278854,
+ "averageApexExecutionNano": 65764018,
+ "shortestApexExecutionNano": 11465413,
+ "longestApexExecutionNano": 115580328
+ },
+ {
+ "batchNumber": 5843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148983696,
+ "shortestRoundTripNano": 53720238,
+ "longestRoundTripNano": 186181052,
+ "averageApexExecutionNano": 68924508,
+ "shortestApexExecutionNano": 8937714,
+ "longestApexExecutionNano": 140068321
+ },
+ {
+ "batchNumber": 5844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132426193,
+ "shortestRoundTripNano": 46191111,
+ "longestRoundTripNano": 157901360,
+ "averageApexExecutionNano": 58001009,
+ "shortestApexExecutionNano": 7038399,
+ "longestApexExecutionNano": 113545655
+ },
+ {
+ "batchNumber": 5845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133696086,
+ "shortestRoundTripNano": 67066274,
+ "longestRoundTripNano": 157001758,
+ "averageApexExecutionNano": 50152597,
+ "shortestApexExecutionNano": 7169832,
+ "longestApexExecutionNano": 110599183
+ },
+ {
+ "batchNumber": 5846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149865007,
+ "shortestRoundTripNano": 58732893,
+ "longestRoundTripNano": 176443349,
+ "averageApexExecutionNano": 57222037,
+ "shortestApexExecutionNano": 9799463,
+ "longestApexExecutionNano": 124468656
+ },
+ {
+ "batchNumber": 5847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134740572,
+ "shortestRoundTripNano": 56394624,
+ "longestRoundTripNano": 167413714,
+ "averageApexExecutionNano": 61489307,
+ "shortestApexExecutionNano": 8129516,
+ "longestApexExecutionNano": 126529411
+ },
+ {
+ "batchNumber": 5848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152408078,
+ "shortestRoundTripNano": 56434441,
+ "longestRoundTripNano": 178803483,
+ "averageApexExecutionNano": 68782994,
+ "shortestApexExecutionNano": 13741768,
+ "longestApexExecutionNano": 116121077
+ },
+ {
+ "batchNumber": 5849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134164089,
+ "shortestRoundTripNano": 71214770,
+ "longestRoundTripNano": 158103573,
+ "averageApexExecutionNano": 59441168,
+ "shortestApexExecutionNano": 12077098,
+ "longestApexExecutionNano": 106519447
+ },
+ {
+ "batchNumber": 5850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156273806,
+ "shortestRoundTripNano": 64133247,
+ "longestRoundTripNano": 187468393,
+ "averageApexExecutionNano": 62416937,
+ "shortestApexExecutionNano": 9527353,
+ "longestApexExecutionNano": 120819866
+ },
+ {
+ "batchNumber": 5851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128683100,
+ "shortestRoundTripNano": 45257262,
+ "longestRoundTripNano": 166033415,
+ "averageApexExecutionNano": 61484764,
+ "shortestApexExecutionNano": 8559718,
+ "longestApexExecutionNano": 126068839
+ },
+ {
+ "batchNumber": 5852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135393861,
+ "shortestRoundTripNano": 54202944,
+ "longestRoundTripNano": 170026482,
+ "averageApexExecutionNano": 48974483,
+ "shortestApexExecutionNano": 9225649,
+ "longestApexExecutionNano": 98532314
+ },
+ {
+ "batchNumber": 5853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133201996,
+ "shortestRoundTripNano": 56541195,
+ "longestRoundTripNano": 158461273,
+ "averageApexExecutionNano": 59416887,
+ "shortestApexExecutionNano": 8964567,
+ "longestApexExecutionNano": 120502662
+ },
+ {
+ "batchNumber": 5854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145586095,
+ "shortestRoundTripNano": 65379229,
+ "longestRoundTripNano": 176768204,
+ "averageApexExecutionNano": 54992407,
+ "shortestApexExecutionNano": 8088603,
+ "longestApexExecutionNano": 118519321
+ },
+ {
+ "batchNumber": 5855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154675633,
+ "shortestRoundTripNano": 79550157,
+ "longestRoundTripNano": 185672249,
+ "averageApexExecutionNano": 65222977,
+ "shortestApexExecutionNano": 9389443,
+ "longestApexExecutionNano": 148718308
+ },
+ {
+ "batchNumber": 5856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153032954,
+ "shortestRoundTripNano": 68327449,
+ "longestRoundTripNano": 175004991,
+ "averageApexExecutionNano": 53347320,
+ "shortestApexExecutionNano": 5835408,
+ "longestApexExecutionNano": 120984155
+ },
+ {
+ "batchNumber": 5857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151044316,
+ "shortestRoundTripNano": 36600604,
+ "longestRoundTripNano": 178239382,
+ "averageApexExecutionNano": 74094972,
+ "shortestApexExecutionNano": 10208669,
+ "longestApexExecutionNano": 119266770
+ },
+ {
+ "batchNumber": 5858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138665955,
+ "shortestRoundTripNano": 44206281,
+ "longestRoundTripNano": 172409547,
+ "averageApexExecutionNano": 59972483,
+ "shortestApexExecutionNano": 6893032,
+ "longestApexExecutionNano": 111365984
+ },
+ {
+ "batchNumber": 5859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131128509,
+ "shortestRoundTripNano": 57624492,
+ "longestRoundTripNano": 156119108,
+ "averageApexExecutionNano": 52918669,
+ "shortestApexExecutionNano": 11746901,
+ "longestApexExecutionNano": 107124885
+ },
+ {
+ "batchNumber": 5860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142522471,
+ "shortestRoundTripNano": 60506101,
+ "longestRoundTripNano": 167430038,
+ "averageApexExecutionNano": 56064804,
+ "shortestApexExecutionNano": 12291175,
+ "longestApexExecutionNano": 114432053
+ },
+ {
+ "batchNumber": 5861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136773116,
+ "shortestRoundTripNano": 53853849,
+ "longestRoundTripNano": 166280807,
+ "averageApexExecutionNano": 62673913,
+ "shortestApexExecutionNano": 8511346,
+ "longestApexExecutionNano": 120861862
+ },
+ {
+ "batchNumber": 5862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152202616,
+ "shortestRoundTripNano": 68568777,
+ "longestRoundTripNano": 196685142,
+ "averageApexExecutionNano": 77260221,
+ "shortestApexExecutionNano": 9607249,
+ "longestApexExecutionNano": 150265497
+ },
+ {
+ "batchNumber": 5863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161605366,
+ "shortestRoundTripNano": 85219237,
+ "longestRoundTripNano": 184560088,
+ "averageApexExecutionNano": 75430594,
+ "shortestApexExecutionNano": 11320035,
+ "longestApexExecutionNano": 142904848
+ },
+ {
+ "batchNumber": 5864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162314726,
+ "shortestRoundTripNano": 78444530,
+ "longestRoundTripNano": 189275977,
+ "averageApexExecutionNano": 69972973,
+ "shortestApexExecutionNano": 6428110,
+ "longestApexExecutionNano": 133729070
+ },
+ {
+ "batchNumber": 5865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163462383,
+ "shortestRoundTripNano": 81323782,
+ "longestRoundTripNano": 190929153,
+ "averageApexExecutionNano": 62166437,
+ "shortestApexExecutionNano": 16163513,
+ "longestApexExecutionNano": 139942041
+ },
+ {
+ "batchNumber": 5866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170908375,
+ "shortestRoundTripNano": 70319757,
+ "longestRoundTripNano": 199349385,
+ "averageApexExecutionNano": 66687390,
+ "shortestApexExecutionNano": 11691876,
+ "longestApexExecutionNano": 133663209
+ },
+ {
+ "batchNumber": 5867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172563154,
+ "shortestRoundTripNano": 86877176,
+ "longestRoundTripNano": 211661318,
+ "averageApexExecutionNano": 84146338,
+ "shortestApexExecutionNano": 12804797,
+ "longestApexExecutionNano": 162267456
+ },
+ {
+ "batchNumber": 5868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151300607,
+ "shortestRoundTripNano": 66745752,
+ "longestRoundTripNano": 178661195,
+ "averageApexExecutionNano": 60688109,
+ "shortestApexExecutionNano": 10105679,
+ "longestApexExecutionNano": 111146649
+ },
+ {
+ "batchNumber": 5869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153362505,
+ "shortestRoundTripNano": 72629799,
+ "longestRoundTripNano": 192970152,
+ "averageApexExecutionNano": 67627285,
+ "shortestApexExecutionNano": 11178052,
+ "longestApexExecutionNano": 142944695
+ },
+ {
+ "batchNumber": 5870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139343499,
+ "shortestRoundTripNano": 36276178,
+ "longestRoundTripNano": 167553132,
+ "averageApexExecutionNano": 61503125,
+ "shortestApexExecutionNano": 6796486,
+ "longestApexExecutionNano": 112126116
+ },
+ {
+ "batchNumber": 5871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172733609,
+ "shortestRoundTripNano": 30168900,
+ "longestRoundTripNano": 205505530,
+ "averageApexExecutionNano": 80118815,
+ "shortestApexExecutionNano": 8087538,
+ "longestApexExecutionNano": 164962399
+ },
+ {
+ "batchNumber": 5872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157120587,
+ "shortestRoundTripNano": 69126521,
+ "longestRoundTripNano": 189863602,
+ "averageApexExecutionNano": 55349998,
+ "shortestApexExecutionNano": 11922935,
+ "longestApexExecutionNano": 122850164
+ },
+ {
+ "batchNumber": 5873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144501885,
+ "shortestRoundTripNano": 46457724,
+ "longestRoundTripNano": 174938265,
+ "averageApexExecutionNano": 58816652,
+ "shortestApexExecutionNano": 8084143,
+ "longestApexExecutionNano": 126038889
+ },
+ {
+ "batchNumber": 5874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133014215,
+ "shortestRoundTripNano": 55573419,
+ "longestRoundTripNano": 165274724,
+ "averageApexExecutionNano": 62184513,
+ "shortestApexExecutionNano": 7400282,
+ "longestApexExecutionNano": 125766681
+ },
+ {
+ "batchNumber": 5875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146819046,
+ "shortestRoundTripNano": 75107008,
+ "longestRoundTripNano": 171281184,
+ "averageApexExecutionNano": 52851871,
+ "shortestApexExecutionNano": 6129801,
+ "longestApexExecutionNano": 97571505
+ },
+ {
+ "batchNumber": 5876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149725276,
+ "shortestRoundTripNano": 86153823,
+ "longestRoundTripNano": 181480478,
+ "averageApexExecutionNano": 82151856,
+ "shortestApexExecutionNano": 10613920,
+ "longestApexExecutionNano": 130198347
+ },
+ {
+ "batchNumber": 5877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36966",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176729018,
+ "shortestRoundTripNano": 78928865,
+ "longestRoundTripNano": 213988942,
+ "averageApexExecutionNano": 94512046,
+ "shortestApexExecutionNano": 9520827,
+ "longestApexExecutionNano": 158669758
+ },
+ {
+ "batchNumber": 5878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132163019,
+ "shortestRoundTripNano": 64649761,
+ "longestRoundTripNano": 161717814,
+ "averageApexExecutionNano": 72225786,
+ "shortestApexExecutionNano": 6481644,
+ "longestApexExecutionNano": 117733449
+ },
+ {
+ "batchNumber": 5879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162489489,
+ "shortestRoundTripNano": 75628007,
+ "longestRoundTripNano": 193755169,
+ "averageApexExecutionNano": 57220250,
+ "shortestApexExecutionNano": 9953176,
+ "longestApexExecutionNano": 107441745
+ },
+ {
+ "batchNumber": 5880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140059373,
+ "shortestRoundTripNano": 77997192,
+ "longestRoundTripNano": 169503023,
+ "averageApexExecutionNano": 55162288,
+ "shortestApexExecutionNano": 7579644,
+ "longestApexExecutionNano": 122459501
+ },
+ {
+ "batchNumber": 5881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160388616,
+ "shortestRoundTripNano": 69345621,
+ "longestRoundTripNano": 197514545,
+ "averageApexExecutionNano": 61823991,
+ "shortestApexExecutionNano": 9825118,
+ "longestApexExecutionNano": 127519589
+ },
+ {
+ "batchNumber": 5882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162785457,
+ "shortestRoundTripNano": 35067671,
+ "longestRoundTripNano": 195109397,
+ "averageApexExecutionNano": 79630275,
+ "shortestApexExecutionNano": 12146717,
+ "longestApexExecutionNano": 134930503
+ },
+ {
+ "batchNumber": 5883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145232993,
+ "shortestRoundTripNano": 82493835,
+ "longestRoundTripNano": 176024761,
+ "averageApexExecutionNano": 58543995,
+ "shortestApexExecutionNano": 7299424,
+ "longestApexExecutionNano": 119879605
+ },
+ {
+ "batchNumber": 5884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153892314,
+ "shortestRoundTripNano": 64218448,
+ "longestRoundTripNano": 189304117,
+ "averageApexExecutionNano": 54420199,
+ "shortestApexExecutionNano": 8977560,
+ "longestApexExecutionNano": 130863966
+ },
+ {
+ "batchNumber": 5885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140677970,
+ "shortestRoundTripNano": 36095379,
+ "longestRoundTripNano": 175132978,
+ "averageApexExecutionNano": 47845075,
+ "shortestApexExecutionNano": 8556840,
+ "longestApexExecutionNano": 113308415
+ },
+ {
+ "batchNumber": 5886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147407375,
+ "shortestRoundTripNano": 61187529,
+ "longestRoundTripNano": 180466378,
+ "averageApexExecutionNano": 50705984,
+ "shortestApexExecutionNano": 8036173,
+ "longestApexExecutionNano": 117217301
+ },
+ {
+ "batchNumber": 5887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166276134,
+ "shortestRoundTripNano": 64880186,
+ "longestRoundTripNano": 197630131,
+ "averageApexExecutionNano": 84015435,
+ "shortestApexExecutionNano": 12450206,
+ "longestApexExecutionNano": 159005851
+ },
+ {
+ "batchNumber": 5888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151873074,
+ "shortestRoundTripNano": 68537162,
+ "longestRoundTripNano": 182683326,
+ "averageApexExecutionNano": 64696747,
+ "shortestApexExecutionNano": 5822624,
+ "longestApexExecutionNano": 129947617
+ },
+ {
+ "batchNumber": 5889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145848318,
+ "shortestRoundTripNano": 67763883,
+ "longestRoundTripNano": 176818220,
+ "averageApexExecutionNano": 53770161,
+ "shortestApexExecutionNano": 7139043,
+ "longestApexExecutionNano": 114422223
+ },
+ {
+ "batchNumber": 5890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139248608,
+ "shortestRoundTripNano": 62059440,
+ "longestRoundTripNano": 168303784,
+ "averageApexExecutionNano": 56064209,
+ "shortestApexExecutionNano": 13473562,
+ "longestApexExecutionNano": 107018082
+ },
+ {
+ "batchNumber": 5891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155853750,
+ "shortestRoundTripNano": 76179160,
+ "longestRoundTripNano": 182841188,
+ "averageApexExecutionNano": 75660075,
+ "shortestApexExecutionNano": 11405062,
+ "longestApexExecutionNano": 134937810
+ },
+ {
+ "batchNumber": 5892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166878158,
+ "shortestRoundTripNano": 79393657,
+ "longestRoundTripNano": 194976274,
+ "averageApexExecutionNano": 74641929,
+ "shortestApexExecutionNano": 10756996,
+ "longestApexExecutionNano": 127180846
+ },
+ {
+ "batchNumber": 5893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152072452,
+ "shortestRoundTripNano": 67095665,
+ "longestRoundTripNano": 177232312,
+ "averageApexExecutionNano": 69094239,
+ "shortestApexExecutionNano": 11749056,
+ "longestApexExecutionNano": 132530200
+ },
+ {
+ "batchNumber": 5894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123140632,
+ "shortestRoundTripNano": 62649472,
+ "longestRoundTripNano": 149825159,
+ "averageApexExecutionNano": 58127035,
+ "shortestApexExecutionNano": 7096115,
+ "longestApexExecutionNano": 113583329
+ },
+ {
+ "batchNumber": 5895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148377864,
+ "shortestRoundTripNano": 74986479,
+ "longestRoundTripNano": 169855818,
+ "averageApexExecutionNano": 64266984,
+ "shortestApexExecutionNano": 7296283,
+ "longestApexExecutionNano": 124819508
+ },
+ {
+ "batchNumber": 5896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150820713,
+ "shortestRoundTripNano": 55125050,
+ "longestRoundTripNano": 191717683,
+ "averageApexExecutionNano": 54739123,
+ "shortestApexExecutionNano": 7095973,
+ "longestApexExecutionNano": 149705490
+ },
+ {
+ "batchNumber": 5897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153660128,
+ "shortestRoundTripNano": 60254278,
+ "longestRoundTripNano": 187052767,
+ "averageApexExecutionNano": 75149036,
+ "shortestApexExecutionNano": 6719191,
+ "longestApexExecutionNano": 149053711
+ },
+ {
+ "batchNumber": 5898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134978562,
+ "shortestRoundTripNano": 54331212,
+ "longestRoundTripNano": 158088791,
+ "averageApexExecutionNano": 51369775,
+ "shortestApexExecutionNano": 5928672,
+ "longestApexExecutionNano": 110831285
+ },
+ {
+ "batchNumber": 5899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140762253,
+ "shortestRoundTripNano": 42124348,
+ "longestRoundTripNano": 172010327,
+ "averageApexExecutionNano": 63892427,
+ "shortestApexExecutionNano": 11422843,
+ "longestApexExecutionNano": 122254223
+ },
+ {
+ "batchNumber": 5900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139314294,
+ "shortestRoundTripNano": 34579983,
+ "longestRoundTripNano": 164816247,
+ "averageApexExecutionNano": 61334418,
+ "shortestApexExecutionNano": 6628053,
+ "longestApexExecutionNano": 111335730
+ },
+ {
+ "batchNumber": 5901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154053662,
+ "shortestRoundTripNano": 67294000,
+ "longestRoundTripNano": 184218947,
+ "averageApexExecutionNano": 51663242,
+ "shortestApexExecutionNano": 9562021,
+ "longestApexExecutionNano": 134768193
+ },
+ {
+ "batchNumber": 5902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160161873,
+ "shortestRoundTripNano": 51728686,
+ "longestRoundTripNano": 195312203,
+ "averageApexExecutionNano": 71456730,
+ "shortestApexExecutionNano": 10909267,
+ "longestApexExecutionNano": 140380941
+ },
+ {
+ "batchNumber": 5903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158150601,
+ "shortestRoundTripNano": 79293066,
+ "longestRoundTripNano": 188986263,
+ "averageApexExecutionNano": 65495042,
+ "shortestApexExecutionNano": 10729516,
+ "longestApexExecutionNano": 127047000
+ },
+ {
+ "batchNumber": 5904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152367084,
+ "shortestRoundTripNano": 48333141,
+ "longestRoundTripNano": 184134317,
+ "averageApexExecutionNano": 62193395,
+ "shortestApexExecutionNano": 7407052,
+ "longestApexExecutionNano": 143453933
+ },
+ {
+ "batchNumber": 5905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167304504,
+ "shortestRoundTripNano": 39368721,
+ "longestRoundTripNano": 196385909,
+ "averageApexExecutionNano": 71613893,
+ "shortestApexExecutionNano": 9689909,
+ "longestApexExecutionNano": 144922389
+ },
+ {
+ "batchNumber": 5906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159900885,
+ "shortestRoundTripNano": 65097408,
+ "longestRoundTripNano": 190006964,
+ "averageApexExecutionNano": 71251888,
+ "shortestApexExecutionNano": 8413606,
+ "longestApexExecutionNano": 136506822
+ },
+ {
+ "batchNumber": 5907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157161054,
+ "shortestRoundTripNano": 74059998,
+ "longestRoundTripNano": 185831928,
+ "averageApexExecutionNano": 66752816,
+ "shortestApexExecutionNano": 9322947,
+ "longestApexExecutionNano": 127862536
+ },
+ {
+ "batchNumber": 5908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 227623000,
+ "shortestRoundTripNano": 75879947,
+ "longestRoundTripNano": 282128290,
+ "averageApexExecutionNano": 102091998,
+ "shortestApexExecutionNano": 13110577,
+ "longestApexExecutionNano": 214408578
+ },
+ {
+ "batchNumber": 5909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140186961,
+ "shortestRoundTripNano": 68483065,
+ "longestRoundTripNano": 171231903,
+ "averageApexExecutionNano": 51569326,
+ "shortestApexExecutionNano": 9540054,
+ "longestApexExecutionNano": 110941192
+ },
+ {
+ "batchNumber": 5910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157754382,
+ "shortestRoundTripNano": 70388135,
+ "longestRoundTripNano": 207355544,
+ "averageApexExecutionNano": 84979056,
+ "shortestApexExecutionNano": 6360485,
+ "longestApexExecutionNano": 143544952
+ },
+ {
+ "batchNumber": 5911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157101233,
+ "shortestRoundTripNano": 87265021,
+ "longestRoundTripNano": 184612145,
+ "averageApexExecutionNano": 75709495,
+ "shortestApexExecutionNano": 6955814,
+ "longestApexExecutionNano": 146159965
+ },
+ {
+ "batchNumber": 5912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156161625,
+ "shortestRoundTripNano": 64270937,
+ "longestRoundTripNano": 185006545,
+ "averageApexExecutionNano": 48844975,
+ "shortestApexExecutionNano": 8050597,
+ "longestApexExecutionNano": 124238937
+ },
+ {
+ "batchNumber": 5913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145998839,
+ "shortestRoundTripNano": 81105280,
+ "longestRoundTripNano": 169686181,
+ "averageApexExecutionNano": 66292578,
+ "shortestApexExecutionNano": 6100580,
+ "longestApexExecutionNano": 125867586
+ },
+ {
+ "batchNumber": 5914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142223326,
+ "shortestRoundTripNano": 65290248,
+ "longestRoundTripNano": 169508553,
+ "averageApexExecutionNano": 60915942,
+ "shortestApexExecutionNano": 9474231,
+ "longestApexExecutionNano": 112864202
+ },
+ {
+ "batchNumber": 5915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153286437,
+ "shortestRoundTripNano": 76056666,
+ "longestRoundTripNano": 187580739,
+ "averageApexExecutionNano": 45212555,
+ "shortestApexExecutionNano": 7647155,
+ "longestApexExecutionNano": 112301394
+ },
+ {
+ "batchNumber": 5916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161880284,
+ "shortestRoundTripNano": 81734725,
+ "longestRoundTripNano": 187920824,
+ "averageApexExecutionNano": 77559833,
+ "shortestApexExecutionNano": 19749013,
+ "longestApexExecutionNano": 135683010
+ },
+ {
+ "batchNumber": 5917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148501351,
+ "shortestRoundTripNano": 71365016,
+ "longestRoundTripNano": 177870679,
+ "averageApexExecutionNano": 46111471,
+ "shortestApexExecutionNano": 8413530,
+ "longestApexExecutionNano": 121807482
+ },
+ {
+ "batchNumber": 5918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162570748,
+ "shortestRoundTripNano": 60925041,
+ "longestRoundTripNano": 186850709,
+ "averageApexExecutionNano": 65338395,
+ "shortestApexExecutionNano": 8589870,
+ "longestApexExecutionNano": 128088071
+ },
+ {
+ "batchNumber": 5919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145174507,
+ "shortestRoundTripNano": 51576958,
+ "longestRoundTripNano": 174429907,
+ "averageApexExecutionNano": 64816419,
+ "shortestApexExecutionNano": 8469287,
+ "longestApexExecutionNano": 130766121
+ },
+ {
+ "batchNumber": 5920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36984",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192494737,
+ "shortestRoundTripNano": 76886997,
+ "longestRoundTripNano": 236673948,
+ "averageApexExecutionNano": 81975957,
+ "shortestApexExecutionNano": 10151719,
+ "longestApexExecutionNano": 152389674
+ },
+ {
+ "batchNumber": 5921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152988894,
+ "shortestRoundTripNano": 71326923,
+ "longestRoundTripNano": 187403955,
+ "averageApexExecutionNano": 58835985,
+ "shortestApexExecutionNano": 7492311,
+ "longestApexExecutionNano": 129934582
+ },
+ {
+ "batchNumber": 5922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126456880,
+ "shortestRoundTripNano": 26469505,
+ "longestRoundTripNano": 157520428,
+ "averageApexExecutionNano": 54411552,
+ "shortestApexExecutionNano": 7648492,
+ "longestApexExecutionNano": 95092083
+ },
+ {
+ "batchNumber": 5923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149227288,
+ "shortestRoundTripNano": 40888896,
+ "longestRoundTripNano": 180690471,
+ "averageApexExecutionNano": 72110322,
+ "shortestApexExecutionNano": 7962491,
+ "longestApexExecutionNano": 144471248
+ },
+ {
+ "batchNumber": 5924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140363436,
+ "shortestRoundTripNano": 59915006,
+ "longestRoundTripNano": 173407038,
+ "averageApexExecutionNano": 58094125,
+ "shortestApexExecutionNano": 9403706,
+ "longestApexExecutionNano": 107693017
+ },
+ {
+ "batchNumber": 5925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147570233,
+ "shortestRoundTripNano": 46522360,
+ "longestRoundTripNano": 172442235,
+ "averageApexExecutionNano": 60045779,
+ "shortestApexExecutionNano": 8764052,
+ "longestApexExecutionNano": 123322950
+ },
+ {
+ "batchNumber": 5926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135789393,
+ "shortestRoundTripNano": 44933817,
+ "longestRoundTripNano": 167454245,
+ "averageApexExecutionNano": 60811832,
+ "shortestApexExecutionNano": 15549631,
+ "longestApexExecutionNano": 113396849
+ },
+ {
+ "batchNumber": 5927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179876662,
+ "shortestRoundTripNano": 91740597,
+ "longestRoundTripNano": 210849074,
+ "averageApexExecutionNano": 89681407,
+ "shortestApexExecutionNano": 30701790,
+ "longestApexExecutionNano": 146383287
+ },
+ {
+ "batchNumber": 5928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142512416,
+ "shortestRoundTripNano": 73522194,
+ "longestRoundTripNano": 171811052,
+ "averageApexExecutionNano": 61178397,
+ "shortestApexExecutionNano": 8192927,
+ "longestApexExecutionNano": 125412006
+ },
+ {
+ "batchNumber": 5929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158635775,
+ "shortestRoundTripNano": 67607526,
+ "longestRoundTripNano": 192095952,
+ "averageApexExecutionNano": 62312285,
+ "shortestApexExecutionNano": 5998268,
+ "longestApexExecutionNano": 125051337
+ },
+ {
+ "batchNumber": 5930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160703181,
+ "shortestRoundTripNano": 74554794,
+ "longestRoundTripNano": 185429614,
+ "averageApexExecutionNano": 58722543,
+ "shortestApexExecutionNano": 8586768,
+ "longestApexExecutionNano": 133067604
+ },
+ {
+ "batchNumber": 5931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137655220,
+ "shortestRoundTripNano": 60092609,
+ "longestRoundTripNano": 165966409,
+ "averageApexExecutionNano": 54649418,
+ "shortestApexExecutionNano": 8366191,
+ "longestApexExecutionNano": 111900691
+ },
+ {
+ "batchNumber": 5932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139402156,
+ "shortestRoundTripNano": 34725755,
+ "longestRoundTripNano": 171059872,
+ "averageApexExecutionNano": 65926156,
+ "shortestApexExecutionNano": 10012632,
+ "longestApexExecutionNano": 129102561
+ },
+ {
+ "batchNumber": 5933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155638284,
+ "shortestRoundTripNano": 64343320,
+ "longestRoundTripNano": 185041070,
+ "averageApexExecutionNano": 64107254,
+ "shortestApexExecutionNano": 7871297,
+ "longestApexExecutionNano": 119602001
+ },
+ {
+ "batchNumber": 5934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150370034,
+ "shortestRoundTripNano": 50346182,
+ "longestRoundTripNano": 186107741,
+ "averageApexExecutionNano": 61135121,
+ "shortestApexExecutionNano": 7895285,
+ "longestApexExecutionNano": 137079696
+ },
+ {
+ "batchNumber": 5935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156762273,
+ "shortestRoundTripNano": 63775106,
+ "longestRoundTripNano": 189572778,
+ "averageApexExecutionNano": 69994275,
+ "shortestApexExecutionNano": 7304694,
+ "longestApexExecutionNano": 131939075
+ },
+ {
+ "batchNumber": 5936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153518799,
+ "shortestRoundTripNano": 63158780,
+ "longestRoundTripNano": 193903677,
+ "averageApexExecutionNano": 37556108,
+ "shortestApexExecutionNano": 7927307,
+ "longestApexExecutionNano": 118707443
+ },
+ {
+ "batchNumber": 5937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141999744,
+ "shortestRoundTripNano": 39297012,
+ "longestRoundTripNano": 175009357,
+ "averageApexExecutionNano": 46700673,
+ "shortestApexExecutionNano": 8325985,
+ "longestApexExecutionNano": 110878269
+ },
+ {
+ "batchNumber": 5938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150589292,
+ "shortestRoundTripNano": 58611850,
+ "longestRoundTripNano": 179584607,
+ "averageApexExecutionNano": 70856858,
+ "shortestApexExecutionNano": 11337971,
+ "longestApexExecutionNano": 130693272
+ },
+ {
+ "batchNumber": 5939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145643056,
+ "shortestRoundTripNano": 66668362,
+ "longestRoundTripNano": 186213586,
+ "averageApexExecutionNano": 59747619,
+ "shortestApexExecutionNano": 11538838,
+ "longestApexExecutionNano": 128526380
+ },
+ {
+ "batchNumber": 5940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161037635,
+ "shortestRoundTripNano": 46609471,
+ "longestRoundTripNano": 193149370,
+ "averageApexExecutionNano": 61487619,
+ "shortestApexExecutionNano": 9397160,
+ "longestApexExecutionNano": 141068613
+ },
+ {
+ "batchNumber": 5941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153235927,
+ "shortestRoundTripNano": 53607314,
+ "longestRoundTripNano": 186414292,
+ "averageApexExecutionNano": 70017920,
+ "shortestApexExecutionNano": 7715476,
+ "longestApexExecutionNano": 122394861
+ },
+ {
+ "batchNumber": 5942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151939019,
+ "shortestRoundTripNano": 48777999,
+ "longestRoundTripNano": 185028889,
+ "averageApexExecutionNano": 64135444,
+ "shortestApexExecutionNano": 10045251,
+ "longestApexExecutionNano": 121742417
+ },
+ {
+ "batchNumber": 5943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141638469,
+ "shortestRoundTripNano": 56792367,
+ "longestRoundTripNano": 177320537,
+ "averageApexExecutionNano": 52597373,
+ "shortestApexExecutionNano": 7921240,
+ "longestApexExecutionNano": 113823502
+ },
+ {
+ "batchNumber": 5944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143606974,
+ "shortestRoundTripNano": 49513950,
+ "longestRoundTripNano": 172243325,
+ "averageApexExecutionNano": 65822391,
+ "shortestApexExecutionNano": 10175769,
+ "longestApexExecutionNano": 114278925
+ },
+ {
+ "batchNumber": 5945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147614617,
+ "shortestRoundTripNano": 67121162,
+ "longestRoundTripNano": 200068037,
+ "averageApexExecutionNano": 60064314,
+ "shortestApexExecutionNano": 7774204,
+ "longestApexExecutionNano": 139296937
+ },
+ {
+ "batchNumber": 5946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):36998",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167729015,
+ "shortestRoundTripNano": 65204725,
+ "longestRoundTripNano": 191824121,
+ "averageApexExecutionNano": 76329255,
+ "shortestApexExecutionNano": 7625812,
+ "longestApexExecutionNano": 144118492
+ },
+ {
+ "batchNumber": 5947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143228857,
+ "shortestRoundTripNano": 63818533,
+ "longestRoundTripNano": 181087001,
+ "averageApexExecutionNano": 61923226,
+ "shortestApexExecutionNano": 7793421,
+ "longestApexExecutionNano": 126691955
+ },
+ {
+ "batchNumber": 5948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37000",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175984633,
+ "shortestRoundTripNano": 69986920,
+ "longestRoundTripNano": 213496125,
+ "averageApexExecutionNano": 85785354,
+ "shortestApexExecutionNano": 10911374,
+ "longestApexExecutionNano": 159734065
+ },
+ {
+ "batchNumber": 5949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138750452,
+ "shortestRoundTripNano": 28399207,
+ "longestRoundTripNano": 170498915,
+ "averageApexExecutionNano": 41005473,
+ "shortestApexExecutionNano": 8140454,
+ "longestApexExecutionNano": 105577665
+ },
+ {
+ "batchNumber": 5950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145595845,
+ "shortestRoundTripNano": 77467896,
+ "longestRoundTripNano": 185070387,
+ "averageApexExecutionNano": 55278038,
+ "shortestApexExecutionNano": 8429421,
+ "longestApexExecutionNano": 128805081
+ },
+ {
+ "batchNumber": 5951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134569607,
+ "shortestRoundTripNano": 69408544,
+ "longestRoundTripNano": 167063794,
+ "averageApexExecutionNano": 65894743,
+ "shortestApexExecutionNano": 7936324,
+ "longestApexExecutionNano": 116564010
+ },
+ {
+ "batchNumber": 5952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145909609,
+ "shortestRoundTripNano": 92088004,
+ "longestRoundTripNano": 176813209,
+ "averageApexExecutionNano": 70292491,
+ "shortestApexExecutionNano": 5516481,
+ "longestApexExecutionNano": 123708964
+ },
+ {
+ "batchNumber": 5953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143002104,
+ "shortestRoundTripNano": 67126695,
+ "longestRoundTripNano": 178041150,
+ "averageApexExecutionNano": 54971566,
+ "shortestApexExecutionNano": 7165364,
+ "longestApexExecutionNano": 115130317
+ },
+ {
+ "batchNumber": 5954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158217395,
+ "shortestRoundTripNano": 68503795,
+ "longestRoundTripNano": 192161614,
+ "averageApexExecutionNano": 45921883,
+ "shortestApexExecutionNano": 8502150,
+ "longestApexExecutionNano": 108484750
+ },
+ {
+ "batchNumber": 5955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154370075,
+ "shortestRoundTripNano": 44354952,
+ "longestRoundTripNano": 185879412,
+ "averageApexExecutionNano": 60944720,
+ "shortestApexExecutionNano": 7372346,
+ "longestApexExecutionNano": 131224135
+ },
+ {
+ "batchNumber": 5956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147395125,
+ "shortestRoundTripNano": 75158368,
+ "longestRoundTripNano": 178965588,
+ "averageApexExecutionNano": 68531717,
+ "shortestApexExecutionNano": 13971022,
+ "longestApexExecutionNano": 131474657
+ },
+ {
+ "batchNumber": 5957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148692757,
+ "shortestRoundTripNano": 50729594,
+ "longestRoundTripNano": 173546660,
+ "averageApexExecutionNano": 53465523,
+ "shortestApexExecutionNano": 5342237,
+ "longestApexExecutionNano": 98624836
+ },
+ {
+ "batchNumber": 5958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135951033,
+ "shortestRoundTripNano": 73350376,
+ "longestRoundTripNano": 166112670,
+ "averageApexExecutionNano": 62231453,
+ "shortestApexExecutionNano": 8769114,
+ "longestApexExecutionNano": 130467986
+ },
+ {
+ "batchNumber": 5959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141428434,
+ "shortestRoundTripNano": 55850622,
+ "longestRoundTripNano": 182312776,
+ "averageApexExecutionNano": 46720472,
+ "shortestApexExecutionNano": 5301797,
+ "longestApexExecutionNano": 113863229
+ },
+ {
+ "batchNumber": 5960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169128891,
+ "shortestRoundTripNano": 75374833,
+ "longestRoundTripNano": 199630424,
+ "averageApexExecutionNano": 59345411,
+ "shortestApexExecutionNano": 5920588,
+ "longestApexExecutionNano": 140335895
+ },
+ {
+ "batchNumber": 5961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149479479,
+ "shortestRoundTripNano": 66221710,
+ "longestRoundTripNano": 177444093,
+ "averageApexExecutionNano": 64114834,
+ "shortestApexExecutionNano": 6628608,
+ "longestApexExecutionNano": 135539875
+ },
+ {
+ "batchNumber": 5962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37006",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136462546,
+ "shortestRoundTripNano": 56498152,
+ "longestRoundTripNano": 157162210,
+ "averageApexExecutionNano": 57657975,
+ "shortestApexExecutionNano": 10102828,
+ "longestApexExecutionNano": 108358629
+ },
+ {
+ "batchNumber": 5963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37006",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144169692,
+ "shortestRoundTripNano": 76241636,
+ "longestRoundTripNano": 166702006,
+ "averageApexExecutionNano": 50547552,
+ "shortestApexExecutionNano": 9114124,
+ "longestApexExecutionNano": 116079881
+ },
+ {
+ "batchNumber": 5964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37006",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174310511,
+ "shortestRoundTripNano": 97004533,
+ "longestRoundTripNano": 206586217,
+ "averageApexExecutionNano": 67813209,
+ "shortestApexExecutionNano": 13611661,
+ "longestApexExecutionNano": 139279479
+ },
+ {
+ "batchNumber": 5965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131715796,
+ "shortestRoundTripNano": 38266320,
+ "longestRoundTripNano": 162330609,
+ "averageApexExecutionNano": 68857580,
+ "shortestApexExecutionNano": 7333474,
+ "longestApexExecutionNano": 135938514
+ },
+ {
+ "batchNumber": 5966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156181972,
+ "shortestRoundTripNano": 57774208,
+ "longestRoundTripNano": 180441622,
+ "averageApexExecutionNano": 75223252,
+ "shortestApexExecutionNano": 7825768,
+ "longestApexExecutionNano": 123511595
+ },
+ {
+ "batchNumber": 5967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139659517,
+ "shortestRoundTripNano": 71939700,
+ "longestRoundTripNano": 160926216,
+ "averageApexExecutionNano": 61948617,
+ "shortestApexExecutionNano": 12566416,
+ "longestApexExecutionNano": 112921155
+ },
+ {
+ "batchNumber": 5968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135437146,
+ "shortestRoundTripNano": 69058571,
+ "longestRoundTripNano": 171225310,
+ "averageApexExecutionNano": 51458119,
+ "shortestApexExecutionNano": 12603572,
+ "longestApexExecutionNano": 105801981
+ },
+ {
+ "batchNumber": 5969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155245799,
+ "shortestRoundTripNano": 85825303,
+ "longestRoundTripNano": 177547803,
+ "averageApexExecutionNano": 71516636,
+ "shortestApexExecutionNano": 11127935,
+ "longestApexExecutionNano": 129539302
+ },
+ {
+ "batchNumber": 5970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142280726,
+ "shortestRoundTripNano": 60211169,
+ "longestRoundTripNano": 174515917,
+ "averageApexExecutionNano": 60778846,
+ "shortestApexExecutionNano": 13134449,
+ "longestApexExecutionNano": 124098676
+ },
+ {
+ "batchNumber": 5971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156580393,
+ "shortestRoundTripNano": 92210205,
+ "longestRoundTripNano": 187271191,
+ "averageApexExecutionNano": 73578740,
+ "shortestApexExecutionNano": 12763882,
+ "longestApexExecutionNano": 122383532
+ },
+ {
+ "batchNumber": 5972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136694161,
+ "shortestRoundTripNano": 35348141,
+ "longestRoundTripNano": 172424512,
+ "averageApexExecutionNano": 55469433,
+ "shortestApexExecutionNano": 7851761,
+ "longestApexExecutionNano": 115882379
+ },
+ {
+ "batchNumber": 5973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141078403,
+ "shortestRoundTripNano": 56688135,
+ "longestRoundTripNano": 171721069,
+ "averageApexExecutionNano": 65167066,
+ "shortestApexExecutionNano": 6709014,
+ "longestApexExecutionNano": 123212646
+ },
+ {
+ "batchNumber": 5974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171872458,
+ "shortestRoundTripNano": 59591641,
+ "longestRoundTripNano": 209110695,
+ "averageApexExecutionNano": 51799162,
+ "shortestApexExecutionNano": 9976218,
+ "longestApexExecutionNano": 129065885
+ },
+ {
+ "batchNumber": 5975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150388642,
+ "shortestRoundTripNano": 79972502,
+ "longestRoundTripNano": 179162164,
+ "averageApexExecutionNano": 62077728,
+ "shortestApexExecutionNano": 7270239,
+ "longestApexExecutionNano": 125778094
+ },
+ {
+ "batchNumber": 5976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152879625,
+ "shortestRoundTripNano": 64884332,
+ "longestRoundTripNano": 196807264,
+ "averageApexExecutionNano": 61426433,
+ "shortestApexExecutionNano": 7039001,
+ "longestApexExecutionNano": 155834696
+ },
+ {
+ "batchNumber": 5977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132157642,
+ "shortestRoundTripNano": 29210791,
+ "longestRoundTripNano": 163535092,
+ "averageApexExecutionNano": 60114164,
+ "shortestApexExecutionNano": 6405638,
+ "longestApexExecutionNano": 115115252
+ },
+ {
+ "batchNumber": 5978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132439112,
+ "shortestRoundTripNano": 60846041,
+ "longestRoundTripNano": 164822272,
+ "averageApexExecutionNano": 55047936,
+ "shortestApexExecutionNano": 7047965,
+ "longestApexExecutionNano": 118236580
+ },
+ {
+ "batchNumber": 5979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155084234,
+ "shortestRoundTripNano": 50154649,
+ "longestRoundTripNano": 186394009,
+ "averageApexExecutionNano": 76025719,
+ "shortestApexExecutionNano": 10067497,
+ "longestApexExecutionNano": 136652161
+ },
+ {
+ "batchNumber": 5980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135702761,
+ "shortestRoundTripNano": 70017435,
+ "longestRoundTripNano": 160450796,
+ "averageApexExecutionNano": 56759684,
+ "shortestApexExecutionNano": 10342535,
+ "longestApexExecutionNano": 115640476
+ },
+ {
+ "batchNumber": 5981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159238178,
+ "shortestRoundTripNano": 53187908,
+ "longestRoundTripNano": 187958096,
+ "averageApexExecutionNano": 64537699,
+ "shortestApexExecutionNano": 5184647,
+ "longestApexExecutionNano": 119104450
+ },
+ {
+ "batchNumber": 5982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154955172,
+ "shortestRoundTripNano": 62796802,
+ "longestRoundTripNano": 179167352,
+ "averageApexExecutionNano": 73214509,
+ "shortestApexExecutionNano": 13416527,
+ "longestApexExecutionNano": 127270414
+ },
+ {
+ "batchNumber": 5983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163897991,
+ "shortestRoundTripNano": 77006766,
+ "longestRoundTripNano": 199571416,
+ "averageApexExecutionNano": 63616979,
+ "shortestApexExecutionNano": 8804413,
+ "longestApexExecutionNano": 152499784
+ },
+ {
+ "batchNumber": 5984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146511401,
+ "shortestRoundTripNano": 28552798,
+ "longestRoundTripNano": 181753622,
+ "averageApexExecutionNano": 61669268,
+ "shortestApexExecutionNano": 6140130,
+ "longestApexExecutionNano": 146766404
+ },
+ {
+ "batchNumber": 5985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157443450,
+ "shortestRoundTripNano": 59790607,
+ "longestRoundTripNano": 186554956,
+ "averageApexExecutionNano": 72937020,
+ "shortestApexExecutionNano": 5887939,
+ "longestApexExecutionNano": 123265615
+ },
+ {
+ "batchNumber": 5986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151035202,
+ "shortestRoundTripNano": 52327782,
+ "longestRoundTripNano": 184141418,
+ "averageApexExecutionNano": 56305973,
+ "shortestApexExecutionNano": 7324140,
+ "longestApexExecutionNano": 117638889
+ },
+ {
+ "batchNumber": 5987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126321150,
+ "shortestRoundTripNano": 56247411,
+ "longestRoundTripNano": 152878814,
+ "averageApexExecutionNano": 53687386,
+ "shortestApexExecutionNano": 15394314,
+ "longestApexExecutionNano": 110139451
+ },
+ {
+ "batchNumber": 5988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138541022,
+ "shortestRoundTripNano": 70531517,
+ "longestRoundTripNano": 166458474,
+ "averageApexExecutionNano": 59811018,
+ "shortestApexExecutionNano": 6806671,
+ "longestApexExecutionNano": 116245831
+ },
+ {
+ "batchNumber": 5989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179539295,
+ "shortestRoundTripNano": 102120690,
+ "longestRoundTripNano": 201949962,
+ "averageApexExecutionNano": 84790156,
+ "shortestApexExecutionNano": 10212987,
+ "longestApexExecutionNano": 140732314
+ },
+ {
+ "batchNumber": 5990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131835046,
+ "shortestRoundTripNano": 57588661,
+ "longestRoundTripNano": 155249474,
+ "averageApexExecutionNano": 61279314,
+ "shortestApexExecutionNano": 10749651,
+ "longestApexExecutionNano": 111166988
+ },
+ {
+ "batchNumber": 5991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158522865,
+ "shortestRoundTripNano": 65700685,
+ "longestRoundTripNano": 188940754,
+ "averageApexExecutionNano": 60622168,
+ "shortestApexExecutionNano": 9396758,
+ "longestApexExecutionNano": 132178604
+ },
+ {
+ "batchNumber": 5992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196585239,
+ "shortestRoundTripNano": 69317283,
+ "longestRoundTripNano": 223040977,
+ "averageApexExecutionNano": 114193877,
+ "shortestApexExecutionNano": 5224368,
+ "longestApexExecutionNano": 177674026
+ },
+ {
+ "batchNumber": 5993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135817957,
+ "shortestRoundTripNano": 62137619,
+ "longestRoundTripNano": 169008175,
+ "averageApexExecutionNano": 59658500,
+ "shortestApexExecutionNano": 8940580,
+ "longestApexExecutionNano": 118522441
+ },
+ {
+ "batchNumber": 5994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161359033,
+ "shortestRoundTripNano": 64288223,
+ "longestRoundTripNano": 195727190,
+ "averageApexExecutionNano": 69324139,
+ "shortestApexExecutionNano": 12000565,
+ "longestApexExecutionNano": 165752456
+ },
+ {
+ "batchNumber": 5995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122082098,
+ "shortestRoundTripNano": 41928686,
+ "longestRoundTripNano": 150070106,
+ "averageApexExecutionNano": 56011589,
+ "shortestApexExecutionNano": 7360436,
+ "longestApexExecutionNano": 110107223
+ },
+ {
+ "batchNumber": 5996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144779982,
+ "shortestRoundTripNano": 46323401,
+ "longestRoundTripNano": 173073411,
+ "averageApexExecutionNano": 48284256,
+ "shortestApexExecutionNano": 6597229,
+ "longestApexExecutionNano": 98501596
+ },
+ {
+ "batchNumber": 5997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149185155,
+ "shortestRoundTripNano": 72188688,
+ "longestRoundTripNano": 175765934,
+ "averageApexExecutionNano": 68704692,
+ "shortestApexExecutionNano": 12144117,
+ "longestApexExecutionNano": 131225618
+ },
+ {
+ "batchNumber": 5998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142031419,
+ "shortestRoundTripNano": 68615535,
+ "longestRoundTripNano": 176861427,
+ "averageApexExecutionNano": 74133298,
+ "shortestApexExecutionNano": 8491809,
+ "longestApexExecutionNano": 140834285
+ },
+ {
+ "batchNumber": 5999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150857071,
+ "shortestRoundTripNano": 69703200,
+ "longestRoundTripNano": 178207076,
+ "averageApexExecutionNano": 59724671,
+ "shortestApexExecutionNano": 9793239,
+ "longestApexExecutionNano": 109708746
+ },
+ {
+ "batchNumber": 6000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135686295,
+ "shortestRoundTripNano": 60379313,
+ "longestRoundTripNano": 163428221,
+ "averageApexExecutionNano": 44183325,
+ "shortestApexExecutionNano": 8984523,
+ "longestApexExecutionNano": 97017238
+ },
+ {
+ "batchNumber": 6001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131586230,
+ "shortestRoundTripNano": 32024675,
+ "longestRoundTripNano": 173796673,
+ "averageApexExecutionNano": 57188085,
+ "shortestApexExecutionNano": 9414524,
+ "longestApexExecutionNano": 129731831
+ },
+ {
+ "batchNumber": 6002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133011477,
+ "shortestRoundTripNano": 65070470,
+ "longestRoundTripNano": 166624034,
+ "averageApexExecutionNano": 45621148,
+ "shortestApexExecutionNano": 11883239,
+ "longestApexExecutionNano": 128711826
+ },
+ {
+ "batchNumber": 6003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139325106,
+ "shortestRoundTripNano": 59805735,
+ "longestRoundTripNano": 178024597,
+ "averageApexExecutionNano": 56730489,
+ "shortestApexExecutionNano": 7345832,
+ "longestApexExecutionNano": 126864708
+ },
+ {
+ "batchNumber": 6004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146344465,
+ "shortestRoundTripNano": 44406079,
+ "longestRoundTripNano": 178358722,
+ "averageApexExecutionNano": 65978124,
+ "shortestApexExecutionNano": 9850687,
+ "longestApexExecutionNano": 140293411
+ },
+ {
+ "batchNumber": 6005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139008265,
+ "shortestRoundTripNano": 78352989,
+ "longestRoundTripNano": 166233963,
+ "averageApexExecutionNano": 67712986,
+ "shortestApexExecutionNano": 13929293,
+ "longestApexExecutionNano": 116613980
+ },
+ {
+ "batchNumber": 6006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37024",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141006420,
+ "shortestRoundTripNano": 55889722,
+ "longestRoundTripNano": 168724893,
+ "averageApexExecutionNano": 54846232,
+ "shortestApexExecutionNano": 8697848,
+ "longestApexExecutionNano": 118154430
+ },
+ {
+ "batchNumber": 6007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149889121,
+ "shortestRoundTripNano": 76210091,
+ "longestRoundTripNano": 177735539,
+ "averageApexExecutionNano": 67758185,
+ "shortestApexExecutionNano": 10531441,
+ "longestApexExecutionNano": 129964202
+ },
+ {
+ "batchNumber": 6008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136912711,
+ "shortestRoundTripNano": 65447318,
+ "longestRoundTripNano": 161043829,
+ "averageApexExecutionNano": 58507296,
+ "shortestApexExecutionNano": 13265430,
+ "longestApexExecutionNano": 106029877
+ },
+ {
+ "batchNumber": 6009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130556599,
+ "shortestRoundTripNano": 67183927,
+ "longestRoundTripNano": 156589015,
+ "averageApexExecutionNano": 52265339,
+ "shortestApexExecutionNano": 11504517,
+ "longestApexExecutionNano": 99025866
+ },
+ {
+ "batchNumber": 6010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150817383,
+ "shortestRoundTripNano": 78419328,
+ "longestRoundTripNano": 171923312,
+ "averageApexExecutionNano": 65489426,
+ "shortestApexExecutionNano": 6853219,
+ "longestApexExecutionNano": 109069605
+ },
+ {
+ "batchNumber": 6011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127358126,
+ "shortestRoundTripNano": 51341124,
+ "longestRoundTripNano": 154943080,
+ "averageApexExecutionNano": 64984116,
+ "shortestApexExecutionNano": 6898631,
+ "longestApexExecutionNano": 113087211
+ },
+ {
+ "batchNumber": 6012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159408014,
+ "shortestRoundTripNano": 84827072,
+ "longestRoundTripNano": 193406274,
+ "averageApexExecutionNano": 64034236,
+ "shortestApexExecutionNano": 9891853,
+ "longestApexExecutionNano": 126326762
+ },
+ {
+ "batchNumber": 6013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164706758,
+ "shortestRoundTripNano": 78007275,
+ "longestRoundTripNano": 200514805,
+ "averageApexExecutionNano": 57670561,
+ "shortestApexExecutionNano": 9179042,
+ "longestApexExecutionNano": 138455304
+ },
+ {
+ "batchNumber": 6014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129706144,
+ "shortestRoundTripNano": 27482996,
+ "longestRoundTripNano": 156802167,
+ "averageApexExecutionNano": 50897566,
+ "shortestApexExecutionNano": 7846343,
+ "longestApexExecutionNano": 105009651
+ },
+ {
+ "batchNumber": 6015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170786990,
+ "shortestRoundTripNano": 80612295,
+ "longestRoundTripNano": 213602390,
+ "averageApexExecutionNano": 77287335,
+ "shortestApexExecutionNano": 8985034,
+ "longestApexExecutionNano": 150192966
+ },
+ {
+ "batchNumber": 6016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151982240,
+ "shortestRoundTripNano": 66594683,
+ "longestRoundTripNano": 177832347,
+ "averageApexExecutionNano": 55643649,
+ "shortestApexExecutionNano": 7855894,
+ "longestApexExecutionNano": 114862094
+ },
+ {
+ "batchNumber": 6017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138412145,
+ "shortestRoundTripNano": 62255334,
+ "longestRoundTripNano": 168312017,
+ "averageApexExecutionNano": 60499142,
+ "shortestApexExecutionNano": 6546125,
+ "longestApexExecutionNano": 125659490
+ },
+ {
+ "batchNumber": 6018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171060270,
+ "shortestRoundTripNano": 48387199,
+ "longestRoundTripNano": 215811613,
+ "averageApexExecutionNano": 73804942,
+ "shortestApexExecutionNano": 7472910,
+ "longestApexExecutionNano": 159619056
+ },
+ {
+ "batchNumber": 6019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145472636,
+ "shortestRoundTripNano": 75261108,
+ "longestRoundTripNano": 175126166,
+ "averageApexExecutionNano": 60731316,
+ "shortestApexExecutionNano": 7177774,
+ "longestApexExecutionNano": 130527920
+ },
+ {
+ "batchNumber": 6020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151956553,
+ "shortestRoundTripNano": 86133073,
+ "longestRoundTripNano": 174559982,
+ "averageApexExecutionNano": 56174801,
+ "shortestApexExecutionNano": 5565493,
+ "longestApexExecutionNano": 113072550
+ },
+ {
+ "batchNumber": 6021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158480469,
+ "shortestRoundTripNano": 68047023,
+ "longestRoundTripNano": 185556409,
+ "averageApexExecutionNano": 57982182,
+ "shortestApexExecutionNano": 8318662,
+ "longestApexExecutionNano": 125357407
+ },
+ {
+ "batchNumber": 6022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160254485,
+ "shortestRoundTripNano": 59527476,
+ "longestRoundTripNano": 189856353,
+ "averageApexExecutionNano": 62371749,
+ "shortestApexExecutionNano": 9618964,
+ "longestApexExecutionNano": 146426857
+ },
+ {
+ "batchNumber": 6023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148151722,
+ "shortestRoundTripNano": 64743669,
+ "longestRoundTripNano": 180414607,
+ "averageApexExecutionNano": 63573610,
+ "shortestApexExecutionNano": 16803940,
+ "longestApexExecutionNano": 129638785
+ },
+ {
+ "batchNumber": 6024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145034823,
+ "shortestRoundTripNano": 45707519,
+ "longestRoundTripNano": 174576048,
+ "averageApexExecutionNano": 65543335,
+ "shortestApexExecutionNano": 7182131,
+ "longestApexExecutionNano": 126202662
+ },
+ {
+ "batchNumber": 6025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165923734,
+ "shortestRoundTripNano": 72926062,
+ "longestRoundTripNano": 195722573,
+ "averageApexExecutionNano": 81594138,
+ "shortestApexExecutionNano": 5596978,
+ "longestApexExecutionNano": 149049269
+ },
+ {
+ "batchNumber": 6026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144598701,
+ "shortestRoundTripNano": 57589972,
+ "longestRoundTripNano": 172456214,
+ "averageApexExecutionNano": 62420897,
+ "shortestApexExecutionNano": 13017288,
+ "longestApexExecutionNano": 130389622
+ },
+ {
+ "batchNumber": 6027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149007344,
+ "shortestRoundTripNano": 87760664,
+ "longestRoundTripNano": 177826687,
+ "averageApexExecutionNano": 70187486,
+ "shortestApexExecutionNano": 7537154,
+ "longestApexExecutionNano": 127417922
+ },
+ {
+ "batchNumber": 6028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37028",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138129668,
+ "shortestRoundTripNano": 45606942,
+ "longestRoundTripNano": 166349507,
+ "averageApexExecutionNano": 47531446,
+ "shortestApexExecutionNano": 9287037,
+ "longestApexExecutionNano": 115977229
+ },
+ {
+ "batchNumber": 6029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169847229,
+ "shortestRoundTripNano": 102902793,
+ "longestRoundTripNano": 191547598,
+ "averageApexExecutionNano": 42785060,
+ "shortestApexExecutionNano": 9140360,
+ "longestApexExecutionNano": 139713972
+ },
+ {
+ "batchNumber": 6030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146501528,
+ "shortestRoundTripNano": 52276734,
+ "longestRoundTripNano": 182326695,
+ "averageApexExecutionNano": 48704177,
+ "shortestApexExecutionNano": 5996923,
+ "longestApexExecutionNano": 110799808
+ },
+ {
+ "batchNumber": 6031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151453803,
+ "shortestRoundTripNano": 79731694,
+ "longestRoundTripNano": 183127320,
+ "averageApexExecutionNano": 70830501,
+ "shortestApexExecutionNano": 17592833,
+ "longestApexExecutionNano": 137420385
+ },
+ {
+ "batchNumber": 6032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156471884,
+ "shortestRoundTripNano": 81527006,
+ "longestRoundTripNano": 199208121,
+ "averageApexExecutionNano": 66143882,
+ "shortestApexExecutionNano": 11600571,
+ "longestApexExecutionNano": 130031869
+ },
+ {
+ "batchNumber": 6033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140302605,
+ "shortestRoundTripNano": 47397082,
+ "longestRoundTripNano": 163991942,
+ "averageApexExecutionNano": 65720995,
+ "shortestApexExecutionNano": 20601710,
+ "longestApexExecutionNano": 125545001
+ },
+ {
+ "batchNumber": 6034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143116601,
+ "shortestRoundTripNano": 66000853,
+ "longestRoundTripNano": 171904645,
+ "averageApexExecutionNano": 51932650,
+ "shortestApexExecutionNano": 6718595,
+ "longestApexExecutionNano": 115263513
+ },
+ {
+ "batchNumber": 6035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143691013,
+ "shortestRoundTripNano": 65292228,
+ "longestRoundTripNano": 174428551,
+ "averageApexExecutionNano": 67025475,
+ "shortestApexExecutionNano": 10434336,
+ "longestApexExecutionNano": 129424715
+ },
+ {
+ "batchNumber": 6036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141713349,
+ "shortestRoundTripNano": 67909850,
+ "longestRoundTripNano": 170141579,
+ "averageApexExecutionNano": 62961425,
+ "shortestApexExecutionNano": 7063976,
+ "longestApexExecutionNano": 129671379
+ },
+ {
+ "batchNumber": 6037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182284329,
+ "shortestRoundTripNano": 66133219,
+ "longestRoundTripNano": 214629320,
+ "averageApexExecutionNano": 86316235,
+ "shortestApexExecutionNano": 15440870,
+ "longestApexExecutionNano": 145570435
+ },
+ {
+ "batchNumber": 6038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139679584,
+ "shortestRoundTripNano": 75087817,
+ "longestRoundTripNano": 171511892,
+ "averageApexExecutionNano": 56450915,
+ "shortestApexExecutionNano": 9719477,
+ "longestApexExecutionNano": 129131917
+ },
+ {
+ "batchNumber": 6039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146102546,
+ "shortestRoundTripNano": 41169412,
+ "longestRoundTripNano": 188225041,
+ "averageApexExecutionNano": 69417123,
+ "shortestApexExecutionNano": 12970760,
+ "longestApexExecutionNano": 122150068
+ },
+ {
+ "batchNumber": 6040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37036",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139631928,
+ "shortestRoundTripNano": 67354060,
+ "longestRoundTripNano": 168292288,
+ "averageApexExecutionNano": 63529910,
+ "shortestApexExecutionNano": 9942858,
+ "longestApexExecutionNano": 134953406
+ },
+ {
+ "batchNumber": 6041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147248850,
+ "shortestRoundTripNano": 77642482,
+ "longestRoundTripNano": 176146466,
+ "averageApexExecutionNano": 62810260,
+ "shortestApexExecutionNano": 8470811,
+ "longestApexExecutionNano": 127594366
+ },
+ {
+ "batchNumber": 6042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154611228,
+ "shortestRoundTripNano": 62978620,
+ "longestRoundTripNano": 181960442,
+ "averageApexExecutionNano": 45243053,
+ "shortestApexExecutionNano": 8562222,
+ "longestApexExecutionNano": 120086360
+ },
+ {
+ "batchNumber": 6043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37032",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127388157,
+ "shortestRoundTripNano": 61867501,
+ "longestRoundTripNano": 152104314,
+ "averageApexExecutionNano": 45534901,
+ "shortestApexExecutionNano": 8341209,
+ "longestApexExecutionNano": 103044028
+ },
+ {
+ "batchNumber": 6044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133708776,
+ "shortestRoundTripNano": 75209063,
+ "longestRoundTripNano": 159436866,
+ "averageApexExecutionNano": 55703525,
+ "shortestApexExecutionNano": 9735762,
+ "longestApexExecutionNano": 110185556
+ },
+ {
+ "batchNumber": 6045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183195288,
+ "shortestRoundTripNano": 94356792,
+ "longestRoundTripNano": 214875915,
+ "averageApexExecutionNano": 83101779,
+ "shortestApexExecutionNano": 9530994,
+ "longestApexExecutionNano": 156040110
+ },
+ {
+ "batchNumber": 6046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156182330,
+ "shortestRoundTripNano": 67599498,
+ "longestRoundTripNano": 182566573,
+ "averageApexExecutionNano": 63186186,
+ "shortestApexExecutionNano": 6994333,
+ "longestApexExecutionNano": 131994502
+ },
+ {
+ "batchNumber": 6047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156102255,
+ "shortestRoundTripNano": 73510003,
+ "longestRoundTripNano": 189307797,
+ "averageApexExecutionNano": 63218010,
+ "shortestApexExecutionNano": 7985408,
+ "longestApexExecutionNano": 129775297
+ },
+ {
+ "batchNumber": 6048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154329167,
+ "shortestRoundTripNano": 57522471,
+ "longestRoundTripNano": 181732896,
+ "averageApexExecutionNano": 71936294,
+ "shortestApexExecutionNano": 6705471,
+ "longestApexExecutionNano": 117905095
+ },
+ {
+ "batchNumber": 6049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157849713,
+ "shortestRoundTripNano": 41001431,
+ "longestRoundTripNano": 190839013,
+ "averageApexExecutionNano": 66278028,
+ "shortestApexExecutionNano": 12277568,
+ "longestApexExecutionNano": 138636824
+ },
+ {
+ "batchNumber": 6050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122692810,
+ "shortestRoundTripNano": 46614855,
+ "longestRoundTripNano": 159162898,
+ "averageApexExecutionNano": 60874961,
+ "shortestApexExecutionNano": 9291941,
+ "longestApexExecutionNano": 117414146
+ },
+ {
+ "batchNumber": 6051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162560571,
+ "shortestRoundTripNano": 69022546,
+ "longestRoundTripNano": 197047810,
+ "averageApexExecutionNano": 67318479,
+ "shortestApexExecutionNano": 7029933,
+ "longestApexExecutionNano": 128564337
+ },
+ {
+ "batchNumber": 6052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157483378,
+ "shortestRoundTripNano": 79082318,
+ "longestRoundTripNano": 186149110,
+ "averageApexExecutionNano": 62155955,
+ "shortestApexExecutionNano": 9733303,
+ "longestApexExecutionNano": 136180598
+ },
+ {
+ "batchNumber": 6053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132599268,
+ "shortestRoundTripNano": 44338203,
+ "longestRoundTripNano": 162907258,
+ "averageApexExecutionNano": 45314165,
+ "shortestApexExecutionNano": 7304076,
+ "longestApexExecutionNano": 120383786
+ },
+ {
+ "batchNumber": 6054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175873580,
+ "shortestRoundTripNano": 61501267,
+ "longestRoundTripNano": 206462625,
+ "averageApexExecutionNano": 88651896,
+ "shortestApexExecutionNano": 15465580,
+ "longestApexExecutionNano": 155669228
+ },
+ {
+ "batchNumber": 6055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167723890,
+ "shortestRoundTripNano": 96741712,
+ "longestRoundTripNano": 193509353,
+ "averageApexExecutionNano": 73011087,
+ "shortestApexExecutionNano": 7756850,
+ "longestApexExecutionNano": 140769120
+ },
+ {
+ "batchNumber": 6056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150375447,
+ "shortestRoundTripNano": 72688452,
+ "longestRoundTripNano": 178704468,
+ "averageApexExecutionNano": 53370094,
+ "shortestApexExecutionNano": 6498693,
+ "longestApexExecutionNano": 118837147
+ },
+ {
+ "batchNumber": 6057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163238662,
+ "shortestRoundTripNano": 30676528,
+ "longestRoundTripNano": 194002606,
+ "averageApexExecutionNano": 76993066,
+ "shortestApexExecutionNano": 9203949,
+ "longestApexExecutionNano": 135109124
+ },
+ {
+ "batchNumber": 6058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142561686,
+ "shortestRoundTripNano": 61234704,
+ "longestRoundTripNano": 169042854,
+ "averageApexExecutionNano": 63123099,
+ "shortestApexExecutionNano": 9652680,
+ "longestApexExecutionNano": 131165321
+ },
+ {
+ "batchNumber": 6059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132167206,
+ "shortestRoundTripNano": 53342570,
+ "longestRoundTripNano": 162087250,
+ "averageApexExecutionNano": 49691106,
+ "shortestApexExecutionNano": 5530593,
+ "longestApexExecutionNano": 110555836
+ },
+ {
+ "batchNumber": 6060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37040",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141529513,
+ "shortestRoundTripNano": 34636689,
+ "longestRoundTripNano": 173959299,
+ "averageApexExecutionNano": 52947285,
+ "shortestApexExecutionNano": 8953001,
+ "longestApexExecutionNano": 112668751
+ },
+ {
+ "batchNumber": 6061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165351493,
+ "shortestRoundTripNano": 101080043,
+ "longestRoundTripNano": 210147400,
+ "averageApexExecutionNano": 53993110,
+ "shortestApexExecutionNano": 5541329,
+ "longestApexExecutionNano": 135194341
+ },
+ {
+ "batchNumber": 6062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145457976,
+ "shortestRoundTripNano": 55718361,
+ "longestRoundTripNano": 177769343,
+ "averageApexExecutionNano": 56595358,
+ "shortestApexExecutionNano": 7438838,
+ "longestApexExecutionNano": 114657425
+ },
+ {
+ "batchNumber": 6063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155732327,
+ "shortestRoundTripNano": 74069052,
+ "longestRoundTripNano": 179328736,
+ "averageApexExecutionNano": 72248369,
+ "shortestApexExecutionNano": 12876044,
+ "longestApexExecutionNano": 128382171
+ },
+ {
+ "batchNumber": 6064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139200515,
+ "shortestRoundTripNano": 55632592,
+ "longestRoundTripNano": 171607098,
+ "averageApexExecutionNano": 48650020,
+ "shortestApexExecutionNano": 6820036,
+ "longestApexExecutionNano": 105012240
+ },
+ {
+ "batchNumber": 6065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137754703,
+ "shortestRoundTripNano": 54303368,
+ "longestRoundTripNano": 169740480,
+ "averageApexExecutionNano": 47965605,
+ "shortestApexExecutionNano": 6562010,
+ "longestApexExecutionNano": 93936295
+ },
+ {
+ "batchNumber": 6066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137015810,
+ "shortestRoundTripNano": 68275749,
+ "longestRoundTripNano": 170067080,
+ "averageApexExecutionNano": 61925024,
+ "shortestApexExecutionNano": 8829345,
+ "longestApexExecutionNano": 116410590
+ },
+ {
+ "batchNumber": 6067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145295487,
+ "shortestRoundTripNano": 76680236,
+ "longestRoundTripNano": 173703955,
+ "averageApexExecutionNano": 61900660,
+ "shortestApexExecutionNano": 9845721,
+ "longestApexExecutionNano": 120302753
+ },
+ {
+ "batchNumber": 6068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133904513,
+ "shortestRoundTripNano": 76376866,
+ "longestRoundTripNano": 153481915,
+ "averageApexExecutionNano": 57020035,
+ "shortestApexExecutionNano": 6160132,
+ "longestApexExecutionNano": 111893645
+ },
+ {
+ "batchNumber": 6069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153972814,
+ "shortestRoundTripNano": 59580052,
+ "longestRoundTripNano": 183108999,
+ "averageApexExecutionNano": 74673654,
+ "shortestApexExecutionNano": 5819629,
+ "longestApexExecutionNano": 131693445
+ },
+ {
+ "batchNumber": 6070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130413587,
+ "shortestRoundTripNano": 65599758,
+ "longestRoundTripNano": 164766782,
+ "averageApexExecutionNano": 55876114,
+ "shortestApexExecutionNano": 5554117,
+ "longestApexExecutionNano": 125251247
+ },
+ {
+ "batchNumber": 6071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170137942,
+ "shortestRoundTripNano": 60833932,
+ "longestRoundTripNano": 203737526,
+ "averageApexExecutionNano": 75197010,
+ "shortestApexExecutionNano": 17676023,
+ "longestApexExecutionNano": 135874036
+ },
+ {
+ "batchNumber": 6072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149857927,
+ "shortestRoundTripNano": 33914407,
+ "longestRoundTripNano": 181324451,
+ "averageApexExecutionNano": 70959798,
+ "shortestApexExecutionNano": 7234791,
+ "longestApexExecutionNano": 141586103
+ },
+ {
+ "batchNumber": 6073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157154832,
+ "shortestRoundTripNano": 57117227,
+ "longestRoundTripNano": 190376959,
+ "averageApexExecutionNano": 56980715,
+ "shortestApexExecutionNano": 7774085,
+ "longestApexExecutionNano": 141838645
+ },
+ {
+ "batchNumber": 6074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147341863,
+ "shortestRoundTripNano": 36112009,
+ "longestRoundTripNano": 172833559,
+ "averageApexExecutionNano": 70307194,
+ "shortestApexExecutionNano": 11994858,
+ "longestApexExecutionNano": 123876254
+ },
+ {
+ "batchNumber": 6075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132783224,
+ "shortestRoundTripNano": 49172627,
+ "longestRoundTripNano": 166627218,
+ "averageApexExecutionNano": 57529585,
+ "shortestApexExecutionNano": 10149269,
+ "longestApexExecutionNano": 123381463
+ },
+ {
+ "batchNumber": 6076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171417639,
+ "shortestRoundTripNano": 95829455,
+ "longestRoundTripNano": 204596847,
+ "averageApexExecutionNano": 69669324,
+ "shortestApexExecutionNano": 15583637,
+ "longestApexExecutionNano": 150803936
+ },
+ {
+ "batchNumber": 6077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 250983717,
+ "shortestRoundTripNano": 60788514,
+ "longestRoundTripNano": 285463081,
+ "averageApexExecutionNano": 111186446,
+ "shortestApexExecutionNano": 8824716,
+ "longestApexExecutionNano": 226001056
+ },
+ {
+ "batchNumber": 6078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154333156,
+ "shortestRoundTripNano": 49880267,
+ "longestRoundTripNano": 185836434,
+ "averageApexExecutionNano": 71373058,
+ "shortestApexExecutionNano": 9517904,
+ "longestApexExecutionNano": 121900300
+ },
+ {
+ "batchNumber": 6079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181574542,
+ "shortestRoundTripNano": 103344060,
+ "longestRoundTripNano": 229054694,
+ "averageApexExecutionNano": 81292511,
+ "shortestApexExecutionNano": 23793579,
+ "longestApexExecutionNano": 159817661
+ },
+ {
+ "batchNumber": 6080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140835543,
+ "shortestRoundTripNano": 64860282,
+ "longestRoundTripNano": 177786411,
+ "averageApexExecutionNano": 54559948,
+ "shortestApexExecutionNano": 7479864,
+ "longestApexExecutionNano": 130920457
+ },
+ {
+ "batchNumber": 6081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153020821,
+ "shortestRoundTripNano": 86913064,
+ "longestRoundTripNano": 183188869,
+ "averageApexExecutionNano": 64504833,
+ "shortestApexExecutionNano": 11353359,
+ "longestApexExecutionNano": 112392689
+ },
+ {
+ "batchNumber": 6082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142142373,
+ "shortestRoundTripNano": 88604006,
+ "longestRoundTripNano": 186643296,
+ "averageApexExecutionNano": 60944192,
+ "shortestApexExecutionNano": 9226289,
+ "longestApexExecutionNano": 123532197
+ },
+ {
+ "batchNumber": 6083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132533679,
+ "shortestRoundTripNano": 65609884,
+ "longestRoundTripNano": 165118715,
+ "averageApexExecutionNano": 55153136,
+ "shortestApexExecutionNano": 7083260,
+ "longestApexExecutionNano": 126879715
+ },
+ {
+ "batchNumber": 6084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140790130,
+ "shortestRoundTripNano": 69231568,
+ "longestRoundTripNano": 172623574,
+ "averageApexExecutionNano": 47746421,
+ "shortestApexExecutionNano": 9764251,
+ "longestApexExecutionNano": 130014350
+ },
+ {
+ "batchNumber": 6085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136556961,
+ "shortestRoundTripNano": 42675356,
+ "longestRoundTripNano": 162741700,
+ "averageApexExecutionNano": 42005434,
+ "shortestApexExecutionNano": 7224124,
+ "longestApexExecutionNano": 118378785
+ },
+ {
+ "batchNumber": 6086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163422135,
+ "shortestRoundTripNano": 92805854,
+ "longestRoundTripNano": 187061221,
+ "averageApexExecutionNano": 75741355,
+ "shortestApexExecutionNano": 6760034,
+ "longestApexExecutionNano": 144511211
+ },
+ {
+ "batchNumber": 6087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127991834,
+ "shortestRoundTripNano": 65853336,
+ "longestRoundTripNano": 168501032,
+ "averageApexExecutionNano": 58120203,
+ "shortestApexExecutionNano": 9660422,
+ "longestApexExecutionNano": 113104067
+ },
+ {
+ "batchNumber": 6088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129939671,
+ "shortestRoundTripNano": 59280163,
+ "longestRoundTripNano": 156460396,
+ "averageApexExecutionNano": 58914343,
+ "shortestApexExecutionNano": 9689237,
+ "longestApexExecutionNano": 116175595
+ },
+ {
+ "batchNumber": 6089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164123700,
+ "shortestRoundTripNano": 91274500,
+ "longestRoundTripNano": 189534818,
+ "averageApexExecutionNano": 63072094,
+ "shortestApexExecutionNano": 6747338,
+ "longestApexExecutionNano": 139535427
+ },
+ {
+ "batchNumber": 6090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162373001,
+ "shortestRoundTripNano": 72673242,
+ "longestRoundTripNano": 192406057,
+ "averageApexExecutionNano": 62430762,
+ "shortestApexExecutionNano": 8259770,
+ "longestApexExecutionNano": 130175716
+ },
+ {
+ "batchNumber": 6091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139497410,
+ "shortestRoundTripNano": 74468135,
+ "longestRoundTripNano": 171943023,
+ "averageApexExecutionNano": 61316978,
+ "shortestApexExecutionNano": 11606300,
+ "longestApexExecutionNano": 130098659
+ },
+ {
+ "batchNumber": 6092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155439367,
+ "shortestRoundTripNano": 42133533,
+ "longestRoundTripNano": 194530153,
+ "averageApexExecutionNano": 75378703,
+ "shortestApexExecutionNano": 8003717,
+ "longestApexExecutionNano": 142805195
+ },
+ {
+ "batchNumber": 6093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130136291,
+ "shortestRoundTripNano": 61645409,
+ "longestRoundTripNano": 159186892,
+ "averageApexExecutionNano": 54240849,
+ "shortestApexExecutionNano": 9330107,
+ "longestApexExecutionNano": 114223651
+ },
+ {
+ "batchNumber": 6094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147063444,
+ "shortestRoundTripNano": 72055601,
+ "longestRoundTripNano": 174787700,
+ "averageApexExecutionNano": 61792153,
+ "shortestApexExecutionNano": 12378328,
+ "longestApexExecutionNano": 118968696
+ },
+ {
+ "batchNumber": 6095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152522630,
+ "shortestRoundTripNano": 74229682,
+ "longestRoundTripNano": 184390810,
+ "averageApexExecutionNano": 76974217,
+ "shortestApexExecutionNano": 6455996,
+ "longestApexExecutionNano": 137381308
+ },
+ {
+ "batchNumber": 6096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148773341,
+ "shortestRoundTripNano": 84650259,
+ "longestRoundTripNano": 174881498,
+ "averageApexExecutionNano": 56046872,
+ "shortestApexExecutionNano": 6807107,
+ "longestApexExecutionNano": 126755982
+ },
+ {
+ "batchNumber": 6097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145246323,
+ "shortestRoundTripNano": 96492257,
+ "longestRoundTripNano": 169504399,
+ "averageApexExecutionNano": 63980159,
+ "shortestApexExecutionNano": 8181438,
+ "longestApexExecutionNano": 112678330
+ },
+ {
+ "batchNumber": 6098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138224930,
+ "shortestRoundTripNano": 60538611,
+ "longestRoundTripNano": 166117145,
+ "averageApexExecutionNano": 62940191,
+ "shortestApexExecutionNano": 12209141,
+ "longestApexExecutionNano": 117145158
+ },
+ {
+ "batchNumber": 6099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139597103,
+ "shortestRoundTripNano": 45661622,
+ "longestRoundTripNano": 164958149,
+ "averageApexExecutionNano": 51640785,
+ "shortestApexExecutionNano": 7028720,
+ "longestApexExecutionNano": 114797029
+ },
+ {
+ "batchNumber": 6100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136381481,
+ "shortestRoundTripNano": 72103005,
+ "longestRoundTripNano": 169239955,
+ "averageApexExecutionNano": 60077401,
+ "shortestApexExecutionNano": 4062901,
+ "longestApexExecutionNano": 114381156
+ },
+ {
+ "batchNumber": 6101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133478486,
+ "shortestRoundTripNano": 49005102,
+ "longestRoundTripNano": 164708097,
+ "averageApexExecutionNano": 63875682,
+ "shortestApexExecutionNano": 8011251,
+ "longestApexExecutionNano": 124301269
+ },
+ {
+ "batchNumber": 6102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37060",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155792202,
+ "shortestRoundTripNano": 57848932,
+ "longestRoundTripNano": 180630124,
+ "averageApexExecutionNano": 82884331,
+ "shortestApexExecutionNano": 15316331,
+ "longestApexExecutionNano": 139998822
+ },
+ {
+ "batchNumber": 6103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161211101,
+ "shortestRoundTripNano": 75019425,
+ "longestRoundTripNano": 188926995,
+ "averageApexExecutionNano": 61263597,
+ "shortestApexExecutionNano": 8540397,
+ "longestApexExecutionNano": 128625108
+ },
+ {
+ "batchNumber": 6104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146066352,
+ "shortestRoundTripNano": 82215480,
+ "longestRoundTripNano": 176239946,
+ "averageApexExecutionNano": 68503816,
+ "shortestApexExecutionNano": 5684828,
+ "longestApexExecutionNano": 120940063
+ },
+ {
+ "batchNumber": 6105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149586485,
+ "shortestRoundTripNano": 69262975,
+ "longestRoundTripNano": 176477814,
+ "averageApexExecutionNano": 82545379,
+ "shortestApexExecutionNano": 20284942,
+ "longestApexExecutionNano": 129596360
+ },
+ {
+ "batchNumber": 6106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159925325,
+ "shortestRoundTripNano": 64019771,
+ "longestRoundTripNano": 187948227,
+ "averageApexExecutionNano": 63105890,
+ "shortestApexExecutionNano": 5882017,
+ "longestApexExecutionNano": 119884502
+ },
+ {
+ "batchNumber": 6107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161754764,
+ "shortestRoundTripNano": 69102075,
+ "longestRoundTripNano": 192794963,
+ "averageApexExecutionNano": 64452170,
+ "shortestApexExecutionNano": 10313244,
+ "longestApexExecutionNano": 114323378
+ },
+ {
+ "batchNumber": 6108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134731386,
+ "shortestRoundTripNano": 34363843,
+ "longestRoundTripNano": 166576900,
+ "averageApexExecutionNano": 52849489,
+ "shortestApexExecutionNano": 9127470,
+ "longestApexExecutionNano": 120394925
+ },
+ {
+ "batchNumber": 6109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138714863,
+ "shortestRoundTripNano": 62083683,
+ "longestRoundTripNano": 169899921,
+ "averageApexExecutionNano": 56754804,
+ "shortestApexExecutionNano": 5829661,
+ "longestApexExecutionNano": 127248282
+ },
+ {
+ "batchNumber": 6110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37062",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167337724,
+ "shortestRoundTripNano": 46072319,
+ "longestRoundTripNano": 196228773,
+ "averageApexExecutionNano": 85367084,
+ "shortestApexExecutionNano": 10923074,
+ "longestApexExecutionNano": 145625903
+ },
+ {
+ "batchNumber": 6111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140020051,
+ "shortestRoundTripNano": 48914878,
+ "longestRoundTripNano": 180352891,
+ "averageApexExecutionNano": 57321795,
+ "shortestApexExecutionNano": 10401871,
+ "longestApexExecutionNano": 134606989
+ },
+ {
+ "batchNumber": 6112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134399699,
+ "shortestRoundTripNano": 74780788,
+ "longestRoundTripNano": 167179977,
+ "averageApexExecutionNano": 60792461,
+ "shortestApexExecutionNano": 6264242,
+ "longestApexExecutionNano": 122641179
+ },
+ {
+ "batchNumber": 6113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169762297,
+ "shortestRoundTripNano": 63657338,
+ "longestRoundTripNano": 200418115,
+ "averageApexExecutionNano": 82695903,
+ "shortestApexExecutionNano": 14904415,
+ "longestApexExecutionNano": 127631735
+ },
+ {
+ "batchNumber": 6114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175848151,
+ "shortestRoundTripNano": 101334296,
+ "longestRoundTripNano": 198086559,
+ "averageApexExecutionNano": 84064069,
+ "shortestApexExecutionNano": 9783118,
+ "longestApexExecutionNano": 161074103
+ },
+ {
+ "batchNumber": 6115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170447256,
+ "shortestRoundTripNano": 71899121,
+ "longestRoundTripNano": 194793216,
+ "averageApexExecutionNano": 78356971,
+ "shortestApexExecutionNano": 9680109,
+ "longestApexExecutionNano": 159416050
+ },
+ {
+ "batchNumber": 6116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149054217,
+ "shortestRoundTripNano": 75690881,
+ "longestRoundTripNano": 175262484,
+ "averageApexExecutionNano": 55973812,
+ "shortestApexExecutionNano": 9515234,
+ "longestApexExecutionNano": 129568561
+ },
+ {
+ "batchNumber": 6117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37068",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148728924,
+ "shortestRoundTripNano": 74744689,
+ "longestRoundTripNano": 176862008,
+ "averageApexExecutionNano": 66166460,
+ "shortestApexExecutionNano": 8507002,
+ "longestApexExecutionNano": 121700866
+ },
+ {
+ "batchNumber": 6118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161816198,
+ "shortestRoundTripNano": 84543018,
+ "longestRoundTripNano": 188516011,
+ "averageApexExecutionNano": 69297149,
+ "shortestApexExecutionNano": 7811794,
+ "longestApexExecutionNano": 143968563
+ },
+ {
+ "batchNumber": 6119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143405001,
+ "shortestRoundTripNano": 47646002,
+ "longestRoundTripNano": 183445929,
+ "averageApexExecutionNano": 48468017,
+ "shortestApexExecutionNano": 10751712,
+ "longestApexExecutionNano": 120094795
+ },
+ {
+ "batchNumber": 6120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145282910,
+ "shortestRoundTripNano": 69374043,
+ "longestRoundTripNano": 174436901,
+ "averageApexExecutionNano": 67012558,
+ "shortestApexExecutionNano": 6320098,
+ "longestApexExecutionNano": 132515858
+ },
+ {
+ "batchNumber": 6121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157380761,
+ "shortestRoundTripNano": 63738270,
+ "longestRoundTripNano": 191095304,
+ "averageApexExecutionNano": 57115005,
+ "shortestApexExecutionNano": 10998323,
+ "longestApexExecutionNano": 146493739
+ },
+ {
+ "batchNumber": 6122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125212760,
+ "shortestRoundTripNano": 69681888,
+ "longestRoundTripNano": 159918717,
+ "averageApexExecutionNano": 62266254,
+ "shortestApexExecutionNano": 7682106,
+ "longestApexExecutionNano": 123820948
+ },
+ {
+ "batchNumber": 6123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37066",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173372360,
+ "shortestRoundTripNano": 62044503,
+ "longestRoundTripNano": 214334047,
+ "averageApexExecutionNano": 84933481,
+ "shortestApexExecutionNano": 6687051,
+ "longestApexExecutionNano": 157945947
+ },
+ {
+ "batchNumber": 6124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147963756,
+ "shortestRoundTripNano": 28291318,
+ "longestRoundTripNano": 184646152,
+ "averageApexExecutionNano": 54960578,
+ "shortestApexExecutionNano": 6734498,
+ "longestApexExecutionNano": 130829968
+ },
+ {
+ "batchNumber": 6125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165302989,
+ "shortestRoundTripNano": 78740531,
+ "longestRoundTripNano": 201793085,
+ "averageApexExecutionNano": 82004200,
+ "shortestApexExecutionNano": 11452102,
+ "longestApexExecutionNano": 135739820
+ },
+ {
+ "batchNumber": 6126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157376563,
+ "shortestRoundTripNano": 63167742,
+ "longestRoundTripNano": 185690683,
+ "averageApexExecutionNano": 64885999,
+ "shortestApexExecutionNano": 8205622,
+ "longestApexExecutionNano": 121414120
+ },
+ {
+ "batchNumber": 6127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143576134,
+ "shortestRoundTripNano": 53512590,
+ "longestRoundTripNano": 166993083,
+ "averageApexExecutionNano": 56668023,
+ "shortestApexExecutionNano": 15808031,
+ "longestApexExecutionNano": 116475885
+ },
+ {
+ "batchNumber": 6128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148833150,
+ "shortestRoundTripNano": 59084721,
+ "longestRoundTripNano": 183997145,
+ "averageApexExecutionNano": 48452463,
+ "shortestApexExecutionNano": 7908924,
+ "longestApexExecutionNano": 122736620
+ },
+ {
+ "batchNumber": 6129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126428828,
+ "shortestRoundTripNano": 47607539,
+ "longestRoundTripNano": 156535891,
+ "averageApexExecutionNano": 54449257,
+ "shortestApexExecutionNano": 6096036,
+ "longestApexExecutionNano": 122989399
+ },
+ {
+ "batchNumber": 6130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141321293,
+ "shortestRoundTripNano": 77194132,
+ "longestRoundTripNano": 169419599,
+ "averageApexExecutionNano": 70954022,
+ "shortestApexExecutionNano": 7924354,
+ "longestApexExecutionNano": 138084755
+ },
+ {
+ "batchNumber": 6131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153917079,
+ "shortestRoundTripNano": 67413749,
+ "longestRoundTripNano": 177980886,
+ "averageApexExecutionNano": 58014469,
+ "shortestApexExecutionNano": 7297056,
+ "longestApexExecutionNano": 132770943
+ },
+ {
+ "batchNumber": 6132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145820453,
+ "shortestRoundTripNano": 60951877,
+ "longestRoundTripNano": 184506446,
+ "averageApexExecutionNano": 47346373,
+ "shortestApexExecutionNano": 7776727,
+ "longestApexExecutionNano": 106056643
+ },
+ {
+ "batchNumber": 6133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37070",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160084794,
+ "shortestRoundTripNano": 31664511,
+ "longestRoundTripNano": 194869262,
+ "averageApexExecutionNano": 59267700,
+ "shortestApexExecutionNano": 6218892,
+ "longestApexExecutionNano": 150609855
+ },
+ {
+ "batchNumber": 6134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124321987,
+ "shortestRoundTripNano": 49575121,
+ "longestRoundTripNano": 164829667,
+ "averageApexExecutionNano": 53668623,
+ "shortestApexExecutionNano": 9801654,
+ "longestApexExecutionNano": 137152847
+ },
+ {
+ "batchNumber": 6135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165472585,
+ "shortestRoundTripNano": 73239304,
+ "longestRoundTripNano": 198853626,
+ "averageApexExecutionNano": 57072209,
+ "shortestApexExecutionNano": 15636770,
+ "longestApexExecutionNano": 120391447
+ },
+ {
+ "batchNumber": 6136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 114804184,
+ "shortestRoundTripNano": 68339544,
+ "longestRoundTripNano": 146555536,
+ "averageApexExecutionNano": 59435002,
+ "shortestApexExecutionNano": 4569936,
+ "longestApexExecutionNano": 106651459
+ },
+ {
+ "batchNumber": 6137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133639648,
+ "shortestRoundTripNano": 72707456,
+ "longestRoundTripNano": 163808271,
+ "averageApexExecutionNano": 59329923,
+ "shortestApexExecutionNano": 9934748,
+ "longestApexExecutionNano": 107897540
+ },
+ {
+ "batchNumber": 6138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143901094,
+ "shortestRoundTripNano": 93477894,
+ "longestRoundTripNano": 170738723,
+ "averageApexExecutionNano": 50300332,
+ "shortestApexExecutionNano": 7401469,
+ "longestApexExecutionNano": 118006187
+ },
+ {
+ "batchNumber": 6139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141624839,
+ "shortestRoundTripNano": 63356200,
+ "longestRoundTripNano": 167744526,
+ "averageApexExecutionNano": 61925465,
+ "shortestApexExecutionNano": 10704852,
+ "longestApexExecutionNano": 117705491
+ },
+ {
+ "batchNumber": 6140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162296697,
+ "shortestRoundTripNano": 80934089,
+ "longestRoundTripNano": 187551735,
+ "averageApexExecutionNano": 68387436,
+ "shortestApexExecutionNano": 12673231,
+ "longestApexExecutionNano": 138592277
+ },
+ {
+ "batchNumber": 6141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160762784,
+ "shortestRoundTripNano": 71215219,
+ "longestRoundTripNano": 182004622,
+ "averageApexExecutionNano": 43207697,
+ "shortestApexExecutionNano": 6834684,
+ "longestApexExecutionNano": 99198173
+ },
+ {
+ "batchNumber": 6142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136801865,
+ "shortestRoundTripNano": 46113982,
+ "longestRoundTripNano": 167396958,
+ "averageApexExecutionNano": 67989081,
+ "shortestApexExecutionNano": 13324404,
+ "longestApexExecutionNano": 123008441
+ },
+ {
+ "batchNumber": 6143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148268959,
+ "shortestRoundTripNano": 62845789,
+ "longestRoundTripNano": 178724837,
+ "averageApexExecutionNano": 49410128,
+ "shortestApexExecutionNano": 9651991,
+ "longestApexExecutionNano": 96152286
+ },
+ {
+ "batchNumber": 6144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37074",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159672487,
+ "shortestRoundTripNano": 61616468,
+ "longestRoundTripNano": 192790020,
+ "averageApexExecutionNano": 62130353,
+ "shortestApexExecutionNano": 6259707,
+ "longestApexExecutionNano": 121574702
+ },
+ {
+ "batchNumber": 6145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135906205,
+ "shortestRoundTripNano": 68675689,
+ "longestRoundTripNano": 164408565,
+ "averageApexExecutionNano": 56884301,
+ "shortestApexExecutionNano": 9785326,
+ "longestApexExecutionNano": 101310228
+ },
+ {
+ "batchNumber": 6146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135969631,
+ "shortestRoundTripNano": 61000582,
+ "longestRoundTripNano": 160047285,
+ "averageApexExecutionNano": 60598083,
+ "shortestApexExecutionNano": 10229454,
+ "longestApexExecutionNano": 99127484
+ },
+ {
+ "batchNumber": 6147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148499314,
+ "shortestRoundTripNano": 75796131,
+ "longestRoundTripNano": 170653142,
+ "averageApexExecutionNano": 54364591,
+ "shortestApexExecutionNano": 7071287,
+ "longestApexExecutionNano": 131987862
+ },
+ {
+ "batchNumber": 6148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139282807,
+ "shortestRoundTripNano": 57020978,
+ "longestRoundTripNano": 166792222,
+ "averageApexExecutionNano": 58766799,
+ "shortestApexExecutionNano": 9138109,
+ "longestApexExecutionNano": 117887037
+ },
+ {
+ "batchNumber": 6149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37078",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 224614318,
+ "shortestRoundTripNano": 53876222,
+ "longestRoundTripNano": 258369682,
+ "averageApexExecutionNano": 109677749,
+ "shortestApexExecutionNano": 7879479,
+ "longestApexExecutionNano": 206135805
+ },
+ {
+ "batchNumber": 6150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37080",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150976016,
+ "shortestRoundTripNano": 41200204,
+ "longestRoundTripNano": 174974553,
+ "averageApexExecutionNano": 68805688,
+ "shortestApexExecutionNano": 9447186,
+ "longestApexExecutionNano": 126918114
+ },
+ {
+ "batchNumber": 6151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37080",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132284913,
+ "shortestRoundTripNano": 54973546,
+ "longestRoundTripNano": 164611598,
+ "averageApexExecutionNano": 49043946,
+ "shortestApexExecutionNano": 4819965,
+ "longestApexExecutionNano": 106478749
+ },
+ {
+ "batchNumber": 6152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37080",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135615855,
+ "shortestRoundTripNano": 67022875,
+ "longestRoundTripNano": 167693606,
+ "averageApexExecutionNano": 73549660,
+ "shortestApexExecutionNano": 23112220,
+ "longestApexExecutionNano": 127302860
+ },
+ {
+ "batchNumber": 6153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118934430,
+ "shortestRoundTripNano": 57836742,
+ "longestRoundTripNano": 153828957,
+ "averageApexExecutionNano": 52209298,
+ "shortestApexExecutionNano": 8041208,
+ "longestApexExecutionNano": 115360082
+ },
+ {
+ "batchNumber": 6154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143768514,
+ "shortestRoundTripNano": 55296598,
+ "longestRoundTripNano": 173715045,
+ "averageApexExecutionNano": 62201134,
+ "shortestApexExecutionNano": 8165763,
+ "longestApexExecutionNano": 136488015
+ },
+ {
+ "batchNumber": 6155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37082",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152942178,
+ "shortestRoundTripNano": 61572230,
+ "longestRoundTripNano": 182753643,
+ "averageApexExecutionNano": 66717791,
+ "shortestApexExecutionNano": 6661124,
+ "longestApexExecutionNano": 126029224
+ },
+ {
+ "batchNumber": 6156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139569611,
+ "shortestRoundTripNano": 63700901,
+ "longestRoundTripNano": 165133243,
+ "averageApexExecutionNano": 43058834,
+ "shortestApexExecutionNano": 6895341,
+ "longestApexExecutionNano": 116988706
+ },
+ {
+ "batchNumber": 6157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147248455,
+ "shortestRoundTripNano": 84145224,
+ "longestRoundTripNano": 175532644,
+ "averageApexExecutionNano": 65479037,
+ "shortestApexExecutionNano": 9909581,
+ "longestApexExecutionNano": 117506910
+ },
+ {
+ "batchNumber": 6158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153015146,
+ "shortestRoundTripNano": 60091883,
+ "longestRoundTripNano": 187137885,
+ "averageApexExecutionNano": 49149635,
+ "shortestApexExecutionNano": 11733812,
+ "longestApexExecutionNano": 121001221
+ },
+ {
+ "batchNumber": 6159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159778586,
+ "shortestRoundTripNano": 54037788,
+ "longestRoundTripNano": 195019577,
+ "averageApexExecutionNano": 68717355,
+ "shortestApexExecutionNano": 10598241,
+ "longestApexExecutionNano": 147851414
+ },
+ {
+ "batchNumber": 6160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134459300,
+ "shortestRoundTripNano": 38082207,
+ "longestRoundTripNano": 164195138,
+ "averageApexExecutionNano": 60145810,
+ "shortestApexExecutionNano": 6940201,
+ "longestApexExecutionNano": 111292536
+ },
+ {
+ "batchNumber": 6161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137109113,
+ "shortestRoundTripNano": 63118588,
+ "longestRoundTripNano": 165859055,
+ "averageApexExecutionNano": 45769651,
+ "shortestApexExecutionNano": 8787771,
+ "longestApexExecutionNano": 105158956
+ },
+ {
+ "batchNumber": 6162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145399016,
+ "shortestRoundTripNano": 43378712,
+ "longestRoundTripNano": 175683123,
+ "averageApexExecutionNano": 51744812,
+ "shortestApexExecutionNano": 6398251,
+ "longestApexExecutionNano": 128430248
+ },
+ {
+ "batchNumber": 6163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 208530113,
+ "shortestRoundTripNano": 119632246,
+ "longestRoundTripNano": 239313301,
+ "averageApexExecutionNano": 80944596,
+ "shortestApexExecutionNano": 11545550,
+ "longestApexExecutionNano": 138638481
+ },
+ {
+ "batchNumber": 6164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145707923,
+ "shortestRoundTripNano": 61601388,
+ "longestRoundTripNano": 179823552,
+ "averageApexExecutionNano": 53442107,
+ "shortestApexExecutionNano": 6122606,
+ "longestApexExecutionNano": 126377808
+ },
+ {
+ "batchNumber": 6165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138601945,
+ "shortestRoundTripNano": 65417171,
+ "longestRoundTripNano": 169139657,
+ "averageApexExecutionNano": 59871336,
+ "shortestApexExecutionNano": 7290899,
+ "longestApexExecutionNano": 101381505
+ },
+ {
+ "batchNumber": 6166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137174736,
+ "shortestRoundTripNano": 67946900,
+ "longestRoundTripNano": 171180053,
+ "averageApexExecutionNano": 67379716,
+ "shortestApexExecutionNano": 19125588,
+ "longestApexExecutionNano": 124575088
+ },
+ {
+ "batchNumber": 6167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37084",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149732692,
+ "shortestRoundTripNano": 60341357,
+ "longestRoundTripNano": 177680568,
+ "averageApexExecutionNano": 51089108,
+ "shortestApexExecutionNano": 5293470,
+ "longestApexExecutionNano": 97205660
+ },
+ {
+ "batchNumber": 6168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146994630,
+ "shortestRoundTripNano": 78793370,
+ "longestRoundTripNano": 172190524,
+ "averageApexExecutionNano": 63864838,
+ "shortestApexExecutionNano": 11917063,
+ "longestApexExecutionNano": 133507973
+ },
+ {
+ "batchNumber": 6169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147844274,
+ "shortestRoundTripNano": 50148314,
+ "longestRoundTripNano": 177580664,
+ "averageApexExecutionNano": 65542059,
+ "shortestApexExecutionNano": 21795185,
+ "longestApexExecutionNano": 118417738
+ },
+ {
+ "batchNumber": 6170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155152304,
+ "shortestRoundTripNano": 61997382,
+ "longestRoundTripNano": 186686914,
+ "averageApexExecutionNano": 44096777,
+ "shortestApexExecutionNano": 5101453,
+ "longestApexExecutionNano": 126468578
+ },
+ {
+ "batchNumber": 6171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141016035,
+ "shortestRoundTripNano": 46298028,
+ "longestRoundTripNano": 174119820,
+ "averageApexExecutionNano": 56669631,
+ "shortestApexExecutionNano": 8608381,
+ "longestApexExecutionNano": 109413932
+ },
+ {
+ "batchNumber": 6172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157867977,
+ "shortestRoundTripNano": 75148387,
+ "longestRoundTripNano": 186378923,
+ "averageApexExecutionNano": 78731023,
+ "shortestApexExecutionNano": 16915673,
+ "longestApexExecutionNano": 130747107
+ },
+ {
+ "batchNumber": 6173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157888828,
+ "shortestRoundTripNano": 67008695,
+ "longestRoundTripNano": 196277204,
+ "averageApexExecutionNano": 63583372,
+ "shortestApexExecutionNano": 7263205,
+ "longestApexExecutionNano": 162283760
+ },
+ {
+ "batchNumber": 6174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140910490,
+ "shortestRoundTripNano": 75938183,
+ "longestRoundTripNano": 166418223,
+ "averageApexExecutionNano": 61323661,
+ "shortestApexExecutionNano": 14218621,
+ "longestApexExecutionNano": 113745936
+ },
+ {
+ "batchNumber": 6175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154646728,
+ "shortestRoundTripNano": 68195195,
+ "longestRoundTripNano": 175608280,
+ "averageApexExecutionNano": 68560953,
+ "shortestApexExecutionNano": 15723181,
+ "longestApexExecutionNano": 113059255
+ },
+ {
+ "batchNumber": 6176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149690838,
+ "shortestRoundTripNano": 73979169,
+ "longestRoundTripNano": 183965274,
+ "averageApexExecutionNano": 73437054,
+ "shortestApexExecutionNano": 12911535,
+ "longestApexExecutionNano": 127573617
+ },
+ {
+ "batchNumber": 6177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142534525,
+ "shortestRoundTripNano": 68375123,
+ "longestRoundTripNano": 172448025,
+ "averageApexExecutionNano": 57680738,
+ "shortestApexExecutionNano": 7820823,
+ "longestApexExecutionNano": 116833675
+ },
+ {
+ "batchNumber": 6178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37086",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177126490,
+ "shortestRoundTripNano": 56992217,
+ "longestRoundTripNano": 213386539,
+ "averageApexExecutionNano": 73068732,
+ "shortestApexExecutionNano": 7691802,
+ "longestApexExecutionNano": 148561487
+ },
+ {
+ "batchNumber": 6179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146459730,
+ "shortestRoundTripNano": 75222593,
+ "longestRoundTripNano": 175567432,
+ "averageApexExecutionNano": 62025843,
+ "shortestApexExecutionNano": 6672923,
+ "longestApexExecutionNano": 125467780
+ },
+ {
+ "batchNumber": 6180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135873920,
+ "shortestRoundTripNano": 59499706,
+ "longestRoundTripNano": 165850415,
+ "averageApexExecutionNano": 67751976,
+ "shortestApexExecutionNano": 9328703,
+ "longestApexExecutionNano": 117410569
+ },
+ {
+ "batchNumber": 6181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133403431,
+ "shortestRoundTripNano": 64408347,
+ "longestRoundTripNano": 161137873,
+ "averageApexExecutionNano": 52776960,
+ "shortestApexExecutionNano": 9529199,
+ "longestApexExecutionNano": 107102714
+ },
+ {
+ "batchNumber": 6182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148752227,
+ "shortestRoundTripNano": 70322909,
+ "longestRoundTripNano": 178402871,
+ "averageApexExecutionNano": 72741173,
+ "shortestApexExecutionNano": 8108964,
+ "longestApexExecutionNano": 125476145
+ },
+ {
+ "batchNumber": 6183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135406490,
+ "shortestRoundTripNano": 54962310,
+ "longestRoundTripNano": 169033640,
+ "averageApexExecutionNano": 56012495,
+ "shortestApexExecutionNano": 10829437,
+ "longestApexExecutionNano": 109942260
+ },
+ {
+ "batchNumber": 6184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130565636,
+ "shortestRoundTripNano": 44516786,
+ "longestRoundTripNano": 156451576,
+ "averageApexExecutionNano": 57841734,
+ "shortestApexExecutionNano": 6004678,
+ "longestApexExecutionNano": 111271731
+ },
+ {
+ "batchNumber": 6185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131597204,
+ "shortestRoundTripNano": 55812330,
+ "longestRoundTripNano": 166030290,
+ "averageApexExecutionNano": 58582602,
+ "shortestApexExecutionNano": 6851365,
+ "longestApexExecutionNano": 125252093
+ },
+ {
+ "batchNumber": 6186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128976254,
+ "shortestRoundTripNano": 63913288,
+ "longestRoundTripNano": 158393704,
+ "averageApexExecutionNano": 59535413,
+ "shortestApexExecutionNano": 9970441,
+ "longestApexExecutionNano": 127089439
+ },
+ {
+ "batchNumber": 6187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162053860,
+ "shortestRoundTripNano": 55588361,
+ "longestRoundTripNano": 192839165,
+ "averageApexExecutionNano": 71095666,
+ "shortestApexExecutionNano": 18814355,
+ "longestApexExecutionNano": 139620523
+ },
+ {
+ "batchNumber": 6188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178725532,
+ "shortestRoundTripNano": 95858718,
+ "longestRoundTripNano": 203616011,
+ "averageApexExecutionNano": 62755495,
+ "shortestApexExecutionNano": 16045985,
+ "longestApexExecutionNano": 144626996
+ },
+ {
+ "batchNumber": 6189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171134558,
+ "shortestRoundTripNano": 64448559,
+ "longestRoundTripNano": 203543979,
+ "averageApexExecutionNano": 69148343,
+ "shortestApexExecutionNano": 9285770,
+ "longestApexExecutionNano": 130190251
+ },
+ {
+ "batchNumber": 6190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37096",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168490928,
+ "shortestRoundTripNano": 59228802,
+ "longestRoundTripNano": 210696805,
+ "averageApexExecutionNano": 62820548,
+ "shortestApexExecutionNano": 10012134,
+ "longestApexExecutionNano": 128599087
+ },
+ {
+ "batchNumber": 6191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143792477,
+ "shortestRoundTripNano": 62536145,
+ "longestRoundTripNano": 177201753,
+ "averageApexExecutionNano": 58954581,
+ "shortestApexExecutionNano": 5654897,
+ "longestApexExecutionNano": 130081162
+ },
+ {
+ "batchNumber": 6192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140788070,
+ "shortestRoundTripNano": 58334191,
+ "longestRoundTripNano": 179485339,
+ "averageApexExecutionNano": 51712473,
+ "shortestApexExecutionNano": 7317591,
+ "longestApexExecutionNano": 115766915
+ },
+ {
+ "batchNumber": 6193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142759215,
+ "shortestRoundTripNano": 62463374,
+ "longestRoundTripNano": 175549582,
+ "averageApexExecutionNano": 59063270,
+ "shortestApexExecutionNano": 5757721,
+ "longestApexExecutionNano": 143088712
+ },
+ {
+ "batchNumber": 6194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141511471,
+ "shortestRoundTripNano": 68098951,
+ "longestRoundTripNano": 169652306,
+ "averageApexExecutionNano": 54306471,
+ "shortestApexExecutionNano": 6532655,
+ "longestApexExecutionNano": 131020011
+ },
+ {
+ "batchNumber": 6195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162302227,
+ "shortestRoundTripNano": 70950803,
+ "longestRoundTripNano": 189386698,
+ "averageApexExecutionNano": 59630731,
+ "shortestApexExecutionNano": 6446512,
+ "longestApexExecutionNano": 130684793
+ },
+ {
+ "batchNumber": 6196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149947157,
+ "shortestRoundTripNano": 66264381,
+ "longestRoundTripNano": 173663335,
+ "averageApexExecutionNano": 59941543,
+ "shortestApexExecutionNano": 9895878,
+ "longestApexExecutionNano": 119652274
+ },
+ {
+ "batchNumber": 6197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160279619,
+ "shortestRoundTripNano": 85278405,
+ "longestRoundTripNano": 183296696,
+ "averageApexExecutionNano": 56600805,
+ "shortestApexExecutionNano": 5563387,
+ "longestApexExecutionNano": 136862737
+ },
+ {
+ "batchNumber": 6198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136544436,
+ "shortestRoundTripNano": 49657367,
+ "longestRoundTripNano": 176848585,
+ "averageApexExecutionNano": 41740345,
+ "shortestApexExecutionNano": 8671863,
+ "longestApexExecutionNano": 89319882
+ },
+ {
+ "batchNumber": 6199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37092",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150794419,
+ "shortestRoundTripNano": 41250674,
+ "longestRoundTripNano": 183967566,
+ "averageApexExecutionNano": 54011590,
+ "shortestApexExecutionNano": 7168633,
+ "longestApexExecutionNano": 128700354
+ },
+ {
+ "batchNumber": 6200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133324888,
+ "shortestRoundTripNano": 53839105,
+ "longestRoundTripNano": 159077216,
+ "averageApexExecutionNano": 51471376,
+ "shortestApexExecutionNano": 7543300,
+ "longestApexExecutionNano": 116224614
+ },
+ {
+ "batchNumber": 6201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135557596,
+ "shortestRoundTripNano": 50068261,
+ "longestRoundTripNano": 165033159,
+ "averageApexExecutionNano": 48154160,
+ "shortestApexExecutionNano": 6830717,
+ "longestApexExecutionNano": 126641409
+ },
+ {
+ "batchNumber": 6202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140892284,
+ "shortestRoundTripNano": 55682407,
+ "longestRoundTripNano": 168063459,
+ "averageApexExecutionNano": 57599602,
+ "shortestApexExecutionNano": 6194062,
+ "longestApexExecutionNano": 130557269
+ },
+ {
+ "batchNumber": 6203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140638980,
+ "shortestRoundTripNano": 62581253,
+ "longestRoundTripNano": 170385207,
+ "averageApexExecutionNano": 38967824,
+ "shortestApexExecutionNano": 5878022,
+ "longestApexExecutionNano": 124978648
+ },
+ {
+ "batchNumber": 6204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147816014,
+ "shortestRoundTripNano": 57136283,
+ "longestRoundTripNano": 179954005,
+ "averageApexExecutionNano": 56609881,
+ "shortestApexExecutionNano": 7972864,
+ "longestApexExecutionNano": 126031788
+ },
+ {
+ "batchNumber": 6205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117144811,
+ "shortestRoundTripNano": 43149796,
+ "longestRoundTripNano": 149832482,
+ "averageApexExecutionNano": 45992164,
+ "shortestApexExecutionNano": 5405285,
+ "longestApexExecutionNano": 107689795
+ },
+ {
+ "batchNumber": 6206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124338811,
+ "shortestRoundTripNano": 63408306,
+ "longestRoundTripNano": 162859078,
+ "averageApexExecutionNano": 59528431,
+ "shortestApexExecutionNano": 5170714,
+ "longestApexExecutionNano": 120332962
+ },
+ {
+ "batchNumber": 6207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141481896,
+ "shortestRoundTripNano": 80672684,
+ "longestRoundTripNano": 168350081,
+ "averageApexExecutionNano": 68260993,
+ "shortestApexExecutionNano": 9889833,
+ "longestApexExecutionNano": 114109572
+ },
+ {
+ "batchNumber": 6208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134924588,
+ "shortestRoundTripNano": 60821153,
+ "longestRoundTripNano": 172279994,
+ "averageApexExecutionNano": 62646586,
+ "shortestApexExecutionNano": 9565608,
+ "longestApexExecutionNano": 110842406
+ },
+ {
+ "batchNumber": 6209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152116663,
+ "shortestRoundTripNano": 35236635,
+ "longestRoundTripNano": 179748420,
+ "averageApexExecutionNano": 61136589,
+ "shortestApexExecutionNano": 10404285,
+ "longestApexExecutionNano": 115793960
+ },
+ {
+ "batchNumber": 6210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137128204,
+ "shortestRoundTripNano": 35701141,
+ "longestRoundTripNano": 163891511,
+ "averageApexExecutionNano": 55334760,
+ "shortestApexExecutionNano": 11652595,
+ "longestApexExecutionNano": 108693084
+ },
+ {
+ "batchNumber": 6211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158223344,
+ "shortestRoundTripNano": 96647187,
+ "longestRoundTripNano": 184080807,
+ "averageApexExecutionNano": 66747921,
+ "shortestApexExecutionNano": 11838852,
+ "longestApexExecutionNano": 133394064
+ },
+ {
+ "batchNumber": 6212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147388803,
+ "shortestRoundTripNano": 68021240,
+ "longestRoundTripNano": 177129817,
+ "averageApexExecutionNano": 45194467,
+ "shortestApexExecutionNano": 8422909,
+ "longestApexExecutionNano": 117842402
+ },
+ {
+ "batchNumber": 6213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120933364,
+ "shortestRoundTripNano": 65690544,
+ "longestRoundTripNano": 149875152,
+ "averageApexExecutionNano": 48813137,
+ "shortestApexExecutionNano": 6528521,
+ "longestApexExecutionNano": 102802587
+ },
+ {
+ "batchNumber": 6214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127425712,
+ "shortestRoundTripNano": 57188611,
+ "longestRoundTripNano": 157818848,
+ "averageApexExecutionNano": 56383918,
+ "shortestApexExecutionNano": 7358608,
+ "longestApexExecutionNano": 102343250
+ },
+ {
+ "batchNumber": 6215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138531400,
+ "shortestRoundTripNano": 95812915,
+ "longestRoundTripNano": 164012145,
+ "averageApexExecutionNano": 52087826,
+ "shortestApexExecutionNano": 6921383,
+ "longestApexExecutionNano": 111988293
+ },
+ {
+ "batchNumber": 6216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127418397,
+ "shortestRoundTripNano": 45847170,
+ "longestRoundTripNano": 165739355,
+ "averageApexExecutionNano": 52075192,
+ "shortestApexExecutionNano": 6081856,
+ "longestApexExecutionNano": 120436453
+ },
+ {
+ "batchNumber": 6217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140917542,
+ "shortestRoundTripNano": 65644457,
+ "longestRoundTripNano": 166765807,
+ "averageApexExecutionNano": 64228481,
+ "shortestApexExecutionNano": 8423541,
+ "longestApexExecutionNano": 125229015
+ },
+ {
+ "batchNumber": 6218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132277666,
+ "shortestRoundTripNano": 54629101,
+ "longestRoundTripNano": 170840396,
+ "averageApexExecutionNano": 54205313,
+ "shortestApexExecutionNano": 8721678,
+ "longestApexExecutionNano": 132722792
+ },
+ {
+ "batchNumber": 6219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127188080,
+ "shortestRoundTripNano": 43593393,
+ "longestRoundTripNano": 155637775,
+ "averageApexExecutionNano": 55754606,
+ "shortestApexExecutionNano": 9459272,
+ "longestApexExecutionNano": 102487844
+ },
+ {
+ "batchNumber": 6220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37100",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143898497,
+ "shortestRoundTripNano": 64461528,
+ "longestRoundTripNano": 173407024,
+ "averageApexExecutionNano": 64667890,
+ "shortestApexExecutionNano": 9536161,
+ "longestApexExecutionNano": 125487803
+ },
+ {
+ "batchNumber": 6221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130029814,
+ "shortestRoundTripNano": 58922283,
+ "longestRoundTripNano": 154878975,
+ "averageApexExecutionNano": 53878207,
+ "shortestApexExecutionNano": 11102243,
+ "longestApexExecutionNano": 108894639
+ },
+ {
+ "batchNumber": 6222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171470090,
+ "shortestRoundTripNano": 67889152,
+ "longestRoundTripNano": 202427154,
+ "averageApexExecutionNano": 74617743,
+ "shortestApexExecutionNano": 12859922,
+ "longestApexExecutionNano": 131185743
+ },
+ {
+ "batchNumber": 6223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144275406,
+ "shortestRoundTripNano": 70276118,
+ "longestRoundTripNano": 182696397,
+ "averageApexExecutionNano": 46784341,
+ "shortestApexExecutionNano": 8861764,
+ "longestApexExecutionNano": 99807604
+ },
+ {
+ "batchNumber": 6224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37108",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143063694,
+ "shortestRoundTripNano": 51568748,
+ "longestRoundTripNano": 183684418,
+ "averageApexExecutionNano": 66282953,
+ "shortestApexExecutionNano": 7150059,
+ "longestApexExecutionNano": 144435220
+ },
+ {
+ "batchNumber": 6225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147492315,
+ "shortestRoundTripNano": 43010569,
+ "longestRoundTripNano": 177496869,
+ "averageApexExecutionNano": 54810748,
+ "shortestApexExecutionNano": 9924718,
+ "longestApexExecutionNano": 133165668
+ },
+ {
+ "batchNumber": 6226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142923108,
+ "shortestRoundTripNano": 52045999,
+ "longestRoundTripNano": 170038238,
+ "averageApexExecutionNano": 41836760,
+ "shortestApexExecutionNano": 5684972,
+ "longestApexExecutionNano": 103947582
+ },
+ {
+ "batchNumber": 6227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158213398,
+ "shortestRoundTripNano": 68482505,
+ "longestRoundTripNano": 191170930,
+ "averageApexExecutionNano": 78658512,
+ "shortestApexExecutionNano": 13115358,
+ "longestApexExecutionNano": 144705865
+ },
+ {
+ "batchNumber": 6228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148534848,
+ "shortestRoundTripNano": 66153529,
+ "longestRoundTripNano": 181757832,
+ "averageApexExecutionNano": 62113888,
+ "shortestApexExecutionNano": 9164375,
+ "longestApexExecutionNano": 130749653
+ },
+ {
+ "batchNumber": 6229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152298886,
+ "shortestRoundTripNano": 85140366,
+ "longestRoundTripNano": 199311269,
+ "averageApexExecutionNano": 64291826,
+ "shortestApexExecutionNano": 9757855,
+ "longestApexExecutionNano": 135845479
+ },
+ {
+ "batchNumber": 6230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152323418,
+ "shortestRoundTripNano": 87379890,
+ "longestRoundTripNano": 176312847,
+ "averageApexExecutionNano": 69445222,
+ "shortestApexExecutionNano": 12387249,
+ "longestApexExecutionNano": 125302054
+ },
+ {
+ "batchNumber": 6231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142538881,
+ "shortestRoundTripNano": 59550072,
+ "longestRoundTripNano": 178841816,
+ "averageApexExecutionNano": 51630339,
+ "shortestApexExecutionNano": 7229735,
+ "longestApexExecutionNano": 122207065
+ },
+ {
+ "batchNumber": 6232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142242650,
+ "shortestRoundTripNano": 76716476,
+ "longestRoundTripNano": 166686573,
+ "averageApexExecutionNano": 65245444,
+ "shortestApexExecutionNano": 13539185,
+ "longestApexExecutionNano": 123707661
+ },
+ {
+ "batchNumber": 6233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133318882,
+ "shortestRoundTripNano": 62260963,
+ "longestRoundTripNano": 163814702,
+ "averageApexExecutionNano": 53852052,
+ "shortestApexExecutionNano": 14902071,
+ "longestApexExecutionNano": 105776412
+ },
+ {
+ "batchNumber": 6234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141929181,
+ "shortestRoundTripNano": 66064949,
+ "longestRoundTripNano": 171507413,
+ "averageApexExecutionNano": 49387267,
+ "shortestApexExecutionNano": 8339163,
+ "longestApexExecutionNano": 117028512
+ },
+ {
+ "batchNumber": 6235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135572359,
+ "shortestRoundTripNano": 66086020,
+ "longestRoundTripNano": 161031674,
+ "averageApexExecutionNano": 56842304,
+ "shortestApexExecutionNano": 14964792,
+ "longestApexExecutionNano": 124153245
+ },
+ {
+ "batchNumber": 6236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165800078,
+ "shortestRoundTripNano": 58724577,
+ "longestRoundTripNano": 194001038,
+ "averageApexExecutionNano": 73477794,
+ "shortestApexExecutionNano": 15532476,
+ "longestApexExecutionNano": 157214351
+ },
+ {
+ "batchNumber": 6237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143470899,
+ "shortestRoundTripNano": 76837455,
+ "longestRoundTripNano": 169089893,
+ "averageApexExecutionNano": 64439138,
+ "shortestApexExecutionNano": 13775138,
+ "longestApexExecutionNano": 122256197
+ },
+ {
+ "batchNumber": 6238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147841027,
+ "shortestRoundTripNano": 62124376,
+ "longestRoundTripNano": 190174930,
+ "averageApexExecutionNano": 55151300,
+ "shortestApexExecutionNano": 8861268,
+ "longestApexExecutionNano": 120016430
+ },
+ {
+ "batchNumber": 6239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156728752,
+ "shortestRoundTripNano": 63620466,
+ "longestRoundTripNano": 211176254,
+ "averageApexExecutionNano": 79518433,
+ "shortestApexExecutionNano": 7287135,
+ "longestApexExecutionNano": 138944255
+ },
+ {
+ "batchNumber": 6240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137677740,
+ "shortestRoundTripNano": 70469019,
+ "longestRoundTripNano": 165947524,
+ "averageApexExecutionNano": 59041896,
+ "shortestApexExecutionNano": 7509582,
+ "longestApexExecutionNano": 123694596
+ },
+ {
+ "batchNumber": 6241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37116",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153107226,
+ "shortestRoundTripNano": 59723075,
+ "longestRoundTripNano": 180894056,
+ "averageApexExecutionNano": 60653861,
+ "shortestApexExecutionNano": 6664084,
+ "longestApexExecutionNano": 103273724
+ },
+ {
+ "batchNumber": 6242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171521520,
+ "shortestRoundTripNano": 87080922,
+ "longestRoundTripNano": 192155116,
+ "averageApexExecutionNano": 79560584,
+ "shortestApexExecutionNano": 7383934,
+ "longestApexExecutionNano": 147397218
+ },
+ {
+ "batchNumber": 6243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153535887,
+ "shortestRoundTripNano": 58929716,
+ "longestRoundTripNano": 198658554,
+ "averageApexExecutionNano": 65345763,
+ "shortestApexExecutionNano": 8376768,
+ "longestApexExecutionNano": 132362648
+ },
+ {
+ "batchNumber": 6244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151792356,
+ "shortestRoundTripNano": 79494985,
+ "longestRoundTripNano": 182174962,
+ "averageApexExecutionNano": 83412786,
+ "shortestApexExecutionNano": 6606556,
+ "longestApexExecutionNano": 131378091
+ },
+ {
+ "batchNumber": 6245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37110",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 236971299,
+ "shortestRoundTripNano": 37285844,
+ "longestRoundTripNano": 275102299,
+ "averageApexExecutionNano": 117713319,
+ "shortestApexExecutionNano": 9886883,
+ "longestApexExecutionNano": 238089754
+ },
+ {
+ "batchNumber": 6246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143931521,
+ "shortestRoundTripNano": 51864596,
+ "longestRoundTripNano": 173856388,
+ "averageApexExecutionNano": 56131130,
+ "shortestApexExecutionNano": 7388864,
+ "longestApexExecutionNano": 138634865
+ },
+ {
+ "batchNumber": 6247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37118",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157448090,
+ "shortestRoundTripNano": 65550617,
+ "longestRoundTripNano": 184963711,
+ "averageApexExecutionNano": 64487635,
+ "shortestApexExecutionNano": 7072904,
+ "longestApexExecutionNano": 142159300
+ },
+ {
+ "batchNumber": 6248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128929625,
+ "shortestRoundTripNano": 41747251,
+ "longestRoundTripNano": 177292380,
+ "averageApexExecutionNano": 43670683,
+ "shortestApexExecutionNano": 5425836,
+ "longestApexExecutionNano": 110643175
+ },
+ {
+ "batchNumber": 6249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132298954,
+ "shortestRoundTripNano": 66357939,
+ "longestRoundTripNano": 160128105,
+ "averageApexExecutionNano": 65179647,
+ "shortestApexExecutionNano": 8886165,
+ "longestApexExecutionNano": 121799013
+ },
+ {
+ "batchNumber": 6250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141466473,
+ "shortestRoundTripNano": 55070116,
+ "longestRoundTripNano": 166770667,
+ "averageApexExecutionNano": 51368500,
+ "shortestApexExecutionNano": 9543659,
+ "longestApexExecutionNano": 104567600
+ },
+ {
+ "batchNumber": 6251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164728212,
+ "shortestRoundTripNano": 95597487,
+ "longestRoundTripNano": 194094444,
+ "averageApexExecutionNano": 71943925,
+ "shortestApexExecutionNano": 13026491,
+ "longestApexExecutionNano": 142623831
+ },
+ {
+ "batchNumber": 6252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129043727,
+ "shortestRoundTripNano": 58197750,
+ "longestRoundTripNano": 152942718,
+ "averageApexExecutionNano": 64581218,
+ "shortestApexExecutionNano": 13092135,
+ "longestApexExecutionNano": 111392277
+ },
+ {
+ "batchNumber": 6253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147806936,
+ "shortestRoundTripNano": 61023036,
+ "longestRoundTripNano": 183296339,
+ "averageApexExecutionNano": 60116096,
+ "shortestApexExecutionNano": 8363051,
+ "longestApexExecutionNano": 122298385
+ },
+ {
+ "batchNumber": 6254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149156417,
+ "shortestRoundTripNano": 71009961,
+ "longestRoundTripNano": 182186262,
+ "averageApexExecutionNano": 65647044,
+ "shortestApexExecutionNano": 7824902,
+ "longestApexExecutionNano": 113789537
+ },
+ {
+ "batchNumber": 6255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156766031,
+ "shortestRoundTripNano": 50397893,
+ "longestRoundTripNano": 191073458,
+ "averageApexExecutionNano": 63082289,
+ "shortestApexExecutionNano": 9450662,
+ "longestApexExecutionNano": 125597055
+ },
+ {
+ "batchNumber": 6256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145940555,
+ "shortestRoundTripNano": 63365352,
+ "longestRoundTripNano": 174459773,
+ "averageApexExecutionNano": 50405344,
+ "shortestApexExecutionNano": 7228363,
+ "longestApexExecutionNano": 135772129
+ },
+ {
+ "batchNumber": 6257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143868745,
+ "shortestRoundTripNano": 64314857,
+ "longestRoundTripNano": 177059077,
+ "averageApexExecutionNano": 59498756,
+ "shortestApexExecutionNano": 6849026,
+ "longestApexExecutionNano": 129491607
+ },
+ {
+ "batchNumber": 6258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37120",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152435088,
+ "shortestRoundTripNano": 65363372,
+ "longestRoundTripNano": 182850611,
+ "averageApexExecutionNano": 81197575,
+ "shortestApexExecutionNano": 11729580,
+ "longestApexExecutionNano": 145581106
+ },
+ {
+ "batchNumber": 6259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134624320,
+ "shortestRoundTripNano": 51985096,
+ "longestRoundTripNano": 165852739,
+ "averageApexExecutionNano": 53622166,
+ "shortestApexExecutionNano": 13957199,
+ "longestApexExecutionNano": 112726743
+ },
+ {
+ "batchNumber": 6260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155901106,
+ "shortestRoundTripNano": 70052906,
+ "longestRoundTripNano": 196041455,
+ "averageApexExecutionNano": 52423761,
+ "shortestApexExecutionNano": 7148435,
+ "longestApexExecutionNano": 124282036
+ },
+ {
+ "batchNumber": 6261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151801004,
+ "shortestRoundTripNano": 79418980,
+ "longestRoundTripNano": 176577681,
+ "averageApexExecutionNano": 64006903,
+ "shortestApexExecutionNano": 11524246,
+ "longestApexExecutionNano": 126723650
+ },
+ {
+ "batchNumber": 6262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138599450,
+ "shortestRoundTripNano": 73759982,
+ "longestRoundTripNano": 163790200,
+ "averageApexExecutionNano": 54169207,
+ "shortestApexExecutionNano": 5299445,
+ "longestApexExecutionNano": 127246131
+ },
+ {
+ "batchNumber": 6263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37124",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148503832,
+ "shortestRoundTripNano": 61027373,
+ "longestRoundTripNano": 177643695,
+ "averageApexExecutionNano": 75340873,
+ "shortestApexExecutionNano": 20531647,
+ "longestApexExecutionNano": 119469176
+ },
+ {
+ "batchNumber": 6264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141059994,
+ "shortestRoundTripNano": 55270160,
+ "longestRoundTripNano": 177561202,
+ "averageApexExecutionNano": 72756985,
+ "shortestApexExecutionNano": 10892000,
+ "longestApexExecutionNano": 135300723
+ },
+ {
+ "batchNumber": 6265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167766389,
+ "shortestRoundTripNano": 87704363,
+ "longestRoundTripNano": 196390390,
+ "averageApexExecutionNano": 80964014,
+ "shortestApexExecutionNano": 9506512,
+ "longestApexExecutionNano": 137794211
+ },
+ {
+ "batchNumber": 6266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161153937,
+ "shortestRoundTripNano": 84474284,
+ "longestRoundTripNano": 187019587,
+ "averageApexExecutionNano": 61518698,
+ "shortestApexExecutionNano": 10925206,
+ "longestApexExecutionNano": 128240472
+ },
+ {
+ "batchNumber": 6267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161548727,
+ "shortestRoundTripNano": 69440314,
+ "longestRoundTripNano": 187889507,
+ "averageApexExecutionNano": 60131933,
+ "shortestApexExecutionNano": 10706680,
+ "longestApexExecutionNano": 135361724
+ },
+ {
+ "batchNumber": 6268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167987281,
+ "shortestRoundTripNano": 83830733,
+ "longestRoundTripNano": 195631876,
+ "averageApexExecutionNano": 75541880,
+ "shortestApexExecutionNano": 9207326,
+ "longestApexExecutionNano": 163567119
+ },
+ {
+ "batchNumber": 6269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139006086,
+ "shortestRoundTripNano": 72532676,
+ "longestRoundTripNano": 165290318,
+ "averageApexExecutionNano": 70507404,
+ "shortestApexExecutionNano": 16632247,
+ "longestApexExecutionNano": 123526363
+ },
+ {
+ "batchNumber": 6270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144474225,
+ "shortestRoundTripNano": 73873580,
+ "longestRoundTripNano": 179049012,
+ "averageApexExecutionNano": 62678402,
+ "shortestApexExecutionNano": 5965365,
+ "longestApexExecutionNano": 136947961
+ },
+ {
+ "batchNumber": 6271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136972439,
+ "shortestRoundTripNano": 57633078,
+ "longestRoundTripNano": 174489753,
+ "averageApexExecutionNano": 54721341,
+ "shortestApexExecutionNano": 7976155,
+ "longestApexExecutionNano": 115647333
+ },
+ {
+ "batchNumber": 6272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135032594,
+ "shortestRoundTripNano": 33950423,
+ "longestRoundTripNano": 164498438,
+ "averageApexExecutionNano": 57778728,
+ "shortestApexExecutionNano": 9565911,
+ "longestApexExecutionNano": 119874762
+ },
+ {
+ "batchNumber": 6273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144264749,
+ "shortestRoundTripNano": 30875372,
+ "longestRoundTripNano": 179375957,
+ "averageApexExecutionNano": 55526249,
+ "shortestApexExecutionNano": 7805547,
+ "longestApexExecutionNano": 133282216
+ },
+ {
+ "batchNumber": 6274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134384414,
+ "shortestRoundTripNano": 56675668,
+ "longestRoundTripNano": 170029058,
+ "averageApexExecutionNano": 47683558,
+ "shortestApexExecutionNano": 6412832,
+ "longestApexExecutionNano": 112488489
+ },
+ {
+ "batchNumber": 6275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133184425,
+ "shortestRoundTripNano": 50763875,
+ "longestRoundTripNano": 167834812,
+ "averageApexExecutionNano": 53876687,
+ "shortestApexExecutionNano": 5747742,
+ "longestApexExecutionNano": 97529864
+ },
+ {
+ "batchNumber": 6276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159516918,
+ "shortestRoundTripNano": 96211533,
+ "longestRoundTripNano": 190288882,
+ "averageApexExecutionNano": 83376567,
+ "shortestApexExecutionNano": 14623125,
+ "longestApexExecutionNano": 147868942
+ },
+ {
+ "batchNumber": 6277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150940571,
+ "shortestRoundTripNano": 55714230,
+ "longestRoundTripNano": 185548057,
+ "averageApexExecutionNano": 46635082,
+ "shortestApexExecutionNano": 6590521,
+ "longestApexExecutionNano": 132345102
+ },
+ {
+ "batchNumber": 6278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145136743,
+ "shortestRoundTripNano": 53948404,
+ "longestRoundTripNano": 175791922,
+ "averageApexExecutionNano": 74137488,
+ "shortestApexExecutionNano": 20788770,
+ "longestApexExecutionNano": 125193704
+ },
+ {
+ "batchNumber": 6279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138980173,
+ "shortestRoundTripNano": 67205516,
+ "longestRoundTripNano": 170788205,
+ "averageApexExecutionNano": 56521365,
+ "shortestApexExecutionNano": 10237428,
+ "longestApexExecutionNano": 115944269
+ },
+ {
+ "batchNumber": 6280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167397337,
+ "shortestRoundTripNano": 47463454,
+ "longestRoundTripNano": 207352443,
+ "averageApexExecutionNano": 86844479,
+ "shortestApexExecutionNano": 26232650,
+ "longestApexExecutionNano": 150689099
+ },
+ {
+ "batchNumber": 6281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131791636,
+ "shortestRoundTripNano": 59269052,
+ "longestRoundTripNano": 166369101,
+ "averageApexExecutionNano": 54486845,
+ "shortestApexExecutionNano": 11678287,
+ "longestApexExecutionNano": 108815989
+ },
+ {
+ "batchNumber": 6282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146176955,
+ "shortestRoundTripNano": 32609483,
+ "longestRoundTripNano": 172581614,
+ "averageApexExecutionNano": 53177669,
+ "shortestApexExecutionNano": 8240175,
+ "longestApexExecutionNano": 98648790
+ },
+ {
+ "batchNumber": 6283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37126",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148400383,
+ "shortestRoundTripNano": 63387425,
+ "longestRoundTripNano": 176813725,
+ "averageApexExecutionNano": 63445249,
+ "shortestApexExecutionNano": 8855261,
+ "longestApexExecutionNano": 136550167
+ },
+ {
+ "batchNumber": 6284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139154549,
+ "shortestRoundTripNano": 60611342,
+ "longestRoundTripNano": 170053394,
+ "averageApexExecutionNano": 58602896,
+ "shortestApexExecutionNano": 7979298,
+ "longestApexExecutionNano": 122324025
+ },
+ {
+ "batchNumber": 6285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158066451,
+ "shortestRoundTripNano": 52673396,
+ "longestRoundTripNano": 191144462,
+ "averageApexExecutionNano": 69462257,
+ "shortestApexExecutionNano": 11714864,
+ "longestApexExecutionNano": 140429717
+ },
+ {
+ "batchNumber": 6286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122076754,
+ "shortestRoundTripNano": 40349808,
+ "longestRoundTripNano": 145202694,
+ "averageApexExecutionNano": 50640837,
+ "shortestApexExecutionNano": 7546185,
+ "longestApexExecutionNano": 97647458
+ },
+ {
+ "batchNumber": 6287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167833040,
+ "shortestRoundTripNano": 63578634,
+ "longestRoundTripNano": 204070533,
+ "averageApexExecutionNano": 71261284,
+ "shortestApexExecutionNano": 9207952,
+ "longestApexExecutionNano": 166679260
+ },
+ {
+ "batchNumber": 6288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184532977,
+ "shortestRoundTripNano": 99593974,
+ "longestRoundTripNano": 210650817,
+ "averageApexExecutionNano": 62554346,
+ "shortestApexExecutionNano": 8399766,
+ "longestApexExecutionNano": 157665463
+ },
+ {
+ "batchNumber": 6289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148326450,
+ "shortestRoundTripNano": 72409902,
+ "longestRoundTripNano": 173845319,
+ "averageApexExecutionNano": 59352799,
+ "shortestApexExecutionNano": 9810282,
+ "longestApexExecutionNano": 129186452
+ },
+ {
+ "batchNumber": 6290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154153679,
+ "shortestRoundTripNano": 79537992,
+ "longestRoundTripNano": 181531496,
+ "averageApexExecutionNano": 72003348,
+ "shortestApexExecutionNano": 12187978,
+ "longestApexExecutionNano": 127371085
+ },
+ {
+ "batchNumber": 6291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157502630,
+ "shortestRoundTripNano": 88630922,
+ "longestRoundTripNano": 184258508,
+ "averageApexExecutionNano": 74297822,
+ "shortestApexExecutionNano": 6482045,
+ "longestApexExecutionNano": 134283247
+ },
+ {
+ "batchNumber": 6292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134162155,
+ "shortestRoundTripNano": 45437450,
+ "longestRoundTripNano": 168896417,
+ "averageApexExecutionNano": 60128697,
+ "shortestApexExecutionNano": 7886038,
+ "longestApexExecutionNano": 108199662
+ },
+ {
+ "batchNumber": 6293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172749145,
+ "shortestRoundTripNano": 59143833,
+ "longestRoundTripNano": 207920297,
+ "averageApexExecutionNano": 82867841,
+ "shortestApexExecutionNano": 7728334,
+ "longestApexExecutionNano": 155249105
+ },
+ {
+ "batchNumber": 6294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126047951,
+ "shortestRoundTripNano": 59423120,
+ "longestRoundTripNano": 156661514,
+ "averageApexExecutionNano": 54168152,
+ "shortestApexExecutionNano": 6684647,
+ "longestApexExecutionNano": 120889549
+ },
+ {
+ "batchNumber": 6295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37134",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161407963,
+ "shortestRoundTripNano": 55952296,
+ "longestRoundTripNano": 190418373,
+ "averageApexExecutionNano": 59643133,
+ "shortestApexExecutionNano": 6199516,
+ "longestApexExecutionNano": 111598683
+ },
+ {
+ "batchNumber": 6296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131736231,
+ "shortestRoundTripNano": 59952408,
+ "longestRoundTripNano": 166141370,
+ "averageApexExecutionNano": 69494956,
+ "shortestApexExecutionNano": 10730558,
+ "longestApexExecutionNano": 122690273
+ },
+ {
+ "batchNumber": 6297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142514798,
+ "shortestRoundTripNano": 43709947,
+ "longestRoundTripNano": 175924246,
+ "averageApexExecutionNano": 57657247,
+ "shortestApexExecutionNano": 8792865,
+ "longestApexExecutionNano": 119335186
+ },
+ {
+ "batchNumber": 6298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138496144,
+ "shortestRoundTripNano": 53860016,
+ "longestRoundTripNano": 170373615,
+ "averageApexExecutionNano": 68701984,
+ "shortestApexExecutionNano": 6751438,
+ "longestApexExecutionNano": 131757534
+ },
+ {
+ "batchNumber": 6299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37140",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141490577,
+ "shortestRoundTripNano": 73499297,
+ "longestRoundTripNano": 169660998,
+ "averageApexExecutionNano": 56844987,
+ "shortestApexExecutionNano": 10472849,
+ "longestApexExecutionNano": 116199707
+ },
+ {
+ "batchNumber": 6300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158814510,
+ "shortestRoundTripNano": 39247592,
+ "longestRoundTripNano": 187621876,
+ "averageApexExecutionNano": 71537534,
+ "shortestApexExecutionNano": 8202687,
+ "longestApexExecutionNano": 125603331
+ },
+ {
+ "batchNumber": 6301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154394370,
+ "shortestRoundTripNano": 80798772,
+ "longestRoundTripNano": 181838147,
+ "averageApexExecutionNano": 59860964,
+ "shortestApexExecutionNano": 8991701,
+ "longestApexExecutionNano": 130076870
+ },
+ {
+ "batchNumber": 6302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166340797,
+ "shortestRoundTripNano": 68153140,
+ "longestRoundTripNano": 193727385,
+ "averageApexExecutionNano": 61686572,
+ "shortestApexExecutionNano": 13060142,
+ "longestApexExecutionNano": 133736246
+ },
+ {
+ "batchNumber": 6303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160319419,
+ "shortestRoundTripNano": 79190725,
+ "longestRoundTripNano": 182047693,
+ "averageApexExecutionNano": 71453250,
+ "shortestApexExecutionNano": 5727157,
+ "longestApexExecutionNano": 128549954
+ },
+ {
+ "batchNumber": 6304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37138",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161709916,
+ "shortestRoundTripNano": 63567007,
+ "longestRoundTripNano": 196322920,
+ "averageApexExecutionNano": 73354400,
+ "shortestApexExecutionNano": 8588014,
+ "longestApexExecutionNano": 160373967
+ },
+ {
+ "batchNumber": 6305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37142",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134308183,
+ "shortestRoundTripNano": 51870974,
+ "longestRoundTripNano": 165812884,
+ "averageApexExecutionNano": 65398441,
+ "shortestApexExecutionNano": 12348933,
+ "longestApexExecutionNano": 128378241
+ },
+ {
+ "batchNumber": 6306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132846686,
+ "shortestRoundTripNano": 49686233,
+ "longestRoundTripNano": 160431325,
+ "averageApexExecutionNano": 47734128,
+ "shortestApexExecutionNano": 6982860,
+ "longestApexExecutionNano": 104001591
+ },
+ {
+ "batchNumber": 6307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140279169,
+ "shortestRoundTripNano": 62956121,
+ "longestRoundTripNano": 164680831,
+ "averageApexExecutionNano": 57731904,
+ "shortestApexExecutionNano": 7472884,
+ "longestApexExecutionNano": 123760456
+ },
+ {
+ "batchNumber": 6308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145815617,
+ "shortestRoundTripNano": 67842814,
+ "longestRoundTripNano": 177994201,
+ "averageApexExecutionNano": 62134953,
+ "shortestApexExecutionNano": 22126611,
+ "longestApexExecutionNano": 133253221
+ },
+ {
+ "batchNumber": 6309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139425619,
+ "shortestRoundTripNano": 50766470,
+ "longestRoundTripNano": 182081147,
+ "averageApexExecutionNano": 51980052,
+ "shortestApexExecutionNano": 6734150,
+ "longestApexExecutionNano": 117405227
+ },
+ {
+ "batchNumber": 6310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139421420,
+ "shortestRoundTripNano": 67218991,
+ "longestRoundTripNano": 166646079,
+ "averageApexExecutionNano": 51803227,
+ "shortestApexExecutionNano": 5661768,
+ "longestApexExecutionNano": 121642947
+ },
+ {
+ "batchNumber": 6311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142918499,
+ "shortestRoundTripNano": 51062472,
+ "longestRoundTripNano": 173537948,
+ "averageApexExecutionNano": 54434643,
+ "shortestApexExecutionNano": 9390424,
+ "longestApexExecutionNano": 119139522
+ },
+ {
+ "batchNumber": 6312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140949547,
+ "shortestRoundTripNano": 79838828,
+ "longestRoundTripNano": 168335040,
+ "averageApexExecutionNano": 67694325,
+ "shortestApexExecutionNano": 11609412,
+ "longestApexExecutionNano": 116905258
+ },
+ {
+ "batchNumber": 6313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137159788,
+ "shortestRoundTripNano": 73853231,
+ "longestRoundTripNano": 160121352,
+ "averageApexExecutionNano": 54147297,
+ "shortestApexExecutionNano": 8804096,
+ "longestApexExecutionNano": 110980402
+ },
+ {
+ "batchNumber": 6314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143954921,
+ "shortestRoundTripNano": 49007018,
+ "longestRoundTripNano": 170130086,
+ "averageApexExecutionNano": 58078852,
+ "shortestApexExecutionNano": 11383083,
+ "longestApexExecutionNano": 118456565
+ },
+ {
+ "batchNumber": 6315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177157501,
+ "shortestRoundTripNano": 98512083,
+ "longestRoundTripNano": 209637674,
+ "averageApexExecutionNano": 74210194,
+ "shortestApexExecutionNano": 5107578,
+ "longestApexExecutionNano": 137350125
+ },
+ {
+ "batchNumber": 6316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37148",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139955099,
+ "shortestRoundTripNano": 61729093,
+ "longestRoundTripNano": 166884477,
+ "averageApexExecutionNano": 64098397,
+ "shortestApexExecutionNano": 6841995,
+ "longestApexExecutionNano": 126459749
+ },
+ {
+ "batchNumber": 6317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134683950,
+ "shortestRoundTripNano": 58970144,
+ "longestRoundTripNano": 158833900,
+ "averageApexExecutionNano": 64286532,
+ "shortestApexExecutionNano": 8161795,
+ "longestApexExecutionNano": 113304237
+ },
+ {
+ "batchNumber": 6318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131392236,
+ "shortestRoundTripNano": 63881757,
+ "longestRoundTripNano": 159658964,
+ "averageApexExecutionNano": 53211943,
+ "shortestApexExecutionNano": 7178918,
+ "longestApexExecutionNano": 122530910
+ },
+ {
+ "batchNumber": 6319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137343527,
+ "shortestRoundTripNano": 59423468,
+ "longestRoundTripNano": 160623471,
+ "averageApexExecutionNano": 60866599,
+ "shortestApexExecutionNano": 19849787,
+ "longestApexExecutionNano": 114549039
+ },
+ {
+ "batchNumber": 6320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37148",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140738895,
+ "shortestRoundTripNano": 52943050,
+ "longestRoundTripNano": 175629229,
+ "averageApexExecutionNano": 60964679,
+ "shortestApexExecutionNano": 5564861,
+ "longestApexExecutionNano": 134514139
+ },
+ {
+ "batchNumber": 6321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37148",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147225637,
+ "shortestRoundTripNano": 48499966,
+ "longestRoundTripNano": 181047704,
+ "averageApexExecutionNano": 68830464,
+ "shortestApexExecutionNano": 8954884,
+ "longestApexExecutionNano": 129692535
+ },
+ {
+ "batchNumber": 6322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37148",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137924332,
+ "shortestRoundTripNano": 57728500,
+ "longestRoundTripNano": 165960424,
+ "averageApexExecutionNano": 58914407,
+ "shortestApexExecutionNano": 10623867,
+ "longestApexExecutionNano": 107161056
+ },
+ {
+ "batchNumber": 6323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148272065,
+ "shortestRoundTripNano": 63466527,
+ "longestRoundTripNano": 173064924,
+ "averageApexExecutionNano": 58605539,
+ "shortestApexExecutionNano": 7847929,
+ "longestApexExecutionNano": 102619813
+ },
+ {
+ "batchNumber": 6324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142015430,
+ "shortestRoundTripNano": 74888675,
+ "longestRoundTripNano": 170929322,
+ "averageApexExecutionNano": 63965276,
+ "shortestApexExecutionNano": 13129545,
+ "longestApexExecutionNano": 123171422
+ },
+ {
+ "batchNumber": 6325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164620496,
+ "shortestRoundTripNano": 53870220,
+ "longestRoundTripNano": 198775291,
+ "averageApexExecutionNano": 63843912,
+ "shortestApexExecutionNano": 7322596,
+ "longestApexExecutionNano": 158070325
+ },
+ {
+ "batchNumber": 6326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37144",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159040210,
+ "shortestRoundTripNano": 72772755,
+ "longestRoundTripNano": 187534534,
+ "averageApexExecutionNano": 75218147,
+ "shortestApexExecutionNano": 13690862,
+ "longestApexExecutionNano": 130864503
+ },
+ {
+ "batchNumber": 6327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37150",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157227079,
+ "shortestRoundTripNano": 56787156,
+ "longestRoundTripNano": 187114396,
+ "averageApexExecutionNano": 59490253,
+ "shortestApexExecutionNano": 7327884,
+ "longestApexExecutionNano": 114631142
+ },
+ {
+ "batchNumber": 6328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131911131,
+ "shortestRoundTripNano": 63938233,
+ "longestRoundTripNano": 158545807,
+ "averageApexExecutionNano": 58155655,
+ "shortestApexExecutionNano": 11187711,
+ "longestApexExecutionNano": 108324588
+ },
+ {
+ "batchNumber": 6329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171000608,
+ "shortestRoundTripNano": 82645770,
+ "longestRoundTripNano": 193861261,
+ "averageApexExecutionNano": 83854348,
+ "shortestApexExecutionNano": 7745580,
+ "longestApexExecutionNano": 141697067
+ },
+ {
+ "batchNumber": 6330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150784926,
+ "shortestRoundTripNano": 60272525,
+ "longestRoundTripNano": 179148886,
+ "averageApexExecutionNano": 62968015,
+ "shortestApexExecutionNano": 5773521,
+ "longestApexExecutionNano": 133637491
+ },
+ {
+ "batchNumber": 6331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130734849,
+ "shortestRoundTripNano": 51172242,
+ "longestRoundTripNano": 163715224,
+ "averageApexExecutionNano": 56921258,
+ "shortestApexExecutionNano": 6108599,
+ "longestApexExecutionNano": 98171701
+ },
+ {
+ "batchNumber": 6332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137673690,
+ "shortestRoundTripNano": 63347887,
+ "longestRoundTripNano": 167568731,
+ "averageApexExecutionNano": 61084101,
+ "shortestApexExecutionNano": 11234261,
+ "longestApexExecutionNano": 118763660
+ },
+ {
+ "batchNumber": 6333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142872571,
+ "shortestRoundTripNano": 68960201,
+ "longestRoundTripNano": 176739279,
+ "averageApexExecutionNano": 61284401,
+ "shortestApexExecutionNano": 8678913,
+ "longestApexExecutionNano": 142018347
+ },
+ {
+ "batchNumber": 6334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145812892,
+ "shortestRoundTripNano": 62719292,
+ "longestRoundTripNano": 177541407,
+ "averageApexExecutionNano": 69979738,
+ "shortestApexExecutionNano": 9333610,
+ "longestApexExecutionNano": 107965643
+ },
+ {
+ "batchNumber": 6335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145138546,
+ "shortestRoundTripNano": 87008269,
+ "longestRoundTripNano": 170310923,
+ "averageApexExecutionNano": 71775006,
+ "shortestApexExecutionNano": 9773684,
+ "longestApexExecutionNano": 121069274
+ },
+ {
+ "batchNumber": 6336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 204461250,
+ "shortestRoundTripNano": 67390660,
+ "longestRoundTripNano": 238912132,
+ "averageApexExecutionNano": 108949798,
+ "shortestApexExecutionNano": 12936655,
+ "longestApexExecutionNano": 180628509
+ },
+ {
+ "batchNumber": 6337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167570563,
+ "shortestRoundTripNano": 62633028,
+ "longestRoundTripNano": 205602303,
+ "averageApexExecutionNano": 67020344,
+ "shortestApexExecutionNano": 6483484,
+ "longestApexExecutionNano": 136058560
+ },
+ {
+ "batchNumber": 6338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37156",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138765487,
+ "shortestRoundTripNano": 75648633,
+ "longestRoundTripNano": 171958960,
+ "averageApexExecutionNano": 63248943,
+ "shortestApexExecutionNano": 11609306,
+ "longestApexExecutionNano": 125488084
+ },
+ {
+ "batchNumber": 6339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141857839,
+ "shortestRoundTripNano": 75221108,
+ "longestRoundTripNano": 169555748,
+ "averageApexExecutionNano": 60205417,
+ "shortestApexExecutionNano": 6155215,
+ "longestApexExecutionNano": 125746198
+ },
+ {
+ "batchNumber": 6340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146259951,
+ "shortestRoundTripNano": 63542219,
+ "longestRoundTripNano": 177102174,
+ "averageApexExecutionNano": 57813974,
+ "shortestApexExecutionNano": 11027749,
+ "longestApexExecutionNano": 108580921
+ },
+ {
+ "batchNumber": 6341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156505192,
+ "shortestRoundTripNano": 75757159,
+ "longestRoundTripNano": 185575018,
+ "averageApexExecutionNano": 77757524,
+ "shortestApexExecutionNano": 9746298,
+ "longestApexExecutionNano": 130109495
+ },
+ {
+ "batchNumber": 6342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166286952,
+ "shortestRoundTripNano": 66469228,
+ "longestRoundTripNano": 198902436,
+ "averageApexExecutionNano": 72384035,
+ "shortestApexExecutionNano": 10736778,
+ "longestApexExecutionNano": 146386856
+ },
+ {
+ "batchNumber": 6343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154227984,
+ "shortestRoundTripNano": 70420071,
+ "longestRoundTripNano": 183247018,
+ "averageApexExecutionNano": 69361287,
+ "shortestApexExecutionNano": 9336541,
+ "longestApexExecutionNano": 137682437
+ },
+ {
+ "batchNumber": 6344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153717445,
+ "shortestRoundTripNano": 60929953,
+ "longestRoundTripNano": 180044628,
+ "averageApexExecutionNano": 67193808,
+ "shortestApexExecutionNano": 11691381,
+ "longestApexExecutionNano": 135917041
+ },
+ {
+ "batchNumber": 6345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144987285,
+ "shortestRoundTripNano": 65600431,
+ "longestRoundTripNano": 174929895,
+ "averageApexExecutionNano": 64948557,
+ "shortestApexExecutionNano": 6816864,
+ "longestApexExecutionNano": 130780973
+ },
+ {
+ "batchNumber": 6346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37152",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156185303,
+ "shortestRoundTripNano": 53142236,
+ "longestRoundTripNano": 198521239,
+ "averageApexExecutionNano": 65073875,
+ "shortestApexExecutionNano": 7926314,
+ "longestApexExecutionNano": 162552438
+ },
+ {
+ "batchNumber": 6347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153838849,
+ "shortestRoundTripNano": 69974456,
+ "longestRoundTripNano": 186562550,
+ "averageApexExecutionNano": 56089583,
+ "shortestApexExecutionNano": 4975919,
+ "longestApexExecutionNano": 134201730
+ },
+ {
+ "batchNumber": 6348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156698908,
+ "shortestRoundTripNano": 30636069,
+ "longestRoundTripNano": 207259799,
+ "averageApexExecutionNano": 81317781,
+ "shortestApexExecutionNano": 13803814,
+ "longestApexExecutionNano": 140713510
+ },
+ {
+ "batchNumber": 6349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148703477,
+ "shortestRoundTripNano": 67381827,
+ "longestRoundTripNano": 176132755,
+ "averageApexExecutionNano": 74659624,
+ "shortestApexExecutionNano": 11555390,
+ "longestApexExecutionNano": 135526614
+ },
+ {
+ "batchNumber": 6350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160643633,
+ "shortestRoundTripNano": 86956600,
+ "longestRoundTripNano": 185817545,
+ "averageApexExecutionNano": 80452131,
+ "shortestApexExecutionNano": 13541074,
+ "longestApexExecutionNano": 146804538
+ },
+ {
+ "batchNumber": 6351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134603144,
+ "shortestRoundTripNano": 35791493,
+ "longestRoundTripNano": 163019792,
+ "averageApexExecutionNano": 58697947,
+ "shortestApexExecutionNano": 9732972,
+ "longestApexExecutionNano": 124319276
+ },
+ {
+ "batchNumber": 6352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145027242,
+ "shortestRoundTripNano": 61549098,
+ "longestRoundTripNano": 176185741,
+ "averageApexExecutionNano": 56866117,
+ "shortestApexExecutionNano": 7500867,
+ "longestApexExecutionNano": 124465527
+ },
+ {
+ "batchNumber": 6353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137942422,
+ "shortestRoundTripNano": 38738745,
+ "longestRoundTripNano": 172610867,
+ "averageApexExecutionNano": 64171212,
+ "shortestApexExecutionNano": 6658436,
+ "longestApexExecutionNano": 130612832
+ },
+ {
+ "batchNumber": 6354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138689674,
+ "shortestRoundTripNano": 59536496,
+ "longestRoundTripNano": 172109023,
+ "averageApexExecutionNano": 56524414,
+ "shortestApexExecutionNano": 13194422,
+ "longestApexExecutionNano": 116942037
+ },
+ {
+ "batchNumber": 6355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161126973,
+ "shortestRoundTripNano": 92242050,
+ "longestRoundTripNano": 190278410,
+ "averageApexExecutionNano": 76078760,
+ "shortestApexExecutionNano": 6539842,
+ "longestApexExecutionNano": 139534484
+ },
+ {
+ "batchNumber": 6356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153922710,
+ "shortestRoundTripNano": 52077369,
+ "longestRoundTripNano": 188435052,
+ "averageApexExecutionNano": 67288037,
+ "shortestApexExecutionNano": 7533343,
+ "longestApexExecutionNano": 145584082
+ },
+ {
+ "batchNumber": 6357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133428098,
+ "shortestRoundTripNano": 32356520,
+ "longestRoundTripNano": 166068146,
+ "averageApexExecutionNano": 59063077,
+ "shortestApexExecutionNano": 6355262,
+ "longestApexExecutionNano": 126535867
+ },
+ {
+ "batchNumber": 6358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148479858,
+ "shortestRoundTripNano": 56492063,
+ "longestRoundTripNano": 178173303,
+ "averageApexExecutionNano": 56629252,
+ "shortestApexExecutionNano": 8142247,
+ "longestApexExecutionNano": 112140275
+ },
+ {
+ "batchNumber": 6359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129648587,
+ "shortestRoundTripNano": 65786505,
+ "longestRoundTripNano": 155537239,
+ "averageApexExecutionNano": 59214838,
+ "shortestApexExecutionNano": 16379761,
+ "longestApexExecutionNano": 109251453
+ },
+ {
+ "batchNumber": 6360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152675891,
+ "shortestRoundTripNano": 66860827,
+ "longestRoundTripNano": 175263568,
+ "averageApexExecutionNano": 68348732,
+ "shortestApexExecutionNano": 19918750,
+ "longestApexExecutionNano": 119784884
+ },
+ {
+ "batchNumber": 6361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139624352,
+ "shortestRoundTripNano": 56111793,
+ "longestRoundTripNano": 176675157,
+ "averageApexExecutionNano": 52527770,
+ "shortestApexExecutionNano": 5093065,
+ "longestApexExecutionNano": 134345388
+ },
+ {
+ "batchNumber": 6362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152606522,
+ "shortestRoundTripNano": 82032535,
+ "longestRoundTripNano": 185828830,
+ "averageApexExecutionNano": 77197325,
+ "shortestApexExecutionNano": 10650393,
+ "longestApexExecutionNano": 139938285
+ },
+ {
+ "batchNumber": 6363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166797531,
+ "shortestRoundTripNano": 97636666,
+ "longestRoundTripNano": 196672127,
+ "averageApexExecutionNano": 73085008,
+ "shortestApexExecutionNano": 13687981,
+ "longestApexExecutionNano": 147160948
+ },
+ {
+ "batchNumber": 6364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157491846,
+ "shortestRoundTripNano": 56708988,
+ "longestRoundTripNano": 185924730,
+ "averageApexExecutionNano": 71202805,
+ "shortestApexExecutionNano": 7333344,
+ "longestApexExecutionNano": 128720513
+ },
+ {
+ "batchNumber": 6365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37158",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 196081652,
+ "shortestRoundTripNano": 72012502,
+ "longestRoundTripNano": 235011949,
+ "averageApexExecutionNano": 97639499,
+ "shortestApexExecutionNano": 9093514,
+ "longestApexExecutionNano": 179585424
+ },
+ {
+ "batchNumber": 6366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157856023,
+ "shortestRoundTripNano": 69335720,
+ "longestRoundTripNano": 200538262,
+ "averageApexExecutionNano": 65023883,
+ "shortestApexExecutionNano": 10929857,
+ "longestApexExecutionNano": 154801831
+ },
+ {
+ "batchNumber": 6367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155615469,
+ "shortestRoundTripNano": 74508546,
+ "longestRoundTripNano": 182474712,
+ "averageApexExecutionNano": 52175341,
+ "shortestApexExecutionNano": 6732413,
+ "longestApexExecutionNano": 102982959
+ },
+ {
+ "batchNumber": 6368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138630181,
+ "shortestRoundTripNano": 72481769,
+ "longestRoundTripNano": 179114434,
+ "averageApexExecutionNano": 67961246,
+ "shortestApexExecutionNano": 10065209,
+ "longestApexExecutionNano": 128942970
+ },
+ {
+ "batchNumber": 6369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155754753,
+ "shortestRoundTripNano": 81482987,
+ "longestRoundTripNano": 184446505,
+ "averageApexExecutionNano": 67739668,
+ "shortestApexExecutionNano": 6245686,
+ "longestApexExecutionNano": 128297683
+ },
+ {
+ "batchNumber": 6370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160843321,
+ "shortestRoundTripNano": 56020431,
+ "longestRoundTripNano": 194341013,
+ "averageApexExecutionNano": 67848514,
+ "shortestApexExecutionNano": 8924715,
+ "longestApexExecutionNano": 147667677
+ },
+ {
+ "batchNumber": 6371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143867645,
+ "shortestRoundTripNano": 78757346,
+ "longestRoundTripNano": 174330308,
+ "averageApexExecutionNano": 55953023,
+ "shortestApexExecutionNano": 7152122,
+ "longestApexExecutionNano": 133882122
+ },
+ {
+ "batchNumber": 6372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173535891,
+ "shortestRoundTripNano": 55511556,
+ "longestRoundTripNano": 208967425,
+ "averageApexExecutionNano": 59446987,
+ "shortestApexExecutionNano": 7707689,
+ "longestApexExecutionNano": 138321998
+ },
+ {
+ "batchNumber": 6373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158150538,
+ "shortestRoundTripNano": 73690770,
+ "longestRoundTripNano": 191493683,
+ "averageApexExecutionNano": 69698570,
+ "shortestApexExecutionNano": 9495242,
+ "longestApexExecutionNano": 139630049
+ },
+ {
+ "batchNumber": 6374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164674656,
+ "shortestRoundTripNano": 68897593,
+ "longestRoundTripNano": 194187983,
+ "averageApexExecutionNano": 62407838,
+ "shortestApexExecutionNano": 10578640,
+ "longestApexExecutionNano": 126991036
+ },
+ {
+ "batchNumber": 6375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147139348,
+ "shortestRoundTripNano": 75798400,
+ "longestRoundTripNano": 178680873,
+ "averageApexExecutionNano": 50257745,
+ "shortestApexExecutionNano": 9544716,
+ "longestApexExecutionNano": 137038388
+ },
+ {
+ "batchNumber": 6376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146604895,
+ "shortestRoundTripNano": 54529688,
+ "longestRoundTripNano": 185377159,
+ "averageApexExecutionNano": 62058819,
+ "shortestApexExecutionNano": 7496778,
+ "longestApexExecutionNano": 121381166
+ },
+ {
+ "batchNumber": 6377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145459237,
+ "shortestRoundTripNano": 33736396,
+ "longestRoundTripNano": 174940758,
+ "averageApexExecutionNano": 54615477,
+ "shortestApexExecutionNano": 9315893,
+ "longestApexExecutionNano": 129643238
+ },
+ {
+ "batchNumber": 6378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140781029,
+ "shortestRoundTripNano": 48416390,
+ "longestRoundTripNano": 179513946,
+ "averageApexExecutionNano": 64440975,
+ "shortestApexExecutionNano": 8078079,
+ "longestApexExecutionNano": 132549560
+ },
+ {
+ "batchNumber": 6379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37166",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154568526,
+ "shortestRoundTripNano": 63864034,
+ "longestRoundTripNano": 187865571,
+ "averageApexExecutionNano": 66883884,
+ "shortestApexExecutionNano": 15491062,
+ "longestApexExecutionNano": 127421544
+ },
+ {
+ "batchNumber": 6380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127883862,
+ "shortestRoundTripNano": 60300231,
+ "longestRoundTripNano": 158795098,
+ "averageApexExecutionNano": 57740840,
+ "shortestApexExecutionNano": 9883700,
+ "longestApexExecutionNano": 122054831
+ },
+ {
+ "batchNumber": 6381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134709743,
+ "shortestRoundTripNano": 66347623,
+ "longestRoundTripNano": 162412108,
+ "averageApexExecutionNano": 47758054,
+ "shortestApexExecutionNano": 10725006,
+ "longestApexExecutionNano": 100962303
+ },
+ {
+ "batchNumber": 6382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144014210,
+ "shortestRoundTripNano": 38419922,
+ "longestRoundTripNano": 174393436,
+ "averageApexExecutionNano": 61606075,
+ "shortestApexExecutionNano": 14409447,
+ "longestApexExecutionNano": 125461971
+ },
+ {
+ "batchNumber": 6383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135266708,
+ "shortestRoundTripNano": 62257003,
+ "longestRoundTripNano": 156435983,
+ "averageApexExecutionNano": 54480084,
+ "shortestApexExecutionNano": 11014697,
+ "longestApexExecutionNano": 105230809
+ },
+ {
+ "batchNumber": 6384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138756786,
+ "shortestRoundTripNano": 64249695,
+ "longestRoundTripNano": 166917456,
+ "averageApexExecutionNano": 73943862,
+ "shortestApexExecutionNano": 7988791,
+ "longestApexExecutionNano": 130821383
+ },
+ {
+ "batchNumber": 6385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37172",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150221689,
+ "shortestRoundTripNano": 53718186,
+ "longestRoundTripNano": 179742170,
+ "averageApexExecutionNano": 57199632,
+ "shortestApexExecutionNano": 7064732,
+ "longestApexExecutionNano": 135034433
+ },
+ {
+ "batchNumber": 6386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149482336,
+ "shortestRoundTripNano": 67513598,
+ "longestRoundTripNano": 176236737,
+ "averageApexExecutionNano": 64558442,
+ "shortestApexExecutionNano": 10733079,
+ "longestApexExecutionNano": 134174295
+ },
+ {
+ "batchNumber": 6387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37174",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158610804,
+ "shortestRoundTripNano": 50403786,
+ "longestRoundTripNano": 194376564,
+ "averageApexExecutionNano": 72121213,
+ "shortestApexExecutionNano": 7279563,
+ "longestApexExecutionNano": 148773880
+ },
+ {
+ "batchNumber": 6388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124493959,
+ "shortestRoundTripNano": 65546567,
+ "longestRoundTripNano": 144365890,
+ "averageApexExecutionNano": 51398425,
+ "shortestApexExecutionNano": 6365035,
+ "longestApexExecutionNano": 104742590
+ },
+ {
+ "batchNumber": 6389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143311722,
+ "shortestRoundTripNano": 83828062,
+ "longestRoundTripNano": 172991263,
+ "averageApexExecutionNano": 73939850,
+ "shortestApexExecutionNano": 13145756,
+ "longestApexExecutionNano": 116181479
+ },
+ {
+ "batchNumber": 6390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37176",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151972590,
+ "shortestRoundTripNano": 61947567,
+ "longestRoundTripNano": 179492060,
+ "averageApexExecutionNano": 72036739,
+ "shortestApexExecutionNano": 9603240,
+ "longestApexExecutionNano": 125846327
+ },
+ {
+ "batchNumber": 6391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133287567,
+ "shortestRoundTripNano": 59023866,
+ "longestRoundTripNano": 161678122,
+ "averageApexExecutionNano": 56456668,
+ "shortestApexExecutionNano": 8185168,
+ "longestApexExecutionNano": 121131896
+ },
+ {
+ "batchNumber": 6392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185726004,
+ "shortestRoundTripNano": 70084382,
+ "longestRoundTripNano": 222771380,
+ "averageApexExecutionNano": 70821894,
+ "shortestApexExecutionNano": 8391021,
+ "longestApexExecutionNano": 145352197
+ },
+ {
+ "batchNumber": 6393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130638000,
+ "shortestRoundTripNano": 63495283,
+ "longestRoundTripNano": 152734591,
+ "averageApexExecutionNano": 59027742,
+ "shortestApexExecutionNano": 7239399,
+ "longestApexExecutionNano": 111324650
+ },
+ {
+ "batchNumber": 6394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143617870,
+ "shortestRoundTripNano": 62000843,
+ "longestRoundTripNano": 182786703,
+ "averageApexExecutionNano": 58770728,
+ "shortestApexExecutionNano": 11109494,
+ "longestApexExecutionNano": 125962921
+ },
+ {
+ "batchNumber": 6395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152626640,
+ "shortestRoundTripNano": 75443671,
+ "longestRoundTripNano": 179325509,
+ "averageApexExecutionNano": 74233241,
+ "shortestApexExecutionNano": 9328330,
+ "longestApexExecutionNano": 133400138
+ },
+ {
+ "batchNumber": 6396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122816000,
+ "shortestRoundTripNano": 64177129,
+ "longestRoundTripNano": 144792943,
+ "averageApexExecutionNano": 48373050,
+ "shortestApexExecutionNano": 7109526,
+ "longestApexExecutionNano": 101553846
+ },
+ {
+ "batchNumber": 6397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145965150,
+ "shortestRoundTripNano": 72692746,
+ "longestRoundTripNano": 186205671,
+ "averageApexExecutionNano": 63836129,
+ "shortestApexExecutionNano": 5604983,
+ "longestApexExecutionNano": 133528345
+ },
+ {
+ "batchNumber": 6398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131512888,
+ "shortestRoundTripNano": 64859810,
+ "longestRoundTripNano": 159867766,
+ "averageApexExecutionNano": 62054137,
+ "shortestApexExecutionNano": 5976243,
+ "longestApexExecutionNano": 120497546
+ },
+ {
+ "batchNumber": 6399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146960208,
+ "shortestRoundTripNano": 52068169,
+ "longestRoundTripNano": 175641675,
+ "averageApexExecutionNano": 54819335,
+ "shortestApexExecutionNano": 13882743,
+ "longestApexExecutionNano": 118810692
+ },
+ {
+ "batchNumber": 6400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127131058,
+ "shortestRoundTripNano": 60095137,
+ "longestRoundTripNano": 149305081,
+ "averageApexExecutionNano": 45807290,
+ "shortestApexExecutionNano": 9235318,
+ "longestApexExecutionNano": 103931110
+ },
+ {
+ "batchNumber": 6401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37178",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152887342,
+ "shortestRoundTripNano": 55590137,
+ "longestRoundTripNano": 194486440,
+ "averageApexExecutionNano": 58254400,
+ "shortestApexExecutionNano": 7026856,
+ "longestApexExecutionNano": 132430897
+ },
+ {
+ "batchNumber": 6402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138127310,
+ "shortestRoundTripNano": 63145736,
+ "longestRoundTripNano": 165109517,
+ "averageApexExecutionNano": 65683211,
+ "shortestApexExecutionNano": 13139386,
+ "longestApexExecutionNano": 121862106
+ },
+ {
+ "batchNumber": 6403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149487877,
+ "shortestRoundTripNano": 66411157,
+ "longestRoundTripNano": 176901680,
+ "averageApexExecutionNano": 63067817,
+ "shortestApexExecutionNano": 4605583,
+ "longestApexExecutionNano": 131643675
+ },
+ {
+ "batchNumber": 6404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144058740,
+ "shortestRoundTripNano": 51621250,
+ "longestRoundTripNano": 172425319,
+ "averageApexExecutionNano": 64752145,
+ "shortestApexExecutionNano": 14337230,
+ "longestApexExecutionNano": 120006361
+ },
+ {
+ "batchNumber": 6405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135551886,
+ "shortestRoundTripNano": 89584521,
+ "longestRoundTripNano": 158745132,
+ "averageApexExecutionNano": 59906139,
+ "shortestApexExecutionNano": 9379287,
+ "longestApexExecutionNano": 111536218
+ },
+ {
+ "batchNumber": 6406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177698541,
+ "shortestRoundTripNano": 52809547,
+ "longestRoundTripNano": 217019020,
+ "averageApexExecutionNano": 69667487,
+ "shortestApexExecutionNano": 7294354,
+ "longestApexExecutionNano": 161096127
+ },
+ {
+ "batchNumber": 6407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139480742,
+ "shortestRoundTripNano": 58395156,
+ "longestRoundTripNano": 168681953,
+ "averageApexExecutionNano": 48143754,
+ "shortestApexExecutionNano": 6806043,
+ "longestApexExecutionNano": 114650955
+ },
+ {
+ "batchNumber": 6408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140544821,
+ "shortestRoundTripNano": 51245155,
+ "longestRoundTripNano": 172497533,
+ "averageApexExecutionNano": 51840486,
+ "shortestApexExecutionNano": 6525068,
+ "longestApexExecutionNano": 113378223
+ },
+ {
+ "batchNumber": 6409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137211741,
+ "shortestRoundTripNano": 31797655,
+ "longestRoundTripNano": 170773369,
+ "averageApexExecutionNano": 53627823,
+ "shortestApexExecutionNano": 10584663,
+ "longestApexExecutionNano": 123175571
+ },
+ {
+ "batchNumber": 6410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37182",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139992086,
+ "shortestRoundTripNano": 47955160,
+ "longestRoundTripNano": 177963219,
+ "averageApexExecutionNano": 60626150,
+ "shortestApexExecutionNano": 10231322,
+ "longestApexExecutionNano": 129904202
+ },
+ {
+ "batchNumber": 6411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151098221,
+ "shortestRoundTripNano": 74245198,
+ "longestRoundTripNano": 180002708,
+ "averageApexExecutionNano": 58880460,
+ "shortestApexExecutionNano": 8579200,
+ "longestApexExecutionNano": 130537519
+ },
+ {
+ "batchNumber": 6412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192884175,
+ "shortestRoundTripNano": 108513029,
+ "longestRoundTripNano": 215720864,
+ "averageApexExecutionNano": 59186159,
+ "shortestApexExecutionNano": 8268896,
+ "longestApexExecutionNano": 127147379
+ },
+ {
+ "batchNumber": 6413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146304535,
+ "shortestRoundTripNano": 46236729,
+ "longestRoundTripNano": 179041339,
+ "averageApexExecutionNano": 62155882,
+ "shortestApexExecutionNano": 10187169,
+ "longestApexExecutionNano": 137183972
+ },
+ {
+ "batchNumber": 6414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138242393,
+ "shortestRoundTripNano": 63601037,
+ "longestRoundTripNano": 165738287,
+ "averageApexExecutionNano": 56754673,
+ "shortestApexExecutionNano": 8407285,
+ "longestApexExecutionNano": 117614460
+ },
+ {
+ "batchNumber": 6415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37184",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 262316084,
+ "shortestRoundTripNano": 56289104,
+ "longestRoundTripNano": 314700719,
+ "averageApexExecutionNano": 120876037,
+ "shortestApexExecutionNano": 10015194,
+ "longestApexExecutionNano": 232702322
+ },
+ {
+ "batchNumber": 6416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149900838,
+ "shortestRoundTripNano": 30477617,
+ "longestRoundTripNano": 186115792,
+ "averageApexExecutionNano": 60170431,
+ "shortestApexExecutionNano": 9415910,
+ "longestApexExecutionNano": 139510501
+ },
+ {
+ "batchNumber": 6417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129421416,
+ "shortestRoundTripNano": 55092643,
+ "longestRoundTripNano": 154991662,
+ "averageApexExecutionNano": 59984084,
+ "shortestApexExecutionNano": 8629892,
+ "longestApexExecutionNano": 118623197
+ },
+ {
+ "batchNumber": 6418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140060244,
+ "shortestRoundTripNano": 45119907,
+ "longestRoundTripNano": 169249683,
+ "averageApexExecutionNano": 56084866,
+ "shortestApexExecutionNano": 5276972,
+ "longestApexExecutionNano": 105786318
+ },
+ {
+ "batchNumber": 6419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140124068,
+ "shortestRoundTripNano": 76922455,
+ "longestRoundTripNano": 167295547,
+ "averageApexExecutionNano": 57231244,
+ "shortestApexExecutionNano": 12706961,
+ "longestApexExecutionNano": 109775207
+ },
+ {
+ "batchNumber": 6420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143887023,
+ "shortestRoundTripNano": 79212123,
+ "longestRoundTripNano": 174721039,
+ "averageApexExecutionNano": 78448035,
+ "shortestApexExecutionNano": 21751401,
+ "longestApexExecutionNano": 139131418
+ },
+ {
+ "batchNumber": 6421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125157951,
+ "shortestRoundTripNano": 46495210,
+ "longestRoundTripNano": 157311957,
+ "averageApexExecutionNano": 52306180,
+ "shortestApexExecutionNano": 7787673,
+ "longestApexExecutionNano": 112369557
+ },
+ {
+ "batchNumber": 6422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165491069,
+ "shortestRoundTripNano": 73886255,
+ "longestRoundTripNano": 195585678,
+ "averageApexExecutionNano": 71049898,
+ "shortestApexExecutionNano": 9571555,
+ "longestApexExecutionNano": 146517506
+ },
+ {
+ "batchNumber": 6423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143973728,
+ "shortestRoundTripNano": 66765418,
+ "longestRoundTripNano": 177744026,
+ "averageApexExecutionNano": 70969467,
+ "shortestApexExecutionNano": 16676658,
+ "longestApexExecutionNano": 133630969
+ },
+ {
+ "batchNumber": 6424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155836547,
+ "shortestRoundTripNano": 61129380,
+ "longestRoundTripNano": 185329088,
+ "averageApexExecutionNano": 60148429,
+ "shortestApexExecutionNano": 14200348,
+ "longestApexExecutionNano": 116972121
+ },
+ {
+ "batchNumber": 6425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140770158,
+ "shortestRoundTripNano": 86004053,
+ "longestRoundTripNano": 161455904,
+ "averageApexExecutionNano": 67953901,
+ "shortestApexExecutionNano": 11893781,
+ "longestApexExecutionNano": 121938338
+ },
+ {
+ "batchNumber": 6426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165998712,
+ "shortestRoundTripNano": 59204288,
+ "longestRoundTripNano": 204880371,
+ "averageApexExecutionNano": 57255651,
+ "shortestApexExecutionNano": 5789266,
+ "longestApexExecutionNano": 137416048
+ },
+ {
+ "batchNumber": 6427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141346193,
+ "shortestRoundTripNano": 77013627,
+ "longestRoundTripNano": 165040662,
+ "averageApexExecutionNano": 59325480,
+ "shortestApexExecutionNano": 7041700,
+ "longestApexExecutionNano": 107697038
+ },
+ {
+ "batchNumber": 6428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37186",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175263908,
+ "shortestRoundTripNano": 54977073,
+ "longestRoundTripNano": 198475929,
+ "averageApexExecutionNano": 59153286,
+ "shortestApexExecutionNano": 10279516,
+ "longestApexExecutionNano": 125417970
+ },
+ {
+ "batchNumber": 6429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143492310,
+ "shortestRoundTripNano": 38485196,
+ "longestRoundTripNano": 179118481,
+ "averageApexExecutionNano": 74355642,
+ "shortestApexExecutionNano": 8541979,
+ "longestApexExecutionNano": 133813850
+ },
+ {
+ "batchNumber": 6430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37190",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171640943,
+ "shortestRoundTripNano": 55109244,
+ "longestRoundTripNano": 203865500,
+ "averageApexExecutionNano": 78372433,
+ "shortestApexExecutionNano": 7690237,
+ "longestApexExecutionNano": 137775563
+ },
+ {
+ "batchNumber": 6431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140644238,
+ "shortestRoundTripNano": 59415677,
+ "longestRoundTripNano": 167895568,
+ "averageApexExecutionNano": 55812419,
+ "shortestApexExecutionNano": 5794415,
+ "longestApexExecutionNano": 133342998
+ },
+ {
+ "batchNumber": 6432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142410911,
+ "shortestRoundTripNano": 52519050,
+ "longestRoundTripNano": 175480051,
+ "averageApexExecutionNano": 51112939,
+ "shortestApexExecutionNano": 6903216,
+ "longestApexExecutionNano": 143493563
+ },
+ {
+ "batchNumber": 6433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137072115,
+ "shortestRoundTripNano": 43186964,
+ "longestRoundTripNano": 169878185,
+ "averageApexExecutionNano": 63583757,
+ "shortestApexExecutionNano": 8432207,
+ "longestApexExecutionNano": 135653147
+ },
+ {
+ "batchNumber": 6434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171854945,
+ "shortestRoundTripNano": 62540086,
+ "longestRoundTripNano": 215831415,
+ "averageApexExecutionNano": 80915904,
+ "shortestApexExecutionNano": 18555174,
+ "longestApexExecutionNano": 146390770
+ },
+ {
+ "batchNumber": 6435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160267470,
+ "shortestRoundTripNano": 77959849,
+ "longestRoundTripNano": 187703056,
+ "averageApexExecutionNano": 73871094,
+ "shortestApexExecutionNano": 8603720,
+ "longestApexExecutionNano": 138051300
+ },
+ {
+ "batchNumber": 6436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37192",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174985201,
+ "shortestRoundTripNano": 70584020,
+ "longestRoundTripNano": 207257910,
+ "averageApexExecutionNano": 73437076,
+ "shortestApexExecutionNano": 8844934,
+ "longestApexExecutionNano": 165181401
+ },
+ {
+ "batchNumber": 6437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127457758,
+ "shortestRoundTripNano": 48565789,
+ "longestRoundTripNano": 155084191,
+ "averageApexExecutionNano": 57266225,
+ "shortestApexExecutionNano": 6965069,
+ "longestApexExecutionNano": 108058206
+ },
+ {
+ "batchNumber": 6438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139574200,
+ "shortestRoundTripNano": 64357599,
+ "longestRoundTripNano": 166051155,
+ "averageApexExecutionNano": 54728942,
+ "shortestApexExecutionNano": 8020614,
+ "longestApexExecutionNano": 108631072
+ },
+ {
+ "batchNumber": 6439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157126495,
+ "shortestRoundTripNano": 67779100,
+ "longestRoundTripNano": 183814817,
+ "averageApexExecutionNano": 58093119,
+ "shortestApexExecutionNano": 7171068,
+ "longestApexExecutionNano": 114999887
+ },
+ {
+ "batchNumber": 6440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158461070,
+ "shortestRoundTripNano": 53771961,
+ "longestRoundTripNano": 188726634,
+ "averageApexExecutionNano": 71105331,
+ "shortestApexExecutionNano": 8024301,
+ "longestApexExecutionNano": 138774167
+ },
+ {
+ "batchNumber": 6441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148456971,
+ "shortestRoundTripNano": 55278997,
+ "longestRoundTripNano": 184705317,
+ "averageApexExecutionNano": 57927687,
+ "shortestApexExecutionNano": 7593738,
+ "longestApexExecutionNano": 110588831
+ },
+ {
+ "batchNumber": 6442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141470998,
+ "shortestRoundTripNano": 38122661,
+ "longestRoundTripNano": 177721060,
+ "averageApexExecutionNano": 52494839,
+ "shortestApexExecutionNano": 7628954,
+ "longestApexExecutionNano": 111077321
+ },
+ {
+ "batchNumber": 6443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166625143,
+ "shortestRoundTripNano": 101900102,
+ "longestRoundTripNano": 202383310,
+ "averageApexExecutionNano": 79058577,
+ "shortestApexExecutionNano": 9835026,
+ "longestApexExecutionNano": 143262243
+ },
+ {
+ "batchNumber": 6444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165274969,
+ "shortestRoundTripNano": 57603894,
+ "longestRoundTripNano": 189983029,
+ "averageApexExecutionNano": 66276730,
+ "shortestApexExecutionNano": 7347132,
+ "longestApexExecutionNano": 126652983
+ },
+ {
+ "batchNumber": 6445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143474099,
+ "shortestRoundTripNano": 69212053,
+ "longestRoundTripNano": 167369961,
+ "averageApexExecutionNano": 74595942,
+ "shortestApexExecutionNano": 6928205,
+ "longestApexExecutionNano": 128172986
+ },
+ {
+ "batchNumber": 6446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143913111,
+ "shortestRoundTripNano": 62106326,
+ "longestRoundTripNano": 186474562,
+ "averageApexExecutionNano": 58473327,
+ "shortestApexExecutionNano": 7823393,
+ "longestApexExecutionNano": 122818850
+ },
+ {
+ "batchNumber": 6447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37198",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141041905,
+ "shortestRoundTripNano": 57833629,
+ "longestRoundTripNano": 171287585,
+ "averageApexExecutionNano": 56441245,
+ "shortestApexExecutionNano": 7028109,
+ "longestApexExecutionNano": 125614303
+ },
+ {
+ "batchNumber": 6448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140683412,
+ "shortestRoundTripNano": 78957337,
+ "longestRoundTripNano": 167520726,
+ "averageApexExecutionNano": 58525238,
+ "shortestApexExecutionNano": 7089565,
+ "longestApexExecutionNano": 111519218
+ },
+ {
+ "batchNumber": 6449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154221526,
+ "shortestRoundTripNano": 85578406,
+ "longestRoundTripNano": 179477834,
+ "averageApexExecutionNano": 48909785,
+ "shortestApexExecutionNano": 10224765,
+ "longestApexExecutionNano": 121033115
+ },
+ {
+ "batchNumber": 6450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153891309,
+ "shortestRoundTripNano": 47771658,
+ "longestRoundTripNano": 181193522,
+ "averageApexExecutionNano": 71211820,
+ "shortestApexExecutionNano": 12871812,
+ "longestApexExecutionNano": 131981814
+ },
+ {
+ "batchNumber": 6451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37196",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146298249,
+ "shortestRoundTripNano": 76493185,
+ "longestRoundTripNano": 175154521,
+ "averageApexExecutionNano": 76595246,
+ "shortestApexExecutionNano": 8905731,
+ "longestApexExecutionNano": 127196138
+ },
+ {
+ "batchNumber": 6452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135631578,
+ "shortestRoundTripNano": 60971006,
+ "longestRoundTripNano": 162728119,
+ "averageApexExecutionNano": 48014177,
+ "shortestApexExecutionNano": 9189040,
+ "longestApexExecutionNano": 99004295
+ },
+ {
+ "batchNumber": 6453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129532082,
+ "shortestRoundTripNano": 45102588,
+ "longestRoundTripNano": 160934861,
+ "averageApexExecutionNano": 50529950,
+ "shortestApexExecutionNano": 5632893,
+ "longestApexExecutionNano": 112897778
+ },
+ {
+ "batchNumber": 6454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133528757,
+ "shortestRoundTripNano": 53312954,
+ "longestRoundTripNano": 160071075,
+ "averageApexExecutionNano": 57757757,
+ "shortestApexExecutionNano": 7699140,
+ "longestApexExecutionNano": 110253743
+ },
+ {
+ "batchNumber": 6455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152387228,
+ "shortestRoundTripNano": 69912462,
+ "longestRoundTripNano": 178408632,
+ "averageApexExecutionNano": 58764890,
+ "shortestApexExecutionNano": 10485515,
+ "longestApexExecutionNano": 128866705
+ },
+ {
+ "batchNumber": 6456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37200",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160308306,
+ "shortestRoundTripNano": 59010783,
+ "longestRoundTripNano": 191976319,
+ "averageApexExecutionNano": 71192103,
+ "shortestApexExecutionNano": 9262618,
+ "longestApexExecutionNano": 130379600
+ },
+ {
+ "batchNumber": 6457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121082605,
+ "shortestRoundTripNano": 53250244,
+ "longestRoundTripNano": 149493157,
+ "averageApexExecutionNano": 60356452,
+ "shortestApexExecutionNano": 7542108,
+ "longestApexExecutionNano": 105794498
+ },
+ {
+ "batchNumber": 6458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136600887,
+ "shortestRoundTripNano": 68713087,
+ "longestRoundTripNano": 173740844,
+ "averageApexExecutionNano": 54666482,
+ "shortestApexExecutionNano": 10221028,
+ "longestApexExecutionNano": 115077369
+ },
+ {
+ "batchNumber": 6459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37202",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141659515,
+ "shortestRoundTripNano": 48376503,
+ "longestRoundTripNano": 181390895,
+ "averageApexExecutionNano": 71554606,
+ "shortestApexExecutionNano": 10361508,
+ "longestApexExecutionNano": 146670709
+ },
+ {
+ "batchNumber": 6460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136280581,
+ "shortestRoundTripNano": 53028632,
+ "longestRoundTripNano": 164510796,
+ "averageApexExecutionNano": 63216548,
+ "shortestApexExecutionNano": 9293571,
+ "longestApexExecutionNano": 122507685
+ },
+ {
+ "batchNumber": 6461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132421781,
+ "shortestRoundTripNano": 48993813,
+ "longestRoundTripNano": 168383501,
+ "averageApexExecutionNano": 40568872,
+ "shortestApexExecutionNano": 4705735,
+ "longestApexExecutionNano": 114821248
+ },
+ {
+ "batchNumber": 6462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145938489,
+ "shortestRoundTripNano": 87172788,
+ "longestRoundTripNano": 174660093,
+ "averageApexExecutionNano": 68388349,
+ "shortestApexExecutionNano": 10737152,
+ "longestApexExecutionNano": 122177758
+ },
+ {
+ "batchNumber": 6463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136134473,
+ "shortestRoundTripNano": 67067393,
+ "longestRoundTripNano": 176892851,
+ "averageApexExecutionNano": 64904380,
+ "shortestApexExecutionNano": 8510186,
+ "longestApexExecutionNano": 143400178
+ },
+ {
+ "batchNumber": 6464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161779898,
+ "shortestRoundTripNano": 66950621,
+ "longestRoundTripNano": 189122275,
+ "averageApexExecutionNano": 72842924,
+ "shortestApexExecutionNano": 6797693,
+ "longestApexExecutionNano": 114354681
+ },
+ {
+ "batchNumber": 6465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154402925,
+ "shortestRoundTripNano": 74842541,
+ "longestRoundTripNano": 176935391,
+ "averageApexExecutionNano": 75326175,
+ "shortestApexExecutionNano": 14140881,
+ "longestApexExecutionNano": 126875704
+ },
+ {
+ "batchNumber": 6466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161970050,
+ "shortestRoundTripNano": 83105669,
+ "longestRoundTripNano": 189636553,
+ "averageApexExecutionNano": 51446801,
+ "shortestApexExecutionNano": 7632498,
+ "longestApexExecutionNano": 95241685
+ },
+ {
+ "batchNumber": 6467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140227850,
+ "shortestRoundTripNano": 52087958,
+ "longestRoundTripNano": 173437014,
+ "averageApexExecutionNano": 44690836,
+ "shortestApexExecutionNano": 7016181,
+ "longestApexExecutionNano": 115913475
+ },
+ {
+ "batchNumber": 6468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149348496,
+ "shortestRoundTripNano": 43698959,
+ "longestRoundTripNano": 184980065,
+ "averageApexExecutionNano": 69847644,
+ "shortestApexExecutionNano": 9012901,
+ "longestApexExecutionNano": 138654297
+ },
+ {
+ "batchNumber": 6469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145220631,
+ "shortestRoundTripNano": 56147475,
+ "longestRoundTripNano": 176946507,
+ "averageApexExecutionNano": 57359681,
+ "shortestApexExecutionNano": 8842970,
+ "longestApexExecutionNano": 114679642
+ },
+ {
+ "batchNumber": 6470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138689219,
+ "shortestRoundTripNano": 69759939,
+ "longestRoundTripNano": 174596376,
+ "averageApexExecutionNano": 47872920,
+ "shortestApexExecutionNano": 7749221,
+ "longestApexExecutionNano": 114963332
+ },
+ {
+ "batchNumber": 6471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37204",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163107592,
+ "shortestRoundTripNano": 71138658,
+ "longestRoundTripNano": 191909556,
+ "averageApexExecutionNano": 63224949,
+ "shortestApexExecutionNano": 10743774,
+ "longestApexExecutionNano": 120589162
+ },
+ {
+ "batchNumber": 6472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145472531,
+ "shortestRoundTripNano": 74409811,
+ "longestRoundTripNano": 176425568,
+ "averageApexExecutionNano": 70761578,
+ "shortestApexExecutionNano": 13243271,
+ "longestApexExecutionNano": 115042928
+ },
+ {
+ "batchNumber": 6473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131441391,
+ "shortestRoundTripNano": 58500763,
+ "longestRoundTripNano": 169628588,
+ "averageApexExecutionNano": 64054023,
+ "shortestApexExecutionNano": 10822278,
+ "longestApexExecutionNano": 111227537
+ },
+ {
+ "batchNumber": 6474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147816641,
+ "shortestRoundTripNano": 80662843,
+ "longestRoundTripNano": 177337246,
+ "averageApexExecutionNano": 68290784,
+ "shortestApexExecutionNano": 7501649,
+ "longestApexExecutionNano": 122806630
+ },
+ {
+ "batchNumber": 6475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37208",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172024986,
+ "shortestRoundTripNano": 61921962,
+ "longestRoundTripNano": 199288714,
+ "averageApexExecutionNano": 81070721,
+ "shortestApexExecutionNano": 8166511,
+ "longestApexExecutionNano": 155667007
+ },
+ {
+ "batchNumber": 6476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161573704,
+ "shortestRoundTripNano": 65791941,
+ "longestRoundTripNano": 185296088,
+ "averageApexExecutionNano": 67827550,
+ "shortestApexExecutionNano": 6362952,
+ "longestApexExecutionNano": 133000877
+ },
+ {
+ "batchNumber": 6477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138057161,
+ "shortestRoundTripNano": 51553088,
+ "longestRoundTripNano": 170097659,
+ "averageApexExecutionNano": 54816007,
+ "shortestApexExecutionNano": 8777356,
+ "longestApexExecutionNano": 113878852
+ },
+ {
+ "batchNumber": 6478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147350507,
+ "shortestRoundTripNano": 28306468,
+ "longestRoundTripNano": 184801759,
+ "averageApexExecutionNano": 59769613,
+ "shortestApexExecutionNano": 8367105,
+ "longestApexExecutionNano": 131497927
+ },
+ {
+ "batchNumber": 6479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37212",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133212484,
+ "shortestRoundTripNano": 45043645,
+ "longestRoundTripNano": 159559929,
+ "averageApexExecutionNano": 39994420,
+ "shortestApexExecutionNano": 5589537,
+ "longestApexExecutionNano": 97929371
+ },
+ {
+ "batchNumber": 6480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169091531,
+ "shortestRoundTripNano": 86790220,
+ "longestRoundTripNano": 209008461,
+ "averageApexExecutionNano": 79438343,
+ "shortestApexExecutionNano": 14866591,
+ "longestApexExecutionNano": 144271679
+ },
+ {
+ "batchNumber": 6481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183711347,
+ "shortestRoundTripNano": 97211138,
+ "longestRoundTripNano": 212877553,
+ "averageApexExecutionNano": 90564260,
+ "shortestApexExecutionNano": 23760282,
+ "longestApexExecutionNano": 161641997
+ },
+ {
+ "batchNumber": 6482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155674027,
+ "shortestRoundTripNano": 85864730,
+ "longestRoundTripNano": 182386398,
+ "averageApexExecutionNano": 66342198,
+ "shortestApexExecutionNano": 17108216,
+ "longestApexExecutionNano": 124864133
+ },
+ {
+ "batchNumber": 6483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125355438,
+ "shortestRoundTripNano": 52540478,
+ "longestRoundTripNano": 154347327,
+ "averageApexExecutionNano": 52464754,
+ "shortestApexExecutionNano": 7098794,
+ "longestApexExecutionNano": 105593609
+ },
+ {
+ "batchNumber": 6484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143327416,
+ "shortestRoundTripNano": 63422169,
+ "longestRoundTripNano": 167734476,
+ "averageApexExecutionNano": 45379835,
+ "shortestApexExecutionNano": 7009169,
+ "longestApexExecutionNano": 117170127
+ },
+ {
+ "batchNumber": 6485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143339927,
+ "shortestRoundTripNano": 74857185,
+ "longestRoundTripNano": 172722177,
+ "averageApexExecutionNano": 63221357,
+ "shortestApexExecutionNano": 8305165,
+ "longestApexExecutionNano": 116853459
+ },
+ {
+ "batchNumber": 6486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164121062,
+ "shortestRoundTripNano": 45521094,
+ "longestRoundTripNano": 192797928,
+ "averageApexExecutionNano": 72821667,
+ "shortestApexExecutionNano": 10376649,
+ "longestApexExecutionNano": 148936308
+ },
+ {
+ "batchNumber": 6487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150935826,
+ "shortestRoundTripNano": 69846073,
+ "longestRoundTripNano": 184698054,
+ "averageApexExecutionNano": 47501013,
+ "shortestApexExecutionNano": 7112499,
+ "longestApexExecutionNano": 106183584
+ },
+ {
+ "batchNumber": 6488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149988452,
+ "shortestRoundTripNano": 75652209,
+ "longestRoundTripNano": 173539900,
+ "averageApexExecutionNano": 65760978,
+ "shortestApexExecutionNano": 6457689,
+ "longestApexExecutionNano": 120296759
+ },
+ {
+ "batchNumber": 6489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157153772,
+ "shortestRoundTripNano": 46815648,
+ "longestRoundTripNano": 192492510,
+ "averageApexExecutionNano": 66408611,
+ "shortestApexExecutionNano": 10757432,
+ "longestApexExecutionNano": 134789674
+ },
+ {
+ "batchNumber": 6490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37210",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173024849,
+ "shortestRoundTripNano": 60487594,
+ "longestRoundTripNano": 220013951,
+ "averageApexExecutionNano": 91153886,
+ "shortestApexExecutionNano": 8215760,
+ "longestApexExecutionNano": 156090328
+ },
+ {
+ "batchNumber": 6491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163191647,
+ "shortestRoundTripNano": 79298823,
+ "longestRoundTripNano": 197958090,
+ "averageApexExecutionNano": 69518802,
+ "shortestApexExecutionNano": 8111156,
+ "longestApexExecutionNano": 136824753
+ },
+ {
+ "batchNumber": 6492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134478337,
+ "shortestRoundTripNano": 47325999,
+ "longestRoundTripNano": 161361224,
+ "averageApexExecutionNano": 53873847,
+ "shortestApexExecutionNano": 7102392,
+ "longestApexExecutionNano": 117852246
+ },
+ {
+ "batchNumber": 6493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146860346,
+ "shortestRoundTripNano": 77989643,
+ "longestRoundTripNano": 170261746,
+ "averageApexExecutionNano": 62685287,
+ "shortestApexExecutionNano": 7295423,
+ "longestApexExecutionNano": 118885529
+ },
+ {
+ "batchNumber": 6494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37216",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 209743980,
+ "shortestRoundTripNano": 57799942,
+ "longestRoundTripNano": 240805291,
+ "averageApexExecutionNano": 95922842,
+ "shortestApexExecutionNano": 8092758,
+ "longestApexExecutionNano": 183571223
+ },
+ {
+ "batchNumber": 6495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144196943,
+ "shortestRoundTripNano": 38805543,
+ "longestRoundTripNano": 171334512,
+ "averageApexExecutionNano": 56989219,
+ "shortestApexExecutionNano": 8526180,
+ "longestApexExecutionNano": 122201532
+ },
+ {
+ "batchNumber": 6496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134677383,
+ "shortestRoundTripNano": 67446450,
+ "longestRoundTripNano": 165648070,
+ "averageApexExecutionNano": 49529151,
+ "shortestApexExecutionNano": 6783227,
+ "longestApexExecutionNano": 122162191
+ },
+ {
+ "batchNumber": 6497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160716867,
+ "shortestRoundTripNano": 51223103,
+ "longestRoundTripNano": 195262100,
+ "averageApexExecutionNano": 78364942,
+ "shortestApexExecutionNano": 14164626,
+ "longestApexExecutionNano": 137877299
+ },
+ {
+ "batchNumber": 6498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37220",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136564634,
+ "shortestRoundTripNano": 49690905,
+ "longestRoundTripNano": 163264237,
+ "averageApexExecutionNano": 64323439,
+ "shortestApexExecutionNano": 13085142,
+ "longestApexExecutionNano": 122707674
+ },
+ {
+ "batchNumber": 6499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157788569,
+ "shortestRoundTripNano": 65808143,
+ "longestRoundTripNano": 188668546,
+ "averageApexExecutionNano": 68493139,
+ "shortestApexExecutionNano": 10612077,
+ "longestApexExecutionNano": 140347948
+ },
+ {
+ "batchNumber": 6500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148328173,
+ "shortestRoundTripNano": 56861960,
+ "longestRoundTripNano": 188405244,
+ "averageApexExecutionNano": 49125586,
+ "shortestApexExecutionNano": 6841360,
+ "longestApexExecutionNano": 103276465
+ },
+ {
+ "batchNumber": 6501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37220",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123741051,
+ "shortestRoundTripNano": 43566741,
+ "longestRoundTripNano": 153785583,
+ "averageApexExecutionNano": 42885067,
+ "shortestApexExecutionNano": 8293719,
+ "longestApexExecutionNano": 104605361
+ },
+ {
+ "batchNumber": 6502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128558374,
+ "shortestRoundTripNano": 67306417,
+ "longestRoundTripNano": 154292502,
+ "averageApexExecutionNano": 60904193,
+ "shortestApexExecutionNano": 8064339,
+ "longestApexExecutionNano": 110352510
+ },
+ {
+ "batchNumber": 6503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135139205,
+ "shortestRoundTripNano": 55285739,
+ "longestRoundTripNano": 162972461,
+ "averageApexExecutionNano": 50735222,
+ "shortestApexExecutionNano": 9504513,
+ "longestApexExecutionNano": 117169164
+ },
+ {
+ "batchNumber": 6504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147032690,
+ "shortestRoundTripNano": 56427877,
+ "longestRoundTripNano": 180001408,
+ "averageApexExecutionNano": 46639090,
+ "shortestApexExecutionNano": 10813827,
+ "longestApexExecutionNano": 106343856
+ },
+ {
+ "batchNumber": 6505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37218",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157620264,
+ "shortestRoundTripNano": 59333577,
+ "longestRoundTripNano": 195725287,
+ "averageApexExecutionNano": 72490011,
+ "shortestApexExecutionNano": 8490935,
+ "longestApexExecutionNano": 138252627
+ },
+ {
+ "batchNumber": 6506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140192068,
+ "shortestRoundTripNano": 74280866,
+ "longestRoundTripNano": 171258650,
+ "averageApexExecutionNano": 54083615,
+ "shortestApexExecutionNano": 10481709,
+ "longestApexExecutionNano": 128717055
+ },
+ {
+ "batchNumber": 6507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150633302,
+ "shortestRoundTripNano": 65201829,
+ "longestRoundTripNano": 184163488,
+ "averageApexExecutionNano": 51472613,
+ "shortestApexExecutionNano": 9672163,
+ "longestApexExecutionNano": 102711932
+ },
+ {
+ "batchNumber": 6508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37222",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147692414,
+ "shortestRoundTripNano": 58051148,
+ "longestRoundTripNano": 179489091,
+ "averageApexExecutionNano": 66364592,
+ "shortestApexExecutionNano": 6962637,
+ "longestApexExecutionNano": 138512096
+ },
+ {
+ "batchNumber": 6509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152757855,
+ "shortestRoundTripNano": 82981625,
+ "longestRoundTripNano": 179713125,
+ "averageApexExecutionNano": 72091081,
+ "shortestApexExecutionNano": 4632403,
+ "longestApexExecutionNano": 133207874
+ },
+ {
+ "batchNumber": 6510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146748909,
+ "shortestRoundTripNano": 54784973,
+ "longestRoundTripNano": 177208695,
+ "averageApexExecutionNano": 60410370,
+ "shortestApexExecutionNano": 8152067,
+ "longestApexExecutionNano": 127375958
+ },
+ {
+ "batchNumber": 6511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137159845,
+ "shortestRoundTripNano": 68229429,
+ "longestRoundTripNano": 161431420,
+ "averageApexExecutionNano": 63082763,
+ "shortestApexExecutionNano": 11286020,
+ "longestApexExecutionNano": 131991028
+ },
+ {
+ "batchNumber": 6512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130527113,
+ "shortestRoundTripNano": 62859273,
+ "longestRoundTripNano": 160144916,
+ "averageApexExecutionNano": 58987911,
+ "shortestApexExecutionNano": 6651436,
+ "longestApexExecutionNano": 109014694
+ },
+ {
+ "batchNumber": 6513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132741066,
+ "shortestRoundTripNano": 48976032,
+ "longestRoundTripNano": 167534267,
+ "averageApexExecutionNano": 58551715,
+ "shortestApexExecutionNano": 7315535,
+ "longestApexExecutionNano": 115226487
+ },
+ {
+ "batchNumber": 6514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145522368,
+ "shortestRoundTripNano": 52237295,
+ "longestRoundTripNano": 172702641,
+ "averageApexExecutionNano": 57513931,
+ "shortestApexExecutionNano": 6160466,
+ "longestApexExecutionNano": 131534918
+ },
+ {
+ "batchNumber": 6515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37224",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151155241,
+ "shortestRoundTripNano": 45401688,
+ "longestRoundTripNano": 183323023,
+ "averageApexExecutionNano": 69823052,
+ "shortestApexExecutionNano": 8652623,
+ "longestApexExecutionNano": 133600928
+ },
+ {
+ "batchNumber": 6516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136084988,
+ "shortestRoundTripNano": 60590762,
+ "longestRoundTripNano": 160986172,
+ "averageApexExecutionNano": 54596789,
+ "shortestApexExecutionNano": 13018033,
+ "longestApexExecutionNano": 110136933
+ },
+ {
+ "batchNumber": 6517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140213072,
+ "shortestRoundTripNano": 75113460,
+ "longestRoundTripNano": 164907285,
+ "averageApexExecutionNano": 50678074,
+ "shortestApexExecutionNano": 8163706,
+ "longestApexExecutionNano": 99499919
+ },
+ {
+ "batchNumber": 6518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155400359,
+ "shortestRoundTripNano": 74680360,
+ "longestRoundTripNano": 181712733,
+ "averageApexExecutionNano": 60994132,
+ "shortestApexExecutionNano": 10540796,
+ "longestApexExecutionNano": 119980244
+ },
+ {
+ "batchNumber": 6519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129383835,
+ "shortestRoundTripNano": 61222259,
+ "longestRoundTripNano": 155614385,
+ "averageApexExecutionNano": 56510996,
+ "shortestApexExecutionNano": 7342499,
+ "longestApexExecutionNano": 101637185
+ },
+ {
+ "batchNumber": 6520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132890180,
+ "shortestRoundTripNano": 68033373,
+ "longestRoundTripNano": 163313184,
+ "averageApexExecutionNano": 53660273,
+ "shortestApexExecutionNano": 12262011,
+ "longestApexExecutionNano": 109504266
+ },
+ {
+ "batchNumber": 6521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159198787,
+ "shortestRoundTripNano": 41828816,
+ "longestRoundTripNano": 190229808,
+ "averageApexExecutionNano": 80890489,
+ "shortestApexExecutionNano": 14999947,
+ "longestApexExecutionNano": 138244155
+ },
+ {
+ "batchNumber": 6522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138569522,
+ "shortestRoundTripNano": 58983755,
+ "longestRoundTripNano": 166764665,
+ "averageApexExecutionNano": 51707590,
+ "shortestApexExecutionNano": 5955025,
+ "longestApexExecutionNano": 97301190
+ },
+ {
+ "batchNumber": 6523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37228",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158696019,
+ "shortestRoundTripNano": 86029624,
+ "longestRoundTripNano": 181361273,
+ "averageApexExecutionNano": 93324965,
+ "shortestApexExecutionNano": 7086197,
+ "longestApexExecutionNano": 135947403
+ },
+ {
+ "batchNumber": 6524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136960975,
+ "shortestRoundTripNano": 62624978,
+ "longestRoundTripNano": 165634195,
+ "averageApexExecutionNano": 57811117,
+ "shortestApexExecutionNano": 6917304,
+ "longestApexExecutionNano": 106201756
+ },
+ {
+ "batchNumber": 6525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141307099,
+ "shortestRoundTripNano": 62444786,
+ "longestRoundTripNano": 175390061,
+ "averageApexExecutionNano": 65731427,
+ "shortestApexExecutionNano": 7564634,
+ "longestApexExecutionNano": 125062623
+ },
+ {
+ "batchNumber": 6526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37226",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131756944,
+ "shortestRoundTripNano": 53030174,
+ "longestRoundTripNano": 160116480,
+ "averageApexExecutionNano": 50997124,
+ "shortestApexExecutionNano": 4971225,
+ "longestApexExecutionNano": 110795745
+ },
+ {
+ "batchNumber": 6527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148271424,
+ "shortestRoundTripNano": 53662422,
+ "longestRoundTripNano": 183253432,
+ "averageApexExecutionNano": 66320939,
+ "shortestApexExecutionNano": 9295499,
+ "longestApexExecutionNano": 126411077
+ },
+ {
+ "batchNumber": 6528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128183610,
+ "shortestRoundTripNano": 48872172,
+ "longestRoundTripNano": 164175853,
+ "averageApexExecutionNano": 44219452,
+ "shortestApexExecutionNano": 6695152,
+ "longestApexExecutionNano": 122881935
+ },
+ {
+ "batchNumber": 6529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159070835,
+ "shortestRoundTripNano": 80410349,
+ "longestRoundTripNano": 184929391,
+ "averageApexExecutionNano": 71633502,
+ "shortestApexExecutionNano": 9538036,
+ "longestApexExecutionNano": 137042810
+ },
+ {
+ "batchNumber": 6530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145201003,
+ "shortestRoundTripNano": 71152328,
+ "longestRoundTripNano": 178865766,
+ "averageApexExecutionNano": 63022387,
+ "shortestApexExecutionNano": 7228474,
+ "longestApexExecutionNano": 125470759
+ },
+ {
+ "batchNumber": 6531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121778439,
+ "shortestRoundTripNano": 46641992,
+ "longestRoundTripNano": 154262185,
+ "averageApexExecutionNano": 49839911,
+ "shortestApexExecutionNano": 5672894,
+ "longestApexExecutionNano": 95587507
+ },
+ {
+ "batchNumber": 6532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147347734,
+ "shortestRoundTripNano": 71063812,
+ "longestRoundTripNano": 177651474,
+ "averageApexExecutionNano": 65468802,
+ "shortestApexExecutionNano": 9862626,
+ "longestApexExecutionNano": 129718568
+ },
+ {
+ "batchNumber": 6533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152364665,
+ "shortestRoundTripNano": 82042707,
+ "longestRoundTripNano": 176736386,
+ "averageApexExecutionNano": 68305323,
+ "shortestApexExecutionNano": 7258931,
+ "longestApexExecutionNano": 126500123
+ },
+ {
+ "batchNumber": 6534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162009493,
+ "shortestRoundTripNano": 57652159,
+ "longestRoundTripNano": 190206582,
+ "averageApexExecutionNano": 70299085,
+ "shortestApexExecutionNano": 14453612,
+ "longestApexExecutionNano": 131300974
+ },
+ {
+ "batchNumber": 6535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147586990,
+ "shortestRoundTripNano": 73319241,
+ "longestRoundTripNano": 182283698,
+ "averageApexExecutionNano": 47129208,
+ "shortestApexExecutionNano": 8831962,
+ "longestApexExecutionNano": 112717268
+ },
+ {
+ "batchNumber": 6536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 238033645,
+ "shortestRoundTripNano": 56440839,
+ "longestRoundTripNano": 270475405,
+ "averageApexExecutionNano": 112153213,
+ "shortestApexExecutionNano": 7804453,
+ "longestApexExecutionNano": 235930433
+ },
+ {
+ "batchNumber": 6537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37234",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154243589,
+ "shortestRoundTripNano": 79122148,
+ "longestRoundTripNano": 181633365,
+ "averageApexExecutionNano": 76818791,
+ "shortestApexExecutionNano": 9243292,
+ "longestApexExecutionNano": 140691631
+ },
+ {
+ "batchNumber": 6538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140140337,
+ "shortestRoundTripNano": 75505595,
+ "longestRoundTripNano": 165617528,
+ "averageApexExecutionNano": 66355747,
+ "shortestApexExecutionNano": 6989176,
+ "longestApexExecutionNano": 129536547
+ },
+ {
+ "batchNumber": 6539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170060174,
+ "shortestRoundTripNano": 70198851,
+ "longestRoundTripNano": 212905548,
+ "averageApexExecutionNano": 60705736,
+ "shortestApexExecutionNano": 6324107,
+ "longestApexExecutionNano": 121030769
+ },
+ {
+ "batchNumber": 6540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148190093,
+ "shortestRoundTripNano": 73778917,
+ "longestRoundTripNano": 176874702,
+ "averageApexExecutionNano": 61797436,
+ "shortestApexExecutionNano": 5064250,
+ "longestApexExecutionNano": 125259241
+ },
+ {
+ "batchNumber": 6541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37230",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148799973,
+ "shortestRoundTripNano": 67074818,
+ "longestRoundTripNano": 177686774,
+ "averageApexExecutionNano": 71590441,
+ "shortestApexExecutionNano": 7087451,
+ "longestApexExecutionNano": 132997572
+ },
+ {
+ "batchNumber": 6542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139379176,
+ "shortestRoundTripNano": 64429241,
+ "longestRoundTripNano": 172723510,
+ "averageApexExecutionNano": 53351197,
+ "shortestApexExecutionNano": 8536313,
+ "longestApexExecutionNano": 99888919
+ },
+ {
+ "batchNumber": 6543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145790359,
+ "shortestRoundTripNano": 38976759,
+ "longestRoundTripNano": 175028444,
+ "averageApexExecutionNano": 71174820,
+ "shortestApexExecutionNano": 9269379,
+ "longestApexExecutionNano": 129298464
+ },
+ {
+ "batchNumber": 6544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135725469,
+ "shortestRoundTripNano": 69697371,
+ "longestRoundTripNano": 169967954,
+ "averageApexExecutionNano": 62973813,
+ "shortestApexExecutionNano": 9331084,
+ "longestApexExecutionNano": 117247877
+ },
+ {
+ "batchNumber": 6545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146398349,
+ "shortestRoundTripNano": 59355363,
+ "longestRoundTripNano": 171480141,
+ "averageApexExecutionNano": 53374462,
+ "shortestApexExecutionNano": 6223727,
+ "longestApexExecutionNano": 110785938
+ },
+ {
+ "batchNumber": 6546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154789631,
+ "shortestRoundTripNano": 73251141,
+ "longestRoundTripNano": 181522002,
+ "averageApexExecutionNano": 64514984,
+ "shortestApexExecutionNano": 11989101,
+ "longestApexExecutionNano": 131324559
+ },
+ {
+ "batchNumber": 6547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151442025,
+ "shortestRoundTripNano": 63242185,
+ "longestRoundTripNano": 183720408,
+ "averageApexExecutionNano": 65193293,
+ "shortestApexExecutionNano": 12446493,
+ "longestApexExecutionNano": 120635656
+ },
+ {
+ "batchNumber": 6548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132204928,
+ "shortestRoundTripNano": 53030120,
+ "longestRoundTripNano": 156029077,
+ "averageApexExecutionNano": 65114824,
+ "shortestApexExecutionNano": 6983969,
+ "longestApexExecutionNano": 120398624
+ },
+ {
+ "batchNumber": 6549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130933279,
+ "shortestRoundTripNano": 67392713,
+ "longestRoundTripNano": 161736283,
+ "averageApexExecutionNano": 39777354,
+ "shortestApexExecutionNano": 7556864,
+ "longestApexExecutionNano": 128544603
+ },
+ {
+ "batchNumber": 6550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37236",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154885003,
+ "shortestRoundTripNano": 46596472,
+ "longestRoundTripNano": 184411532,
+ "averageApexExecutionNano": 65034298,
+ "shortestApexExecutionNano": 6901980,
+ "longestApexExecutionNano": 111052871
+ },
+ {
+ "batchNumber": 6551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156309577,
+ "shortestRoundTripNano": 52979817,
+ "longestRoundTripNano": 190134466,
+ "averageApexExecutionNano": 63353911,
+ "shortestApexExecutionNano": 9924358,
+ "longestApexExecutionNano": 132974267
+ },
+ {
+ "batchNumber": 6552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137835667,
+ "shortestRoundTripNano": 70698596,
+ "longestRoundTripNano": 171010053,
+ "averageApexExecutionNano": 75682870,
+ "shortestApexExecutionNano": 7857283,
+ "longestApexExecutionNano": 125603821
+ },
+ {
+ "batchNumber": 6553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37240",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168965313,
+ "shortestRoundTripNano": 65415157,
+ "longestRoundTripNano": 199941013,
+ "averageApexExecutionNano": 67398465,
+ "shortestApexExecutionNano": 8823418,
+ "longestApexExecutionNano": 127252940
+ },
+ {
+ "batchNumber": 6554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155999945,
+ "shortestRoundTripNano": 66017458,
+ "longestRoundTripNano": 181343986,
+ "averageApexExecutionNano": 72939688,
+ "shortestApexExecutionNano": 12121166,
+ "longestApexExecutionNano": 119595369
+ },
+ {
+ "batchNumber": 6555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164481779,
+ "shortestRoundTripNano": 68299719,
+ "longestRoundTripNano": 195792526,
+ "averageApexExecutionNano": 60488545,
+ "shortestApexExecutionNano": 10964554,
+ "longestApexExecutionNano": 118186963
+ },
+ {
+ "batchNumber": 6556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139297720,
+ "shortestRoundTripNano": 62333879,
+ "longestRoundTripNano": 171532359,
+ "averageApexExecutionNano": 60864667,
+ "shortestApexExecutionNano": 8474456,
+ "longestApexExecutionNano": 127893148
+ },
+ {
+ "batchNumber": 6557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135886930,
+ "shortestRoundTripNano": 56163022,
+ "longestRoundTripNano": 167596502,
+ "averageApexExecutionNano": 66297985,
+ "shortestApexExecutionNano": 8482692,
+ "longestApexExecutionNano": 115823484
+ },
+ {
+ "batchNumber": 6558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37242",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152767360,
+ "shortestRoundTripNano": 58894414,
+ "longestRoundTripNano": 183200214,
+ "averageApexExecutionNano": 62508411,
+ "shortestApexExecutionNano": 5991203,
+ "longestApexExecutionNano": 138500727
+ },
+ {
+ "batchNumber": 6559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121281547,
+ "shortestRoundTripNano": 62681373,
+ "longestRoundTripNano": 154927885,
+ "averageApexExecutionNano": 49181241,
+ "shortestApexExecutionNano": 5684334,
+ "longestApexExecutionNano": 113109740
+ },
+ {
+ "batchNumber": 6560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168022936,
+ "shortestRoundTripNano": 80394607,
+ "longestRoundTripNano": 223878682,
+ "averageApexExecutionNano": 66164797,
+ "shortestApexExecutionNano": 15688319,
+ "longestApexExecutionNano": 139603408
+ },
+ {
+ "batchNumber": 6561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166199725,
+ "shortestRoundTripNano": 67940055,
+ "longestRoundTripNano": 192706487,
+ "averageApexExecutionNano": 67466914,
+ "shortestApexExecutionNano": 10393822,
+ "longestApexExecutionNano": 130767035
+ },
+ {
+ "batchNumber": 6562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160587171,
+ "shortestRoundTripNano": 60424739,
+ "longestRoundTripNano": 205453249,
+ "averageApexExecutionNano": 74787257,
+ "shortestApexExecutionNano": 9245502,
+ "longestApexExecutionNano": 133034433
+ },
+ {
+ "batchNumber": 6563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133669916,
+ "shortestRoundTripNano": 61604714,
+ "longestRoundTripNano": 158734503,
+ "averageApexExecutionNano": 50010961,
+ "shortestApexExecutionNano": 8719196,
+ "longestApexExecutionNano": 113684328
+ },
+ {
+ "batchNumber": 6564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37244",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159979502,
+ "shortestRoundTripNano": 54122190,
+ "longestRoundTripNano": 192246247,
+ "averageApexExecutionNano": 60122512,
+ "shortestApexExecutionNano": 9603733,
+ "longestApexExecutionNano": 152646900
+ },
+ {
+ "batchNumber": 6565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168315044,
+ "shortestRoundTripNano": 97955706,
+ "longestRoundTripNano": 191444325,
+ "averageApexExecutionNano": 65600229,
+ "shortestApexExecutionNano": 6298057,
+ "longestApexExecutionNano": 143113356
+ },
+ {
+ "batchNumber": 6566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167517280,
+ "shortestRoundTripNano": 72508390,
+ "longestRoundTripNano": 195041979,
+ "averageApexExecutionNano": 70099089,
+ "shortestApexExecutionNano": 11416168,
+ "longestApexExecutionNano": 146616801
+ },
+ {
+ "batchNumber": 6567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171440329,
+ "shortestRoundTripNano": 97273748,
+ "longestRoundTripNano": 194433586,
+ "averageApexExecutionNano": 78152254,
+ "shortestApexExecutionNano": 25446323,
+ "longestApexExecutionNano": 135054264
+ },
+ {
+ "batchNumber": 6568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141920953,
+ "shortestRoundTripNano": 60375228,
+ "longestRoundTripNano": 174297208,
+ "averageApexExecutionNano": 54475838,
+ "shortestApexExecutionNano": 6992073,
+ "longestApexExecutionNano": 127788004
+ },
+ {
+ "batchNumber": 6569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137822961,
+ "shortestRoundTripNano": 46698137,
+ "longestRoundTripNano": 164478521,
+ "averageApexExecutionNano": 47790266,
+ "shortestApexExecutionNano": 8130439,
+ "longestApexExecutionNano": 101747830
+ },
+ {
+ "batchNumber": 6570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170541584,
+ "shortestRoundTripNano": 74501425,
+ "longestRoundTripNano": 215868607,
+ "averageApexExecutionNano": 71613237,
+ "shortestApexExecutionNano": 8239136,
+ "longestApexExecutionNano": 130169205
+ },
+ {
+ "batchNumber": 6571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170608421,
+ "shortestRoundTripNano": 87974496,
+ "longestRoundTripNano": 192800886,
+ "averageApexExecutionNano": 57905855,
+ "shortestApexExecutionNano": 8243093,
+ "longestApexExecutionNano": 132344264
+ },
+ {
+ "batchNumber": 6572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150691282,
+ "shortestRoundTripNano": 65640650,
+ "longestRoundTripNano": 188604977,
+ "averageApexExecutionNano": 53988488,
+ "shortestApexExecutionNano": 6021056,
+ "longestApexExecutionNano": 143654058
+ },
+ {
+ "batchNumber": 6573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151818554,
+ "shortestRoundTripNano": 70458815,
+ "longestRoundTripNano": 176822176,
+ "averageApexExecutionNano": 67227045,
+ "shortestApexExecutionNano": 10062389,
+ "longestApexExecutionNano": 130486097
+ },
+ {
+ "batchNumber": 6574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37246",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156323364,
+ "shortestRoundTripNano": 49045635,
+ "longestRoundTripNano": 188876989,
+ "averageApexExecutionNano": 76403654,
+ "shortestApexExecutionNano": 8678710,
+ "longestApexExecutionNano": 142046419
+ },
+ {
+ "batchNumber": 6575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161354270,
+ "shortestRoundTripNano": 72793239,
+ "longestRoundTripNano": 198468655,
+ "averageApexExecutionNano": 47596688,
+ "shortestApexExecutionNano": 5958170,
+ "longestApexExecutionNano": 136699986
+ },
+ {
+ "batchNumber": 6576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159390783,
+ "shortestRoundTripNano": 86758295,
+ "longestRoundTripNano": 202400463,
+ "averageApexExecutionNano": 72695145,
+ "shortestApexExecutionNano": 7926386,
+ "longestApexExecutionNano": 130176756
+ },
+ {
+ "batchNumber": 6577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143178756,
+ "shortestRoundTripNano": 67196699,
+ "longestRoundTripNano": 170489715,
+ "averageApexExecutionNano": 61151919,
+ "shortestApexExecutionNano": 7995160,
+ "longestApexExecutionNano": 126091334
+ },
+ {
+ "batchNumber": 6578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37250",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 191908714,
+ "shortestRoundTripNano": 59254706,
+ "longestRoundTripNano": 221799070,
+ "averageApexExecutionNano": 78883641,
+ "shortestApexExecutionNano": 12527348,
+ "longestApexExecutionNano": 152481214
+ },
+ {
+ "batchNumber": 6579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140167272,
+ "shortestRoundTripNano": 73671535,
+ "longestRoundTripNano": 167667658,
+ "averageApexExecutionNano": 62894020,
+ "shortestApexExecutionNano": 7455037,
+ "longestApexExecutionNano": 126215772
+ },
+ {
+ "batchNumber": 6580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145026599,
+ "shortestRoundTripNano": 58647809,
+ "longestRoundTripNano": 168324351,
+ "averageApexExecutionNano": 70619086,
+ "shortestApexExecutionNano": 18708001,
+ "longestApexExecutionNano": 125350669
+ },
+ {
+ "batchNumber": 6581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158086748,
+ "shortestRoundTripNano": 70074973,
+ "longestRoundTripNano": 184888135,
+ "averageApexExecutionNano": 65512750,
+ "shortestApexExecutionNano": 8385909,
+ "longestApexExecutionNano": 142201914
+ },
+ {
+ "batchNumber": 6582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164544924,
+ "shortestRoundTripNano": 87354607,
+ "longestRoundTripNano": 197256993,
+ "averageApexExecutionNano": 59019906,
+ "shortestApexExecutionNano": 8804037,
+ "longestApexExecutionNano": 133327330
+ },
+ {
+ "batchNumber": 6583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159649845,
+ "shortestRoundTripNano": 86017725,
+ "longestRoundTripNano": 185032356,
+ "averageApexExecutionNano": 74170149,
+ "shortestApexExecutionNano": 12448131,
+ "longestApexExecutionNano": 138755731
+ },
+ {
+ "batchNumber": 6584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141193693,
+ "shortestRoundTripNano": 59444454,
+ "longestRoundTripNano": 167159442,
+ "averageApexExecutionNano": 64460646,
+ "shortestApexExecutionNano": 10892600,
+ "longestApexExecutionNano": 108948937
+ },
+ {
+ "batchNumber": 6585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137214098,
+ "shortestRoundTripNano": 38150658,
+ "longestRoundTripNano": 165400562,
+ "averageApexExecutionNano": 61172221,
+ "shortestApexExecutionNano": 9594269,
+ "longestApexExecutionNano": 112858897
+ },
+ {
+ "batchNumber": 6586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151140523,
+ "shortestRoundTripNano": 67454256,
+ "longestRoundTripNano": 187371387,
+ "averageApexExecutionNano": 60885773,
+ "shortestApexExecutionNano": 10070847,
+ "longestApexExecutionNano": 135392866
+ },
+ {
+ "batchNumber": 6587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146155200,
+ "shortestRoundTripNano": 36928641,
+ "longestRoundTripNano": 186351975,
+ "averageApexExecutionNano": 55153625,
+ "shortestApexExecutionNano": 8240999,
+ "longestApexExecutionNano": 108613342
+ },
+ {
+ "batchNumber": 6588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141469610,
+ "shortestRoundTripNano": 41272962,
+ "longestRoundTripNano": 176454586,
+ "averageApexExecutionNano": 53883802,
+ "shortestApexExecutionNano": 7920628,
+ "longestApexExecutionNano": 120999541
+ },
+ {
+ "batchNumber": 6589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154825934,
+ "shortestRoundTripNano": 62568382,
+ "longestRoundTripNano": 182043766,
+ "averageApexExecutionNano": 72036391,
+ "shortestApexExecutionNano": 8771805,
+ "longestApexExecutionNano": 139656562
+ },
+ {
+ "batchNumber": 6590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146888274,
+ "shortestRoundTripNano": 77968452,
+ "longestRoundTripNano": 186586235,
+ "averageApexExecutionNano": 44361061,
+ "shortestApexExecutionNano": 6753657,
+ "longestApexExecutionNano": 120616142
+ },
+ {
+ "batchNumber": 6591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133605656,
+ "shortestRoundTripNano": 43835385,
+ "longestRoundTripNano": 162663743,
+ "averageApexExecutionNano": 57384782,
+ "shortestApexExecutionNano": 6037051,
+ "longestApexExecutionNano": 105103461
+ },
+ {
+ "batchNumber": 6592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37252",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172900322,
+ "shortestRoundTripNano": 55469511,
+ "longestRoundTripNano": 206594977,
+ "averageApexExecutionNano": 81595710,
+ "shortestApexExecutionNano": 12129342,
+ "longestApexExecutionNano": 154294969
+ },
+ {
+ "batchNumber": 6593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158933736,
+ "shortestRoundTripNano": 78793510,
+ "longestRoundTripNano": 185971584,
+ "averageApexExecutionNano": 48392216,
+ "shortestApexExecutionNano": 5635291,
+ "longestApexExecutionNano": 133019132
+ },
+ {
+ "batchNumber": 6594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154091641,
+ "shortestRoundTripNano": 68660645,
+ "longestRoundTripNano": 181720382,
+ "averageApexExecutionNano": 71104696,
+ "shortestApexExecutionNano": 11313511,
+ "longestApexExecutionNano": 127497528
+ },
+ {
+ "batchNumber": 6595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155211990,
+ "shortestRoundTripNano": 71146763,
+ "longestRoundTripNano": 182240263,
+ "averageApexExecutionNano": 63680116,
+ "shortestApexExecutionNano": 8085564,
+ "longestApexExecutionNano": 121756190
+ },
+ {
+ "batchNumber": 6596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142490522,
+ "shortestRoundTripNano": 54523534,
+ "longestRoundTripNano": 177482295,
+ "averageApexExecutionNano": 48841351,
+ "shortestApexExecutionNano": 6852695,
+ "longestApexExecutionNano": 112688316
+ },
+ {
+ "batchNumber": 6597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155419598,
+ "shortestRoundTripNano": 81305197,
+ "longestRoundTripNano": 197174459,
+ "averageApexExecutionNano": 77244209,
+ "shortestApexExecutionNano": 8660743,
+ "longestApexExecutionNano": 160121603
+ },
+ {
+ "batchNumber": 6598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146402761,
+ "shortestRoundTripNano": 72403735,
+ "longestRoundTripNano": 173786495,
+ "averageApexExecutionNano": 63382532,
+ "shortestApexExecutionNano": 8973134,
+ "longestApexExecutionNano": 125678012
+ },
+ {
+ "batchNumber": 6599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37256",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146984034,
+ "shortestRoundTripNano": 51388892,
+ "longestRoundTripNano": 183434067,
+ "averageApexExecutionNano": 60754942,
+ "shortestApexExecutionNano": 6609758,
+ "longestApexExecutionNano": 127097945
+ },
+ {
+ "batchNumber": 6600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37258",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155967670,
+ "shortestRoundTripNano": 40115557,
+ "longestRoundTripNano": 185860569,
+ "averageApexExecutionNano": 68885035,
+ "shortestApexExecutionNano": 6350716,
+ "longestApexExecutionNano": 122037691
+ },
+ {
+ "batchNumber": 6601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37258",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162170139,
+ "shortestRoundTripNano": 79287785,
+ "longestRoundTripNano": 193847174,
+ "averageApexExecutionNano": 74150073,
+ "shortestApexExecutionNano": 6889811,
+ "longestApexExecutionNano": 145915457
+ },
+ {
+ "batchNumber": 6602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37258",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185029791,
+ "shortestRoundTripNano": 83195982,
+ "longestRoundTripNano": 241604115,
+ "averageApexExecutionNano": 106651652,
+ "shortestApexExecutionNano": 31452672,
+ "longestApexExecutionNano": 166677785
+ },
+ {
+ "batchNumber": 6603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144628920,
+ "shortestRoundTripNano": 82384807,
+ "longestRoundTripNano": 171974203,
+ "averageApexExecutionNano": 58008380,
+ "shortestApexExecutionNano": 7498124,
+ "longestApexExecutionNano": 125131760
+ },
+ {
+ "batchNumber": 6604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156897346,
+ "shortestRoundTripNano": 61651616,
+ "longestRoundTripNano": 185828866,
+ "averageApexExecutionNano": 63556501,
+ "shortestApexExecutionNano": 6026398,
+ "longestApexExecutionNano": 120400281
+ },
+ {
+ "batchNumber": 6605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137051822,
+ "shortestRoundTripNano": 51437871,
+ "longestRoundTripNano": 172447399,
+ "averageApexExecutionNano": 68354928,
+ "shortestApexExecutionNano": 5683805,
+ "longestApexExecutionNano": 130120738
+ },
+ {
+ "batchNumber": 6606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132345295,
+ "shortestRoundTripNano": 62642643,
+ "longestRoundTripNano": 161350176,
+ "averageApexExecutionNano": 61446526,
+ "shortestApexExecutionNano": 7593223,
+ "longestApexExecutionNano": 123959116
+ },
+ {
+ "batchNumber": 6607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150858636,
+ "shortestRoundTripNano": 57606974,
+ "longestRoundTripNano": 198512596,
+ "averageApexExecutionNano": 57486621,
+ "shortestApexExecutionNano": 5874300,
+ "longestApexExecutionNano": 120032492
+ },
+ {
+ "batchNumber": 6608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138249687,
+ "shortestRoundTripNano": 71668810,
+ "longestRoundTripNano": 168734597,
+ "averageApexExecutionNano": 61232553,
+ "shortestApexExecutionNano": 4660810,
+ "longestApexExecutionNano": 131899463
+ },
+ {
+ "batchNumber": 6609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145198835,
+ "shortestRoundTripNano": 64963919,
+ "longestRoundTripNano": 175776378,
+ "averageApexExecutionNano": 56190485,
+ "shortestApexExecutionNano": 11242318,
+ "longestApexExecutionNano": 108500712
+ },
+ {
+ "batchNumber": 6610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139027146,
+ "shortestRoundTripNano": 67398894,
+ "longestRoundTripNano": 162957556,
+ "averageApexExecutionNano": 61965977,
+ "shortestApexExecutionNano": 9811602,
+ "longestApexExecutionNano": 122972037
+ },
+ {
+ "batchNumber": 6611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154920029,
+ "shortestRoundTripNano": 70293718,
+ "longestRoundTripNano": 191824797,
+ "averageApexExecutionNano": 66275953,
+ "shortestApexExecutionNano": 6845988,
+ "longestApexExecutionNano": 155081196
+ },
+ {
+ "batchNumber": 6612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145500313,
+ "shortestRoundTripNano": 34397153,
+ "longestRoundTripNano": 167367359,
+ "averageApexExecutionNano": 67365273,
+ "shortestApexExecutionNano": 6984369,
+ "longestApexExecutionNano": 130483623
+ },
+ {
+ "batchNumber": 6613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142838477,
+ "shortestRoundTripNano": 47386478,
+ "longestRoundTripNano": 178479809,
+ "averageApexExecutionNano": 60765583,
+ "shortestApexExecutionNano": 11683582,
+ "longestApexExecutionNano": 124602359
+ },
+ {
+ "batchNumber": 6614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146018309,
+ "shortestRoundTripNano": 55544406,
+ "longestRoundTripNano": 183181740,
+ "averageApexExecutionNano": 75236118,
+ "shortestApexExecutionNano": 8806411,
+ "longestApexExecutionNano": 128179905
+ },
+ {
+ "batchNumber": 6615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159850701,
+ "shortestRoundTripNano": 60061542,
+ "longestRoundTripNano": 188160560,
+ "averageApexExecutionNano": 51833320,
+ "shortestApexExecutionNano": 7758064,
+ "longestApexExecutionNano": 134004228
+ },
+ {
+ "batchNumber": 6616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133784004,
+ "shortestRoundTripNano": 68345160,
+ "longestRoundTripNano": 158938642,
+ "averageApexExecutionNano": 54884937,
+ "shortestApexExecutionNano": 10877449,
+ "longestApexExecutionNano": 100003579
+ },
+ {
+ "batchNumber": 6617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179320710,
+ "shortestRoundTripNano": 112391361,
+ "longestRoundTripNano": 204384281,
+ "averageApexExecutionNano": 71357906,
+ "shortestApexExecutionNano": 10953140,
+ "longestApexExecutionNano": 117422307
+ },
+ {
+ "batchNumber": 6618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137835209,
+ "shortestRoundTripNano": 65097794,
+ "longestRoundTripNano": 167490500,
+ "averageApexExecutionNano": 50642240,
+ "shortestApexExecutionNano": 7703977,
+ "longestApexExecutionNano": 111897132
+ },
+ {
+ "batchNumber": 6619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154411685,
+ "shortestRoundTripNano": 85853530,
+ "longestRoundTripNano": 180669043,
+ "averageApexExecutionNano": 63264875,
+ "shortestApexExecutionNano": 14315612,
+ "longestApexExecutionNano": 109287852
+ },
+ {
+ "batchNumber": 6620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165715851,
+ "shortestRoundTripNano": 58211431,
+ "longestRoundTripNano": 195764240,
+ "averageApexExecutionNano": 76003375,
+ "shortestApexExecutionNano": 11035099,
+ "longestApexExecutionNano": 147464978
+ },
+ {
+ "batchNumber": 6621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139926438,
+ "shortestRoundTripNano": 53816622,
+ "longestRoundTripNano": 173756448,
+ "averageApexExecutionNano": 55791700,
+ "shortestApexExecutionNano": 7238287,
+ "longestApexExecutionNano": 129768749
+ },
+ {
+ "batchNumber": 6622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148675907,
+ "shortestRoundTripNano": 71642330,
+ "longestRoundTripNano": 176166944,
+ "averageApexExecutionNano": 66910632,
+ "shortestApexExecutionNano": 13522390,
+ "longestApexExecutionNano": 133749318
+ },
+ {
+ "batchNumber": 6623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157274141,
+ "shortestRoundTripNano": 64030275,
+ "longestRoundTripNano": 191862652,
+ "averageApexExecutionNano": 63539686,
+ "shortestApexExecutionNano": 12190247,
+ "longestApexExecutionNano": 138052161
+ },
+ {
+ "batchNumber": 6624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162298934,
+ "shortestRoundTripNano": 81407559,
+ "longestRoundTripNano": 185099265,
+ "averageApexExecutionNano": 67165395,
+ "shortestApexExecutionNano": 10785417,
+ "longestApexExecutionNano": 130833335
+ },
+ {
+ "batchNumber": 6625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155046972,
+ "shortestRoundTripNano": 60249310,
+ "longestRoundTripNano": 192979503,
+ "averageApexExecutionNano": 56287112,
+ "shortestApexExecutionNano": 7838452,
+ "longestApexExecutionNano": 139220262
+ },
+ {
+ "batchNumber": 6626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174509413,
+ "shortestRoundTripNano": 38384100,
+ "longestRoundTripNano": 207012812,
+ "averageApexExecutionNano": 85014671,
+ "shortestApexExecutionNano": 11615479,
+ "longestApexExecutionNano": 175081066
+ },
+ {
+ "batchNumber": 6627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37260",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140812179,
+ "shortestRoundTripNano": 60752526,
+ "longestRoundTripNano": 172022359,
+ "averageApexExecutionNano": 56155238,
+ "shortestApexExecutionNano": 7685945,
+ "longestApexExecutionNano": 126984542
+ },
+ {
+ "batchNumber": 6628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142743986,
+ "shortestRoundTripNano": 39578097,
+ "longestRoundTripNano": 169457581,
+ "averageApexExecutionNano": 60001562,
+ "shortestApexExecutionNano": 7444215,
+ "longestApexExecutionNano": 110837562
+ },
+ {
+ "batchNumber": 6629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152072150,
+ "shortestRoundTripNano": 64932593,
+ "longestRoundTripNano": 179898307,
+ "averageApexExecutionNano": 74074740,
+ "shortestApexExecutionNano": 23480483,
+ "longestApexExecutionNano": 127381854
+ },
+ {
+ "batchNumber": 6630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134874382,
+ "shortestRoundTripNano": 29136184,
+ "longestRoundTripNano": 169800298,
+ "averageApexExecutionNano": 56711757,
+ "shortestApexExecutionNano": 6623528,
+ "longestApexExecutionNano": 124827718
+ },
+ {
+ "batchNumber": 6631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134102344,
+ "shortestRoundTripNano": 64349762,
+ "longestRoundTripNano": 165042181,
+ "averageApexExecutionNano": 53708377,
+ "shortestApexExecutionNano": 5538057,
+ "longestApexExecutionNano": 110143109
+ },
+ {
+ "batchNumber": 6632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37270",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150599640,
+ "shortestRoundTripNano": 49473072,
+ "longestRoundTripNano": 183502243,
+ "averageApexExecutionNano": 57656611,
+ "shortestApexExecutionNano": 8145094,
+ "longestApexExecutionNano": 118402692
+ },
+ {
+ "batchNumber": 6633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131763284,
+ "shortestRoundTripNano": 48188959,
+ "longestRoundTripNano": 160813526,
+ "averageApexExecutionNano": 50255666,
+ "shortestApexExecutionNano": 10991792,
+ "longestApexExecutionNano": 116977435
+ },
+ {
+ "batchNumber": 6634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173425149,
+ "shortestRoundTripNano": 59335600,
+ "longestRoundTripNano": 214299765,
+ "averageApexExecutionNano": 85939343,
+ "shortestApexExecutionNano": 7979387,
+ "longestApexExecutionNano": 155392654
+ },
+ {
+ "batchNumber": 6635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162317740,
+ "shortestRoundTripNano": 84783709,
+ "longestRoundTripNano": 187264457,
+ "averageApexExecutionNano": 87153571,
+ "shortestApexExecutionNano": 6807706,
+ "longestApexExecutionNano": 147331647
+ },
+ {
+ "batchNumber": 6636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37272",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160733953,
+ "shortestRoundTripNano": 73602992,
+ "longestRoundTripNano": 187917139,
+ "averageApexExecutionNano": 80661796,
+ "shortestApexExecutionNano": 17921599,
+ "longestApexExecutionNano": 130455169
+ },
+ {
+ "batchNumber": 6637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131517582,
+ "shortestRoundTripNano": 42746388,
+ "longestRoundTripNano": 162090034,
+ "averageApexExecutionNano": 51475964,
+ "shortestApexExecutionNano": 7280719,
+ "longestApexExecutionNano": 108948211
+ },
+ {
+ "batchNumber": 6638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146236439,
+ "shortestRoundTripNano": 71415850,
+ "longestRoundTripNano": 174548847,
+ "averageApexExecutionNano": 62180991,
+ "shortestApexExecutionNano": 7166583,
+ "longestApexExecutionNano": 136542385
+ },
+ {
+ "batchNumber": 6639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181425947,
+ "shortestRoundTripNano": 63135460,
+ "longestRoundTripNano": 214765190,
+ "averageApexExecutionNano": 56368496,
+ "shortestApexExecutionNano": 7515614,
+ "longestApexExecutionNano": 128062564
+ },
+ {
+ "batchNumber": 6640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37274",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168556756,
+ "shortestRoundTripNano": 74879316,
+ "longestRoundTripNano": 196561066,
+ "averageApexExecutionNano": 71865308,
+ "shortestApexExecutionNano": 11062983,
+ "longestApexExecutionNano": 148553933
+ },
+ {
+ "batchNumber": 6641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149015030,
+ "shortestRoundTripNano": 62781763,
+ "longestRoundTripNano": 182004663,
+ "averageApexExecutionNano": 75227596,
+ "shortestApexExecutionNano": 15850301,
+ "longestApexExecutionNano": 125832455
+ },
+ {
+ "batchNumber": 6642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136327382,
+ "shortestRoundTripNano": 43232342,
+ "longestRoundTripNano": 175491070,
+ "averageApexExecutionNano": 52009450,
+ "shortestApexExecutionNano": 9037990,
+ "longestApexExecutionNano": 138046937
+ },
+ {
+ "batchNumber": 6643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155598862,
+ "shortestRoundTripNano": 66033688,
+ "longestRoundTripNano": 200243992,
+ "averageApexExecutionNano": 70112432,
+ "shortestApexExecutionNano": 10684395,
+ "longestApexExecutionNano": 146602321
+ },
+ {
+ "batchNumber": 6644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186441702,
+ "shortestRoundTripNano": 71874315,
+ "longestRoundTripNano": 214195230,
+ "averageApexExecutionNano": 87937752,
+ "shortestApexExecutionNano": 14838734,
+ "longestApexExecutionNano": 141012147
+ },
+ {
+ "batchNumber": 6645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157453486,
+ "shortestRoundTripNano": 76538355,
+ "longestRoundTripNano": 184117801,
+ "averageApexExecutionNano": 73880071,
+ "shortestApexExecutionNano": 16483055,
+ "longestApexExecutionNano": 125781885
+ },
+ {
+ "batchNumber": 6646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133212411,
+ "shortestRoundTripNano": 49848897,
+ "longestRoundTripNano": 165664745,
+ "averageApexExecutionNano": 50183063,
+ "shortestApexExecutionNano": 6579403,
+ "longestApexExecutionNano": 124100204
+ },
+ {
+ "batchNumber": 6647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127276506,
+ "shortestRoundTripNano": 74387836,
+ "longestRoundTripNano": 152254238,
+ "averageApexExecutionNano": 59841265,
+ "shortestApexExecutionNano": 8019623,
+ "longestApexExecutionNano": 106661004
+ },
+ {
+ "batchNumber": 6648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137195590,
+ "shortestRoundTripNano": 56720609,
+ "longestRoundTripNano": 163514895,
+ "averageApexExecutionNano": 54751382,
+ "shortestApexExecutionNano": 8204896,
+ "longestApexExecutionNano": 115025953
+ },
+ {
+ "batchNumber": 6649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135961327,
+ "shortestRoundTripNano": 62091314,
+ "longestRoundTripNano": 172703617,
+ "averageApexExecutionNano": 44043697,
+ "shortestApexExecutionNano": 5788299,
+ "longestApexExecutionNano": 118754298
+ },
+ {
+ "batchNumber": 6650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 186300336,
+ "shortestRoundTripNano": 61638455,
+ "longestRoundTripNano": 217969487,
+ "averageApexExecutionNano": 95054877,
+ "shortestApexExecutionNano": 14793717,
+ "longestApexExecutionNano": 175434844
+ },
+ {
+ "batchNumber": 6651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138721410,
+ "shortestRoundTripNano": 67538115,
+ "longestRoundTripNano": 166929352,
+ "averageApexExecutionNano": 54865174,
+ "shortestApexExecutionNano": 8332158,
+ "longestApexExecutionNano": 120914678
+ },
+ {
+ "batchNumber": 6652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143854986,
+ "shortestRoundTripNano": 63385159,
+ "longestRoundTripNano": 175738511,
+ "averageApexExecutionNano": 66581315,
+ "shortestApexExecutionNano": 6558483,
+ "longestApexExecutionNano": 129155824
+ },
+ {
+ "batchNumber": 6653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133178888,
+ "shortestRoundTripNano": 58180811,
+ "longestRoundTripNano": 170062563,
+ "averageApexExecutionNano": 55224674,
+ "shortestApexExecutionNano": 8142668,
+ "longestApexExecutionNano": 121575941
+ },
+ {
+ "batchNumber": 6654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37276",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120655822,
+ "shortestRoundTripNano": 58833763,
+ "longestRoundTripNano": 154932485,
+ "averageApexExecutionNano": 60729192,
+ "shortestApexExecutionNano": 8447470,
+ "longestApexExecutionNano": 109320973
+ },
+ {
+ "batchNumber": 6655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151985571,
+ "shortestRoundTripNano": 84027301,
+ "longestRoundTripNano": 173720216,
+ "averageApexExecutionNano": 53504733,
+ "shortestApexExecutionNano": 8607713,
+ "longestApexExecutionNano": 122385651
+ },
+ {
+ "batchNumber": 6656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37280",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166846719,
+ "shortestRoundTripNano": 56903923,
+ "longestRoundTripNano": 195997776,
+ "averageApexExecutionNano": 79749133,
+ "shortestApexExecutionNano": 10000376,
+ "longestApexExecutionNano": 133531247
+ },
+ {
+ "batchNumber": 6657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132554846,
+ "shortestRoundTripNano": 45349234,
+ "longestRoundTripNano": 164294469,
+ "averageApexExecutionNano": 54076244,
+ "shortestApexExecutionNano": 5267801,
+ "longestApexExecutionNano": 115267859
+ },
+ {
+ "batchNumber": 6658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156083242,
+ "shortestRoundTripNano": 67376563,
+ "longestRoundTripNano": 186718850,
+ "averageApexExecutionNano": 75373891,
+ "shortestApexExecutionNano": 16844390,
+ "longestApexExecutionNano": 129266277
+ },
+ {
+ "batchNumber": 6659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37284",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129917837,
+ "shortestRoundTripNano": 37676275,
+ "longestRoundTripNano": 157364834,
+ "averageApexExecutionNano": 47823919,
+ "shortestApexExecutionNano": 8281381,
+ "longestApexExecutionNano": 100842066
+ },
+ {
+ "batchNumber": 6660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169914659,
+ "shortestRoundTripNano": 84029263,
+ "longestRoundTripNano": 201953022,
+ "averageApexExecutionNano": 69932636,
+ "shortestApexExecutionNano": 15137396,
+ "longestApexExecutionNano": 152931203
+ },
+ {
+ "batchNumber": 6661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157238288,
+ "shortestRoundTripNano": 81831055,
+ "longestRoundTripNano": 188246200,
+ "averageApexExecutionNano": 56468125,
+ "shortestApexExecutionNano": 10132748,
+ "longestApexExecutionNano": 116229693
+ },
+ {
+ "batchNumber": 6662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141339065,
+ "shortestRoundTripNano": 85833329,
+ "longestRoundTripNano": 163530497,
+ "averageApexExecutionNano": 58687555,
+ "shortestApexExecutionNano": 8218279,
+ "longestApexExecutionNano": 110396460
+ },
+ {
+ "batchNumber": 6663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162505591,
+ "shortestRoundTripNano": 71903182,
+ "longestRoundTripNano": 194546159,
+ "averageApexExecutionNano": 69875792,
+ "shortestApexExecutionNano": 6386429,
+ "longestApexExecutionNano": 150966596
+ },
+ {
+ "batchNumber": 6664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146564204,
+ "shortestRoundTripNano": 58327987,
+ "longestRoundTripNano": 175432608,
+ "averageApexExecutionNano": 69099476,
+ "shortestApexExecutionNano": 9433517,
+ "longestApexExecutionNano": 121939262
+ },
+ {
+ "batchNumber": 6665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138014019,
+ "shortestRoundTripNano": 63834380,
+ "longestRoundTripNano": 166291268,
+ "averageApexExecutionNano": 62808115,
+ "shortestApexExecutionNano": 10247428,
+ "longestApexExecutionNano": 113222718
+ },
+ {
+ "batchNumber": 6666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37282",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174239275,
+ "shortestRoundTripNano": 73665875,
+ "longestRoundTripNano": 212055686,
+ "averageApexExecutionNano": 92901759,
+ "shortestApexExecutionNano": 13200487,
+ "longestApexExecutionNano": 169892927
+ },
+ {
+ "batchNumber": 6667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155343938,
+ "shortestRoundTripNano": 80576879,
+ "longestRoundTripNano": 174170241,
+ "averageApexExecutionNano": 59140405,
+ "shortestApexExecutionNano": 7351867,
+ "longestApexExecutionNano": 106307504
+ },
+ {
+ "batchNumber": 6668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139545315,
+ "shortestRoundTripNano": 68137474,
+ "longestRoundTripNano": 177323333,
+ "averageApexExecutionNano": 57271042,
+ "shortestApexExecutionNano": 15445103,
+ "longestApexExecutionNano": 104379827
+ },
+ {
+ "batchNumber": 6669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159623646,
+ "shortestRoundTripNano": 80571118,
+ "longestRoundTripNano": 178910003,
+ "averageApexExecutionNano": 75105384,
+ "shortestApexExecutionNano": 7012576,
+ "longestApexExecutionNano": 137608887
+ },
+ {
+ "batchNumber": 6670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122124502,
+ "shortestRoundTripNano": 62348094,
+ "longestRoundTripNano": 150689855,
+ "averageApexExecutionNano": 49320532,
+ "shortestApexExecutionNano": 5931379,
+ "longestApexExecutionNano": 104399533
+ },
+ {
+ "batchNumber": 6671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37286",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184528221,
+ "shortestRoundTripNano": 54053054,
+ "longestRoundTripNano": 209227862,
+ "averageApexExecutionNano": 65823464,
+ "shortestApexExecutionNano": 9605127,
+ "longestApexExecutionNano": 116924465
+ },
+ {
+ "batchNumber": 6672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140032749,
+ "shortestRoundTripNano": 74171652,
+ "longestRoundTripNano": 169572682,
+ "averageApexExecutionNano": 63496534,
+ "shortestApexExecutionNano": 9401581,
+ "longestApexExecutionNano": 129301888
+ },
+ {
+ "batchNumber": 6673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146429701,
+ "shortestRoundTripNano": 58944293,
+ "longestRoundTripNano": 173862340,
+ "averageApexExecutionNano": 62644998,
+ "shortestApexExecutionNano": 8247682,
+ "longestApexExecutionNano": 120169624
+ },
+ {
+ "batchNumber": 6674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158734283,
+ "shortestRoundTripNano": 74739383,
+ "longestRoundTripNano": 192795326,
+ "averageApexExecutionNano": 96073973,
+ "shortestApexExecutionNano": 31196855,
+ "longestApexExecutionNano": 158789503
+ },
+ {
+ "batchNumber": 6675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157517327,
+ "shortestRoundTripNano": 65701140,
+ "longestRoundTripNano": 193694226,
+ "averageApexExecutionNano": 72605435,
+ "shortestApexExecutionNano": 10552265,
+ "longestApexExecutionNano": 130616947
+ },
+ {
+ "batchNumber": 6676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37290",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156211836,
+ "shortestRoundTripNano": 62629629,
+ "longestRoundTripNano": 194410284,
+ "averageApexExecutionNano": 78062213,
+ "shortestApexExecutionNano": 8727481,
+ "longestApexExecutionNano": 158868002
+ },
+ {
+ "batchNumber": 6677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138623284,
+ "shortestRoundTripNano": 74721993,
+ "longestRoundTripNano": 162082615,
+ "averageApexExecutionNano": 50226446,
+ "shortestApexExecutionNano": 7232629,
+ "longestApexExecutionNano": 117683425
+ },
+ {
+ "batchNumber": 6678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148747528,
+ "shortestRoundTripNano": 67053879,
+ "longestRoundTripNano": 187825232,
+ "averageApexExecutionNano": 50754482,
+ "shortestApexExecutionNano": 8700603,
+ "longestApexExecutionNano": 123501473
+ },
+ {
+ "batchNumber": 6679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141303414,
+ "shortestRoundTripNano": 35111881,
+ "longestRoundTripNano": 190870468,
+ "averageApexExecutionNano": 53631594,
+ "shortestApexExecutionNano": 6856193,
+ "longestApexExecutionNano": 119795507
+ },
+ {
+ "batchNumber": 6680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134364174,
+ "shortestRoundTripNano": 72713936,
+ "longestRoundTripNano": 157307513,
+ "averageApexExecutionNano": 61332879,
+ "shortestApexExecutionNano": 8533909,
+ "longestApexExecutionNano": 115074319
+ },
+ {
+ "batchNumber": 6681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143349190,
+ "shortestRoundTripNano": 62338991,
+ "longestRoundTripNano": 170912064,
+ "averageApexExecutionNano": 64110610,
+ "shortestApexExecutionNano": 8682524,
+ "longestApexExecutionNano": 131471616
+ },
+ {
+ "batchNumber": 6682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37288",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 240555768,
+ "shortestRoundTripNano": 55463052,
+ "longestRoundTripNano": 273571783,
+ "averageApexExecutionNano": 118415154,
+ "shortestApexExecutionNano": 9934785,
+ "longestApexExecutionNano": 223112657
+ },
+ {
+ "batchNumber": 6683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37292",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143722094,
+ "shortestRoundTripNano": 71202752,
+ "longestRoundTripNano": 171514336,
+ "averageApexExecutionNano": 55758830,
+ "shortestApexExecutionNano": 8587591,
+ "longestApexExecutionNano": 114245817
+ },
+ {
+ "batchNumber": 6684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37292",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147350885,
+ "shortestRoundTripNano": 67532178,
+ "longestRoundTripNano": 175019307,
+ "averageApexExecutionNano": 64051147,
+ "shortestApexExecutionNano": 8734361,
+ "longestApexExecutionNano": 119998637
+ },
+ {
+ "batchNumber": 6685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155257902,
+ "shortestRoundTripNano": 85508169,
+ "longestRoundTripNano": 181891289,
+ "averageApexExecutionNano": 74205588,
+ "shortestApexExecutionNano": 10784697,
+ "longestApexExecutionNano": 126928748
+ },
+ {
+ "batchNumber": 6686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143431858,
+ "shortestRoundTripNano": 55716005,
+ "longestRoundTripNano": 168169054,
+ "averageApexExecutionNano": 50339961,
+ "shortestApexExecutionNano": 6115666,
+ "longestApexExecutionNano": 102335924
+ },
+ {
+ "batchNumber": 6687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132044693,
+ "shortestRoundTripNano": 67709826,
+ "longestRoundTripNano": 154672310,
+ "averageApexExecutionNano": 60869863,
+ "shortestApexExecutionNano": 13420547,
+ "longestApexExecutionNano": 107987507
+ },
+ {
+ "batchNumber": 6688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150246881,
+ "shortestRoundTripNano": 53815644,
+ "longestRoundTripNano": 187266357,
+ "averageApexExecutionNano": 64276606,
+ "shortestApexExecutionNano": 8422959,
+ "longestApexExecutionNano": 128338224
+ },
+ {
+ "batchNumber": 6689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150329186,
+ "shortestRoundTripNano": 77827208,
+ "longestRoundTripNano": 177223699,
+ "averageApexExecutionNano": 68289832,
+ "shortestApexExecutionNano": 7618108,
+ "longestApexExecutionNano": 125528843
+ },
+ {
+ "batchNumber": 6690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151379459,
+ "shortestRoundTripNano": 66347143,
+ "longestRoundTripNano": 185267209,
+ "averageApexExecutionNano": 63477199,
+ "shortestApexExecutionNano": 7269964,
+ "longestApexExecutionNano": 145355033
+ },
+ {
+ "batchNumber": 6691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157567170,
+ "shortestRoundTripNano": 82748643,
+ "longestRoundTripNano": 186373513,
+ "averageApexExecutionNano": 82757241,
+ "shortestApexExecutionNano": 10549131,
+ "longestApexExecutionNano": 128323797
+ },
+ {
+ "batchNumber": 6692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175388865,
+ "shortestRoundTripNano": 108023004,
+ "longestRoundTripNano": 210279783,
+ "averageApexExecutionNano": 70561665,
+ "shortestApexExecutionNano": 8340667,
+ "longestApexExecutionNano": 163706137
+ },
+ {
+ "batchNumber": 6693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121797875,
+ "shortestRoundTripNano": 48496168,
+ "longestRoundTripNano": 155048342,
+ "averageApexExecutionNano": 50394865,
+ "shortestApexExecutionNano": 5795577,
+ "longestApexExecutionNano": 106702874
+ },
+ {
+ "batchNumber": 6694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 182571294,
+ "shortestRoundTripNano": 96645423,
+ "longestRoundTripNano": 205513659,
+ "averageApexExecutionNano": 70257998,
+ "shortestApexExecutionNano": 11506205,
+ "longestApexExecutionNano": 159121369
+ },
+ {
+ "batchNumber": 6695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138186839,
+ "shortestRoundTripNano": 74995228,
+ "longestRoundTripNano": 167075885,
+ "averageApexExecutionNano": 66184739,
+ "shortestApexExecutionNano": 6335002,
+ "longestApexExecutionNano": 123174470
+ },
+ {
+ "batchNumber": 6696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135128966,
+ "shortestRoundTripNano": 60573269,
+ "longestRoundTripNano": 160108870,
+ "averageApexExecutionNano": 55045643,
+ "shortestApexExecutionNano": 10956416,
+ "longestApexExecutionNano": 104795749
+ },
+ {
+ "batchNumber": 6697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124273814,
+ "shortestRoundTripNano": 37440296,
+ "longestRoundTripNano": 149555915,
+ "averageApexExecutionNano": 54008149,
+ "shortestApexExecutionNano": 9902868,
+ "longestApexExecutionNano": 112276181
+ },
+ {
+ "batchNumber": 6698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138376690,
+ "shortestRoundTripNano": 69697578,
+ "longestRoundTripNano": 162531619,
+ "averageApexExecutionNano": 57239446,
+ "shortestApexExecutionNano": 9762925,
+ "longestApexExecutionNano": 126637381
+ },
+ {
+ "batchNumber": 6699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126322396,
+ "shortestRoundTripNano": 75728988,
+ "longestRoundTripNano": 151180923,
+ "averageApexExecutionNano": 54932499,
+ "shortestApexExecutionNano": 5257921,
+ "longestApexExecutionNano": 97931137
+ },
+ {
+ "batchNumber": 6700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152287734,
+ "shortestRoundTripNano": 79609251,
+ "longestRoundTripNano": 186303912,
+ "averageApexExecutionNano": 58378707,
+ "shortestApexExecutionNano": 6881840,
+ "longestApexExecutionNano": 128444793
+ },
+ {
+ "batchNumber": 6701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189684394,
+ "shortestRoundTripNano": 78020787,
+ "longestRoundTripNano": 232802348,
+ "averageApexExecutionNano": 115727035,
+ "shortestApexExecutionNano": 18325200,
+ "longestApexExecutionNano": 187461727
+ },
+ {
+ "batchNumber": 6702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131322806,
+ "shortestRoundTripNano": 61365387,
+ "longestRoundTripNano": 162551077,
+ "averageApexExecutionNano": 54861292,
+ "shortestApexExecutionNano": 5638072,
+ "longestApexExecutionNano": 130679658
+ },
+ {
+ "batchNumber": 6703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145917633,
+ "shortestRoundTripNano": 62343750,
+ "longestRoundTripNano": 177362092,
+ "averageApexExecutionNano": 44362026,
+ "shortestApexExecutionNano": 6064823,
+ "longestApexExecutionNano": 93169221
+ },
+ {
+ "batchNumber": 6704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147398317,
+ "shortestRoundTripNano": 70377203,
+ "longestRoundTripNano": 170844089,
+ "averageApexExecutionNano": 54331912,
+ "shortestApexExecutionNano": 8629580,
+ "longestApexExecutionNano": 121906781
+ },
+ {
+ "batchNumber": 6705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135743191,
+ "shortestRoundTripNano": 57249078,
+ "longestRoundTripNano": 169298485,
+ "averageApexExecutionNano": 56120135,
+ "shortestApexExecutionNano": 7498325,
+ "longestApexExecutionNano": 110096752
+ },
+ {
+ "batchNumber": 6706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37294",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155622694,
+ "shortestRoundTripNano": 66937921,
+ "longestRoundTripNano": 184897301,
+ "averageApexExecutionNano": 48771403,
+ "shortestApexExecutionNano": 7873969,
+ "longestApexExecutionNano": 103389010
+ },
+ {
+ "batchNumber": 6707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140861592,
+ "shortestRoundTripNano": 61615525,
+ "longestRoundTripNano": 180898895,
+ "averageApexExecutionNano": 53496128,
+ "shortestApexExecutionNano": 7499270,
+ "longestApexExecutionNano": 116508980
+ },
+ {
+ "batchNumber": 6708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173475104,
+ "shortestRoundTripNano": 93684114,
+ "longestRoundTripNano": 202182534,
+ "averageApexExecutionNano": 82190134,
+ "shortestApexExecutionNano": 12285797,
+ "longestApexExecutionNano": 146938782
+ },
+ {
+ "batchNumber": 6709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178447170,
+ "shortestRoundTripNano": 66720315,
+ "longestRoundTripNano": 217726116,
+ "averageApexExecutionNano": 65214572,
+ "shortestApexExecutionNano": 9762691,
+ "longestApexExecutionNano": 132251690
+ },
+ {
+ "batchNumber": 6710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145068331,
+ "shortestRoundTripNano": 78805507,
+ "longestRoundTripNano": 175880159,
+ "averageApexExecutionNano": 61699928,
+ "shortestApexExecutionNano": 7873041,
+ "longestApexExecutionNano": 131554189
+ },
+ {
+ "batchNumber": 6711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141330735,
+ "shortestRoundTripNano": 55781758,
+ "longestRoundTripNano": 185256014,
+ "averageApexExecutionNano": 46544752,
+ "shortestApexExecutionNano": 7360631,
+ "longestApexExecutionNano": 114522027
+ },
+ {
+ "batchNumber": 6712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148159519,
+ "shortestRoundTripNano": 72161988,
+ "longestRoundTripNano": 175043466,
+ "averageApexExecutionNano": 72058076,
+ "shortestApexExecutionNano": 6506273,
+ "longestApexExecutionNano": 137698814
+ },
+ {
+ "batchNumber": 6713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145150036,
+ "shortestRoundTripNano": 76008135,
+ "longestRoundTripNano": 169095545,
+ "averageApexExecutionNano": 47953900,
+ "shortestApexExecutionNano": 5892533,
+ "longestApexExecutionNano": 129911650
+ },
+ {
+ "batchNumber": 6714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153992900,
+ "shortestRoundTripNano": 87856733,
+ "longestRoundTripNano": 177998938,
+ "averageApexExecutionNano": 56959679,
+ "shortestApexExecutionNano": 7628383,
+ "longestApexExecutionNano": 130259483
+ },
+ {
+ "batchNumber": 6715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150502454,
+ "shortestRoundTripNano": 85696306,
+ "longestRoundTripNano": 174627508,
+ "averageApexExecutionNano": 52339300,
+ "shortestApexExecutionNano": 12302160,
+ "longestApexExecutionNano": 126175352
+ },
+ {
+ "batchNumber": 6716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37300",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162900455,
+ "shortestRoundTripNano": 79919553,
+ "longestRoundTripNano": 195900679,
+ "averageApexExecutionNano": 79477198,
+ "shortestApexExecutionNano": 6187072,
+ "longestApexExecutionNano": 131663705
+ },
+ {
+ "batchNumber": 6717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37304",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156293635,
+ "shortestRoundTripNano": 39368600,
+ "longestRoundTripNano": 186085892,
+ "averageApexExecutionNano": 63749289,
+ "shortestApexExecutionNano": 10591839,
+ "longestApexExecutionNano": 150670428
+ },
+ {
+ "batchNumber": 6718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37304",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167573734,
+ "shortestRoundTripNano": 53581770,
+ "longestRoundTripNano": 202524168,
+ "averageApexExecutionNano": 89918300,
+ "shortestApexExecutionNano": 10876329,
+ "longestApexExecutionNano": 139613073
+ },
+ {
+ "batchNumber": 6719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162194605,
+ "shortestRoundTripNano": 47729547,
+ "longestRoundTripNano": 196837094,
+ "averageApexExecutionNano": 79649732,
+ "shortestApexExecutionNano": 8635680,
+ "longestApexExecutionNano": 145089654
+ },
+ {
+ "batchNumber": 6720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37306",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181660215,
+ "shortestRoundTripNano": 56841242,
+ "longestRoundTripNano": 220485866,
+ "averageApexExecutionNano": 81444942,
+ "shortestApexExecutionNano": 12846447,
+ "longestApexExecutionNano": 173359406
+ },
+ {
+ "batchNumber": 6721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152887516,
+ "shortestRoundTripNano": 79624590,
+ "longestRoundTripNano": 181717599,
+ "averageApexExecutionNano": 62506778,
+ "shortestApexExecutionNano": 15946811,
+ "longestApexExecutionNano": 132351150
+ },
+ {
+ "batchNumber": 6722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160486162,
+ "shortestRoundTripNano": 61580496,
+ "longestRoundTripNano": 191908438,
+ "averageApexExecutionNano": 76228075,
+ "shortestApexExecutionNano": 15438230,
+ "longestApexExecutionNano": 132812187
+ },
+ {
+ "batchNumber": 6723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165615735,
+ "shortestRoundTripNano": 83979807,
+ "longestRoundTripNano": 194906436,
+ "averageApexExecutionNano": 54517844,
+ "shortestApexExecutionNano": 11468361,
+ "longestApexExecutionNano": 111330886
+ },
+ {
+ "batchNumber": 6724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37308",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147266276,
+ "shortestRoundTripNano": 23881033,
+ "longestRoundTripNano": 182845363,
+ "averageApexExecutionNano": 69281545,
+ "shortestApexExecutionNano": 4112180,
+ "longestApexExecutionNano": 132481956
+ },
+ {
+ "batchNumber": 6725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134225058,
+ "shortestRoundTripNano": 55744040,
+ "longestRoundTripNano": 161138358,
+ "averageApexExecutionNano": 61483866,
+ "shortestApexExecutionNano": 8414996,
+ "longestApexExecutionNano": 121789172
+ },
+ {
+ "batchNumber": 6726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126124552,
+ "shortestRoundTripNano": 25385863,
+ "longestRoundTripNano": 158412500,
+ "averageApexExecutionNano": 48854210,
+ "shortestApexExecutionNano": 4725861,
+ "longestApexExecutionNano": 111408421
+ },
+ {
+ "batchNumber": 6727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145250011,
+ "shortestRoundTripNano": 44981540,
+ "longestRoundTripNano": 184843817,
+ "averageApexExecutionNano": 54422841,
+ "shortestApexExecutionNano": 7403187,
+ "longestApexExecutionNano": 116508619
+ },
+ {
+ "batchNumber": 6728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137439369,
+ "shortestRoundTripNano": 84675860,
+ "longestRoundTripNano": 169843364,
+ "averageApexExecutionNano": 75839219,
+ "shortestApexExecutionNano": 11447185,
+ "longestApexExecutionNano": 125467608
+ },
+ {
+ "batchNumber": 6729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152247550,
+ "shortestRoundTripNano": 82525264,
+ "longestRoundTripNano": 193252439,
+ "averageApexExecutionNano": 87321530,
+ "shortestApexExecutionNano": 13793799,
+ "longestApexExecutionNano": 141888263
+ },
+ {
+ "batchNumber": 6730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159043534,
+ "shortestRoundTripNano": 81569831,
+ "longestRoundTripNano": 185240967,
+ "averageApexExecutionNano": 76722151,
+ "shortestApexExecutionNano": 6910911,
+ "longestApexExecutionNano": 138276307
+ },
+ {
+ "batchNumber": 6731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37310",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155643826,
+ "shortestRoundTripNano": 63918983,
+ "longestRoundTripNano": 189079567,
+ "averageApexExecutionNano": 49610015,
+ "shortestApexExecutionNano": 9608356,
+ "longestApexExecutionNano": 129824013
+ },
+ {
+ "batchNumber": 6732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166766286,
+ "shortestRoundTripNano": 80534277,
+ "longestRoundTripNano": 193906184,
+ "averageApexExecutionNano": 69043245,
+ "shortestApexExecutionNano": 6603742,
+ "longestApexExecutionNano": 149278056
+ },
+ {
+ "batchNumber": 6733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148194552,
+ "shortestRoundTripNano": 57198508,
+ "longestRoundTripNano": 189676818,
+ "averageApexExecutionNano": 65175954,
+ "shortestApexExecutionNano": 6971432,
+ "longestApexExecutionNano": 129144859
+ },
+ {
+ "batchNumber": 6734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153800429,
+ "shortestRoundTripNano": 86035074,
+ "longestRoundTripNano": 181288183,
+ "averageApexExecutionNano": 74731220,
+ "shortestApexExecutionNano": 22678180,
+ "longestApexExecutionNano": 116666133
+ },
+ {
+ "batchNumber": 6735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137218699,
+ "shortestRoundTripNano": 64855603,
+ "longestRoundTripNano": 172257093,
+ "averageApexExecutionNano": 59863374,
+ "shortestApexExecutionNano": 11143705,
+ "longestApexExecutionNano": 114596173
+ },
+ {
+ "batchNumber": 6736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140570950,
+ "shortestRoundTripNano": 71246478,
+ "longestRoundTripNano": 180571449,
+ "averageApexExecutionNano": 42303408,
+ "shortestApexExecutionNano": 8834828,
+ "longestApexExecutionNano": 95507998
+ },
+ {
+ "batchNumber": 6737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151819798,
+ "shortestRoundTripNano": 54843687,
+ "longestRoundTripNano": 185121694,
+ "averageApexExecutionNano": 70975447,
+ "shortestApexExecutionNano": 9838348,
+ "longestApexExecutionNano": 135752019
+ },
+ {
+ "batchNumber": 6738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150452059,
+ "shortestRoundTripNano": 43136902,
+ "longestRoundTripNano": 187422899,
+ "averageApexExecutionNano": 48808466,
+ "shortestApexExecutionNano": 6658235,
+ "longestApexExecutionNano": 144449924
+ },
+ {
+ "batchNumber": 6739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155029042,
+ "shortestRoundTripNano": 63215039,
+ "longestRoundTripNano": 192929196,
+ "averageApexExecutionNano": 62966772,
+ "shortestApexExecutionNano": 8520342,
+ "longestApexExecutionNano": 137747663
+ },
+ {
+ "batchNumber": 6740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144461622,
+ "shortestRoundTripNano": 43293851,
+ "longestRoundTripNano": 177931380,
+ "averageApexExecutionNano": 73198170,
+ "shortestApexExecutionNano": 15018587,
+ "longestApexExecutionNano": 137010265
+ },
+ {
+ "batchNumber": 6741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161762095,
+ "shortestRoundTripNano": 66122549,
+ "longestRoundTripNano": 203874493,
+ "averageApexExecutionNano": 69152169,
+ "shortestApexExecutionNano": 7674536,
+ "longestApexExecutionNano": 147185832
+ },
+ {
+ "batchNumber": 6742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166396258,
+ "shortestRoundTripNano": 84469327,
+ "longestRoundTripNano": 194478199,
+ "averageApexExecutionNano": 62711621,
+ "shortestApexExecutionNano": 8836798,
+ "longestApexExecutionNano": 139267888
+ },
+ {
+ "batchNumber": 6743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153613284,
+ "shortestRoundTripNano": 59648940,
+ "longestRoundTripNano": 188973850,
+ "averageApexExecutionNano": 64700373,
+ "shortestApexExecutionNano": 6521708,
+ "longestApexExecutionNano": 150706672
+ },
+ {
+ "batchNumber": 6744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37312",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158085262,
+ "shortestRoundTripNano": 55977409,
+ "longestRoundTripNano": 187967368,
+ "averageApexExecutionNano": 66002671,
+ "shortestApexExecutionNano": 5462092,
+ "longestApexExecutionNano": 142559001
+ },
+ {
+ "batchNumber": 6745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152525600,
+ "shortestRoundTripNano": 52643937,
+ "longestRoundTripNano": 185472048,
+ "averageApexExecutionNano": 60160797,
+ "shortestApexExecutionNano": 7572845,
+ "longestApexExecutionNano": 144157031
+ },
+ {
+ "batchNumber": 6746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37316",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 189657461,
+ "shortestRoundTripNano": 54093734,
+ "longestRoundTripNano": 220672798,
+ "averageApexExecutionNano": 78712522,
+ "shortestApexExecutionNano": 9681904,
+ "longestApexExecutionNano": 172630232
+ },
+ {
+ "batchNumber": 6747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184180252,
+ "shortestRoundTripNano": 66026855,
+ "longestRoundTripNano": 209379170,
+ "averageApexExecutionNano": 70640242,
+ "shortestApexExecutionNano": 8032147,
+ "longestApexExecutionNano": 164882237
+ },
+ {
+ "batchNumber": 6748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173131469,
+ "shortestRoundTripNano": 88768530,
+ "longestRoundTripNano": 205187789,
+ "averageApexExecutionNano": 74683794,
+ "shortestApexExecutionNano": 15292898,
+ "longestApexExecutionNano": 162383559
+ },
+ {
+ "batchNumber": 6749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179188270,
+ "shortestRoundTripNano": 67804971,
+ "longestRoundTripNano": 209946025,
+ "averageApexExecutionNano": 58390818,
+ "shortestApexExecutionNano": 5685765,
+ "longestApexExecutionNano": 155689918
+ },
+ {
+ "batchNumber": 6750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153706428,
+ "shortestRoundTripNano": 74207255,
+ "longestRoundTripNano": 189980064,
+ "averageApexExecutionNano": 61684425,
+ "shortestApexExecutionNano": 6991442,
+ "longestApexExecutionNano": 139377676
+ },
+ {
+ "batchNumber": 6751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166181957,
+ "shortestRoundTripNano": 94328924,
+ "longestRoundTripNano": 195456637,
+ "averageApexExecutionNano": 60594070,
+ "shortestApexExecutionNano": 9128996,
+ "longestApexExecutionNano": 127433465
+ },
+ {
+ "batchNumber": 6752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167278733,
+ "shortestRoundTripNano": 53170255,
+ "longestRoundTripNano": 208032389,
+ "averageApexExecutionNano": 73066777,
+ "shortestApexExecutionNano": 4975274,
+ "longestApexExecutionNano": 154388792
+ },
+ {
+ "batchNumber": 6753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150037922,
+ "shortestRoundTripNano": 29536802,
+ "longestRoundTripNano": 178128706,
+ "averageApexExecutionNano": 62576108,
+ "shortestApexExecutionNano": 7322083,
+ "longestApexExecutionNano": 131973782
+ },
+ {
+ "batchNumber": 6754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159721587,
+ "shortestRoundTripNano": 73437395,
+ "longestRoundTripNano": 189435389,
+ "averageApexExecutionNano": 49581044,
+ "shortestApexExecutionNano": 7621538,
+ "longestApexExecutionNano": 108730707
+ },
+ {
+ "batchNumber": 6755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132305255,
+ "shortestRoundTripNano": 33492415,
+ "longestRoundTripNano": 161404780,
+ "averageApexExecutionNano": 60708897,
+ "shortestApexExecutionNano": 11208405,
+ "longestApexExecutionNano": 122505199
+ },
+ {
+ "batchNumber": 6756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37318",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159795344,
+ "shortestRoundTripNano": 60720083,
+ "longestRoundTripNano": 208975536,
+ "averageApexExecutionNano": 69378878,
+ "shortestApexExecutionNano": 5655917,
+ "longestApexExecutionNano": 135713682
+ },
+ {
+ "batchNumber": 6757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 231184649,
+ "shortestRoundTripNano": 58275099,
+ "longestRoundTripNano": 283337859,
+ "averageApexExecutionNano": 117555915,
+ "shortestApexExecutionNano": 17332514,
+ "longestApexExecutionNano": 235044343
+ },
+ {
+ "batchNumber": 6758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122677139,
+ "shortestRoundTripNano": 64642672,
+ "longestRoundTripNano": 148544489,
+ "averageApexExecutionNano": 53707374,
+ "shortestApexExecutionNano": 6078737,
+ "longestApexExecutionNano": 108667558
+ },
+ {
+ "batchNumber": 6759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142902050,
+ "shortestRoundTripNano": 58194382,
+ "longestRoundTripNano": 166567495,
+ "averageApexExecutionNano": 60394699,
+ "shortestApexExecutionNano": 10770271,
+ "longestApexExecutionNano": 119512838
+ },
+ {
+ "batchNumber": 6760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121979517,
+ "shortestRoundTripNano": 51011154,
+ "longestRoundTripNano": 151019667,
+ "averageApexExecutionNano": 46331858,
+ "shortestApexExecutionNano": 7878136,
+ "longestApexExecutionNano": 100174225
+ },
+ {
+ "batchNumber": 6761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148761179,
+ "shortestRoundTripNano": 72204195,
+ "longestRoundTripNano": 177701119,
+ "averageApexExecutionNano": 81826559,
+ "shortestApexExecutionNano": 24645210,
+ "longestApexExecutionNano": 130784335
+ },
+ {
+ "batchNumber": 6762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131832017,
+ "shortestRoundTripNano": 82113287,
+ "longestRoundTripNano": 163217512,
+ "averageApexExecutionNano": 49336248,
+ "shortestApexExecutionNano": 7835868,
+ "longestApexExecutionNano": 95698600
+ },
+ {
+ "batchNumber": 6763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133394537,
+ "shortestRoundTripNano": 45416543,
+ "longestRoundTripNano": 164755355,
+ "averageApexExecutionNano": 53911243,
+ "shortestApexExecutionNano": 8208807,
+ "longestApexExecutionNano": 113003897
+ },
+ {
+ "batchNumber": 6764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134413307,
+ "shortestRoundTripNano": 66781828,
+ "longestRoundTripNano": 162225935,
+ "averageApexExecutionNano": 53111350,
+ "shortestApexExecutionNano": 6660313,
+ "longestApexExecutionNano": 121318661
+ },
+ {
+ "batchNumber": 6765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167934715,
+ "shortestRoundTripNano": 76868338,
+ "longestRoundTripNano": 196376350,
+ "averageApexExecutionNano": 69410554,
+ "shortestApexExecutionNano": 9344002,
+ "longestApexExecutionNano": 126116236
+ },
+ {
+ "batchNumber": 6766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37322",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152541495,
+ "shortestRoundTripNano": 62146842,
+ "longestRoundTripNano": 187594614,
+ "averageApexExecutionNano": 73574382,
+ "shortestApexExecutionNano": 23748643,
+ "longestApexExecutionNano": 140485920
+ },
+ {
+ "batchNumber": 6767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154992578,
+ "shortestRoundTripNano": 59749774,
+ "longestRoundTripNano": 189759194,
+ "averageApexExecutionNano": 56007529,
+ "shortestApexExecutionNano": 15645512,
+ "longestApexExecutionNano": 122529194
+ },
+ {
+ "batchNumber": 6768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130907472,
+ "shortestRoundTripNano": 60644751,
+ "longestRoundTripNano": 150796813,
+ "averageApexExecutionNano": 54135186,
+ "shortestApexExecutionNano": 10081887,
+ "longestApexExecutionNano": 98108384
+ },
+ {
+ "batchNumber": 6769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140676962,
+ "shortestRoundTripNano": 75957319,
+ "longestRoundTripNano": 168092481,
+ "averageApexExecutionNano": 66571304,
+ "shortestApexExecutionNano": 6626391,
+ "longestApexExecutionNano": 119741024
+ },
+ {
+ "batchNumber": 6770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37326",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158684724,
+ "shortestRoundTripNano": 74966711,
+ "longestRoundTripNano": 190664302,
+ "averageApexExecutionNano": 68936851,
+ "shortestApexExecutionNano": 10510041,
+ "longestApexExecutionNano": 124746500
+ },
+ {
+ "batchNumber": 6771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137580160,
+ "shortestRoundTripNano": 66712574,
+ "longestRoundTripNano": 163270779,
+ "averageApexExecutionNano": 59411839,
+ "shortestApexExecutionNano": 6472890,
+ "longestApexExecutionNano": 118641428
+ },
+ {
+ "batchNumber": 6772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143008252,
+ "shortestRoundTripNano": 60702975,
+ "longestRoundTripNano": 172019604,
+ "averageApexExecutionNano": 54561487,
+ "shortestApexExecutionNano": 7535926,
+ "longestApexExecutionNano": 113043656
+ },
+ {
+ "batchNumber": 6773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137941484,
+ "shortestRoundTripNano": 54634554,
+ "longestRoundTripNano": 158049143,
+ "averageApexExecutionNano": 51316612,
+ "shortestApexExecutionNano": 8171217,
+ "longestApexExecutionNano": 107867419
+ },
+ {
+ "batchNumber": 6774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174273952,
+ "shortestRoundTripNano": 58132839,
+ "longestRoundTripNano": 218821209,
+ "averageApexExecutionNano": 57223978,
+ "shortestApexExecutionNano": 6741935,
+ "longestApexExecutionNano": 159235053
+ },
+ {
+ "batchNumber": 6775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170492058,
+ "shortestRoundTripNano": 100287923,
+ "longestRoundTripNano": 205756015,
+ "averageApexExecutionNano": 86787165,
+ "shortestApexExecutionNano": 12245972,
+ "longestApexExecutionNano": 162680358
+ },
+ {
+ "batchNumber": 6776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37328",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161784717,
+ "shortestRoundTripNano": 60740760,
+ "longestRoundTripNano": 206392839,
+ "averageApexExecutionNano": 59003728,
+ "shortestApexExecutionNano": 9942017,
+ "longestApexExecutionNano": 162876717
+ },
+ {
+ "batchNumber": 6777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134023172,
+ "shortestRoundTripNano": 55917106,
+ "longestRoundTripNano": 160665869,
+ "averageApexExecutionNano": 48891777,
+ "shortestApexExecutionNano": 8883436,
+ "longestApexExecutionNano": 109903511
+ },
+ {
+ "batchNumber": 6778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144711734,
+ "shortestRoundTripNano": 49806542,
+ "longestRoundTripNano": 176674161,
+ "averageApexExecutionNano": 55923572,
+ "shortestApexExecutionNano": 16438731,
+ "longestApexExecutionNano": 118451353
+ },
+ {
+ "batchNumber": 6779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153991400,
+ "shortestRoundTripNano": 53692385,
+ "longestRoundTripNano": 178872025,
+ "averageApexExecutionNano": 64981840,
+ "shortestApexExecutionNano": 15526618,
+ "longestApexExecutionNano": 134782860
+ },
+ {
+ "batchNumber": 6780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153531188,
+ "shortestRoundTripNano": 73235359,
+ "longestRoundTripNano": 179960353,
+ "averageApexExecutionNano": 61793771,
+ "shortestApexExecutionNano": 8476423,
+ "longestApexExecutionNano": 126358976
+ },
+ {
+ "batchNumber": 6781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154367797,
+ "shortestRoundTripNano": 46458126,
+ "longestRoundTripNano": 192269417,
+ "averageApexExecutionNano": 58337049,
+ "shortestApexExecutionNano": 9299704,
+ "longestApexExecutionNano": 127918652
+ },
+ {
+ "batchNumber": 6782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147787297,
+ "shortestRoundTripNano": 36842705,
+ "longestRoundTripNano": 182554654,
+ "averageApexExecutionNano": 69263847,
+ "shortestApexExecutionNano": 10651176,
+ "longestApexExecutionNano": 130676101
+ },
+ {
+ "batchNumber": 6783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163396336,
+ "shortestRoundTripNano": 66794802,
+ "longestRoundTripNano": 196455266,
+ "averageApexExecutionNano": 71039651,
+ "shortestApexExecutionNano": 12480580,
+ "longestApexExecutionNano": 152016550
+ },
+ {
+ "batchNumber": 6784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139756223,
+ "shortestRoundTripNano": 80511633,
+ "longestRoundTripNano": 164880511,
+ "averageApexExecutionNano": 71344389,
+ "shortestApexExecutionNano": 8508870,
+ "longestApexExecutionNano": 120737653
+ },
+ {
+ "batchNumber": 6785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37332",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134642440,
+ "shortestRoundTripNano": 59915741,
+ "longestRoundTripNano": 164802798,
+ "averageApexExecutionNano": 47834454,
+ "shortestApexExecutionNano": 9449657,
+ "longestApexExecutionNano": 99101922
+ },
+ {
+ "batchNumber": 6786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142453574,
+ "shortestRoundTripNano": 26459469,
+ "longestRoundTripNano": 177324473,
+ "averageApexExecutionNano": 54045690,
+ "shortestApexExecutionNano": 8771179,
+ "longestApexExecutionNano": 111924250
+ },
+ {
+ "batchNumber": 6787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145068597,
+ "shortestRoundTripNano": 67445719,
+ "longestRoundTripNano": 176414959,
+ "averageApexExecutionNano": 65542989,
+ "shortestApexExecutionNano": 8127050,
+ "longestApexExecutionNano": 132336217
+ },
+ {
+ "batchNumber": 6788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144559525,
+ "shortestRoundTripNano": 41937947,
+ "longestRoundTripNano": 174377544,
+ "averageApexExecutionNano": 65502457,
+ "shortestApexExecutionNano": 8663458,
+ "longestApexExecutionNano": 127613416
+ },
+ {
+ "batchNumber": 6789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146617348,
+ "shortestRoundTripNano": 67939202,
+ "longestRoundTripNano": 178506915,
+ "averageApexExecutionNano": 64482031,
+ "shortestApexExecutionNano": 7809288,
+ "longestApexExecutionNano": 128560068
+ },
+ {
+ "batchNumber": 6790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150129059,
+ "shortestRoundTripNano": 64082994,
+ "longestRoundTripNano": 185691989,
+ "averageApexExecutionNano": 60662794,
+ "shortestApexExecutionNano": 8242584,
+ "longestApexExecutionNano": 153310825
+ },
+ {
+ "batchNumber": 6791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125391302,
+ "shortestRoundTripNano": 56754598,
+ "longestRoundTripNano": 153882376,
+ "averageApexExecutionNano": 60621495,
+ "shortestApexExecutionNano": 11208002,
+ "longestApexExecutionNano": 124148008
+ },
+ {
+ "batchNumber": 6792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131246587,
+ "shortestRoundTripNano": 50177843,
+ "longestRoundTripNano": 164516908,
+ "averageApexExecutionNano": 42399627,
+ "shortestApexExecutionNano": 7574693,
+ "longestApexExecutionNano": 108868326
+ },
+ {
+ "batchNumber": 6793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146728141,
+ "shortestRoundTripNano": 66285547,
+ "longestRoundTripNano": 174527594,
+ "averageApexExecutionNano": 59545225,
+ "shortestApexExecutionNano": 11878164,
+ "longestApexExecutionNano": 102248411
+ },
+ {
+ "batchNumber": 6794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147790794,
+ "shortestRoundTripNano": 71512472,
+ "longestRoundTripNano": 170830495,
+ "averageApexExecutionNano": 73037168,
+ "shortestApexExecutionNano": 6422527,
+ "longestApexExecutionNano": 127009651
+ },
+ {
+ "batchNumber": 6795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37330",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160431274,
+ "shortestRoundTripNano": 66031613,
+ "longestRoundTripNano": 195923097,
+ "averageApexExecutionNano": 65235516,
+ "shortestApexExecutionNano": 10632369,
+ "longestApexExecutionNano": 153776312
+ },
+ {
+ "batchNumber": 6796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147329030,
+ "shortestRoundTripNano": 71745541,
+ "longestRoundTripNano": 184314473,
+ "averageApexExecutionNano": 73573749,
+ "shortestApexExecutionNano": 7620473,
+ "longestApexExecutionNano": 128335790
+ },
+ {
+ "batchNumber": 6797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160168031,
+ "shortestRoundTripNano": 57873842,
+ "longestRoundTripNano": 181326021,
+ "averageApexExecutionNano": 72770104,
+ "shortestApexExecutionNano": 7451050,
+ "longestApexExecutionNano": 112194659
+ },
+ {
+ "batchNumber": 6798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160934615,
+ "shortestRoundTripNano": 67993061,
+ "longestRoundTripNano": 188494781,
+ "averageApexExecutionNano": 51620218,
+ "shortestApexExecutionNano": 8086268,
+ "longestApexExecutionNano": 111895608
+ },
+ {
+ "batchNumber": 6799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155845414,
+ "shortestRoundTripNano": 67341875,
+ "longestRoundTripNano": 193711027,
+ "averageApexExecutionNano": 73263675,
+ "shortestApexExecutionNano": 10865724,
+ "longestApexExecutionNano": 147038277
+ },
+ {
+ "batchNumber": 6800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141882579,
+ "shortestRoundTripNano": 72242849,
+ "longestRoundTripNano": 166862918,
+ "averageApexExecutionNano": 62252561,
+ "shortestApexExecutionNano": 7269544,
+ "longestApexExecutionNano": 124753253
+ },
+ {
+ "batchNumber": 6801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156079919,
+ "shortestRoundTripNano": 95371016,
+ "longestRoundTripNano": 182784437,
+ "averageApexExecutionNano": 55996036,
+ "shortestApexExecutionNano": 7969017,
+ "longestApexExecutionNano": 111555037
+ },
+ {
+ "batchNumber": 6802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142566174,
+ "shortestRoundTripNano": 37191456,
+ "longestRoundTripNano": 178875789,
+ "averageApexExecutionNano": 58000022,
+ "shortestApexExecutionNano": 6477588,
+ "longestApexExecutionNano": 121011673
+ },
+ {
+ "batchNumber": 6803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150791358,
+ "shortestRoundTripNano": 86023464,
+ "longestRoundTripNano": 171903593,
+ "averageApexExecutionNano": 77010416,
+ "shortestApexExecutionNano": 9204286,
+ "longestApexExecutionNano": 116684429
+ },
+ {
+ "batchNumber": 6804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 211725131,
+ "shortestRoundTripNano": 62000824,
+ "longestRoundTripNano": 246364966,
+ "averageApexExecutionNano": 78192459,
+ "shortestApexExecutionNano": 10517653,
+ "longestApexExecutionNano": 170060198
+ },
+ {
+ "batchNumber": 6805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37340",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161461646,
+ "shortestRoundTripNano": 75228463,
+ "longestRoundTripNano": 203233949,
+ "averageApexExecutionNano": 81297979,
+ "shortestApexExecutionNano": 9718955,
+ "longestApexExecutionNano": 159373731
+ },
+ {
+ "batchNumber": 6806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170066669,
+ "shortestRoundTripNano": 80795196,
+ "longestRoundTripNano": 201443879,
+ "averageApexExecutionNano": 67913625,
+ "shortestApexExecutionNano": 11030026,
+ "longestApexExecutionNano": 136941498
+ },
+ {
+ "batchNumber": 6807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163448448,
+ "shortestRoundTripNano": 80959211,
+ "longestRoundTripNano": 191443180,
+ "averageApexExecutionNano": 73792670,
+ "shortestApexExecutionNano": 8388278,
+ "longestApexExecutionNano": 149238476
+ },
+ {
+ "batchNumber": 6808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177278690,
+ "shortestRoundTripNano": 75374903,
+ "longestRoundTripNano": 206269884,
+ "averageApexExecutionNano": 84977613,
+ "shortestApexExecutionNano": 16240821,
+ "longestApexExecutionNano": 148795019
+ },
+ {
+ "batchNumber": 6809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160039196,
+ "shortestRoundTripNano": 71709709,
+ "longestRoundTripNano": 199713516,
+ "averageApexExecutionNano": 64432900,
+ "shortestApexExecutionNano": 8580104,
+ "longestApexExecutionNano": 148984538
+ },
+ {
+ "batchNumber": 6810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158816466,
+ "shortestRoundTripNano": 81247059,
+ "longestRoundTripNano": 192003001,
+ "averageApexExecutionNano": 60866494,
+ "shortestApexExecutionNano": 9956346,
+ "longestApexExecutionNano": 131975594
+ },
+ {
+ "batchNumber": 6811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140253820,
+ "shortestRoundTripNano": 71610323,
+ "longestRoundTripNano": 166283986,
+ "averageApexExecutionNano": 45582933,
+ "shortestApexExecutionNano": 8171461,
+ "longestApexExecutionNano": 84795900
+ },
+ {
+ "batchNumber": 6812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143476949,
+ "shortestRoundTripNano": 78848888,
+ "longestRoundTripNano": 175340230,
+ "averageApexExecutionNano": 57799112,
+ "shortestApexExecutionNano": 8110360,
+ "longestApexExecutionNano": 124269810
+ },
+ {
+ "batchNumber": 6813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146042197,
+ "shortestRoundTripNano": 60138174,
+ "longestRoundTripNano": 173619498,
+ "averageApexExecutionNano": 53201876,
+ "shortestApexExecutionNano": 10961932,
+ "longestApexExecutionNano": 112427672
+ },
+ {
+ "batchNumber": 6814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120864542,
+ "shortestRoundTripNano": 56916577,
+ "longestRoundTripNano": 148951818,
+ "averageApexExecutionNano": 60076453,
+ "shortestApexExecutionNano": 14567804,
+ "longestApexExecutionNano": 110458011
+ },
+ {
+ "batchNumber": 6815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155316664,
+ "shortestRoundTripNano": 69481101,
+ "longestRoundTripNano": 181545580,
+ "averageApexExecutionNano": 62998598,
+ "shortestApexExecutionNano": 7293074,
+ "longestApexExecutionNano": 107481808
+ },
+ {
+ "batchNumber": 6816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144994790,
+ "shortestRoundTripNano": 69008153,
+ "longestRoundTripNano": 169727999,
+ "averageApexExecutionNano": 62354862,
+ "shortestApexExecutionNano": 6974700,
+ "longestApexExecutionNano": 111295163
+ },
+ {
+ "batchNumber": 6817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135467228,
+ "shortestRoundTripNano": 78380912,
+ "longestRoundTripNano": 161307716,
+ "averageApexExecutionNano": 57163816,
+ "shortestApexExecutionNano": 10247283,
+ "longestApexExecutionNano": 112879504
+ },
+ {
+ "batchNumber": 6818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135324532,
+ "shortestRoundTripNano": 54679280,
+ "longestRoundTripNano": 168713891,
+ "averageApexExecutionNano": 44667250,
+ "shortestApexExecutionNano": 4220168,
+ "longestApexExecutionNano": 104103417
+ },
+ {
+ "batchNumber": 6819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124019689,
+ "shortestRoundTripNano": 59883609,
+ "longestRoundTripNano": 150655459,
+ "averageApexExecutionNano": 61279133,
+ "shortestApexExecutionNano": 6309481,
+ "longestApexExecutionNano": 109355122
+ },
+ {
+ "batchNumber": 6820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135283316,
+ "shortestRoundTripNano": 55503602,
+ "longestRoundTripNano": 170234015,
+ "averageApexExecutionNano": 58054818,
+ "shortestApexExecutionNano": 6548445,
+ "longestApexExecutionNano": 124114323
+ },
+ {
+ "batchNumber": 6821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136839101,
+ "shortestRoundTripNano": 61596292,
+ "longestRoundTripNano": 164094978,
+ "averageApexExecutionNano": 62600344,
+ "shortestApexExecutionNano": 8610294,
+ "longestApexExecutionNano": 107541350
+ },
+ {
+ "batchNumber": 6822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134481592,
+ "shortestRoundTripNano": 35196604,
+ "longestRoundTripNano": 163061726,
+ "averageApexExecutionNano": 58007091,
+ "shortestApexExecutionNano": 8629924,
+ "longestApexExecutionNano": 115853228
+ },
+ {
+ "batchNumber": 6823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158465056,
+ "shortestRoundTripNano": 60106431,
+ "longestRoundTripNano": 194292467,
+ "averageApexExecutionNano": 59159231,
+ "shortestApexExecutionNano": 7160301,
+ "longestApexExecutionNano": 134450787
+ },
+ {
+ "batchNumber": 6824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158059555,
+ "shortestRoundTripNano": 72359389,
+ "longestRoundTripNano": 190067231,
+ "averageApexExecutionNano": 65401685,
+ "shortestApexExecutionNano": 10590462,
+ "longestApexExecutionNano": 136463952
+ },
+ {
+ "batchNumber": 6825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168217163,
+ "shortestRoundTripNano": 77882148,
+ "longestRoundTripNano": 204531297,
+ "averageApexExecutionNano": 76402871,
+ "shortestApexExecutionNano": 6558517,
+ "longestApexExecutionNano": 150499552
+ },
+ {
+ "batchNumber": 6826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141730981,
+ "shortestRoundTripNano": 74392403,
+ "longestRoundTripNano": 168992840,
+ "averageApexExecutionNano": 62937110,
+ "shortestApexExecutionNano": 7726707,
+ "longestApexExecutionNano": 118650046
+ },
+ {
+ "batchNumber": 6827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133775793,
+ "shortestRoundTripNano": 76208880,
+ "longestRoundTripNano": 160963525,
+ "averageApexExecutionNano": 59782365,
+ "shortestApexExecutionNano": 8927422,
+ "longestApexExecutionNano": 105481523
+ },
+ {
+ "batchNumber": 6828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37336",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169497762,
+ "shortestRoundTripNano": 87886399,
+ "longestRoundTripNano": 212802396,
+ "averageApexExecutionNano": 83925279,
+ "shortestApexExecutionNano": 8810705,
+ "longestApexExecutionNano": 143065969
+ },
+ {
+ "batchNumber": 6829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169995020,
+ "shortestRoundTripNano": 86770191,
+ "longestRoundTripNano": 203577705,
+ "averageApexExecutionNano": 79307255,
+ "shortestApexExecutionNano": 10212287,
+ "longestApexExecutionNano": 156889693
+ },
+ {
+ "batchNumber": 6830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151546432,
+ "shortestRoundTripNano": 67658409,
+ "longestRoundTripNano": 180632026,
+ "averageApexExecutionNano": 57377542,
+ "shortestApexExecutionNano": 11133731,
+ "longestApexExecutionNano": 147738026
+ },
+ {
+ "batchNumber": 6831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148977876,
+ "shortestRoundTripNano": 64870228,
+ "longestRoundTripNano": 178157755,
+ "averageApexExecutionNano": 64135909,
+ "shortestApexExecutionNano": 7937215,
+ "longestApexExecutionNano": 118163162
+ },
+ {
+ "batchNumber": 6832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148577150,
+ "shortestRoundTripNano": 66336987,
+ "longestRoundTripNano": 174711673,
+ "averageApexExecutionNano": 64863294,
+ "shortestApexExecutionNano": 11309106,
+ "longestApexExecutionNano": 114998341
+ },
+ {
+ "batchNumber": 6833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161819339,
+ "shortestRoundTripNano": 73912317,
+ "longestRoundTripNano": 204601101,
+ "averageApexExecutionNano": 69838930,
+ "shortestApexExecutionNano": 14653133,
+ "longestApexExecutionNano": 133174144
+ },
+ {
+ "batchNumber": 6834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37348",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174047973,
+ "shortestRoundTripNano": 47972197,
+ "longestRoundTripNano": 206829401,
+ "averageApexExecutionNano": 86214254,
+ "shortestApexExecutionNano": 21800184,
+ "longestApexExecutionNano": 139131907
+ },
+ {
+ "batchNumber": 6835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162760577,
+ "shortestRoundTripNano": 57289578,
+ "longestRoundTripNano": 192068390,
+ "averageApexExecutionNano": 67103154,
+ "shortestApexExecutionNano": 12156195,
+ "longestApexExecutionNano": 143567286
+ },
+ {
+ "batchNumber": 6836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139256082,
+ "shortestRoundTripNano": 67920704,
+ "longestRoundTripNano": 160606930,
+ "averageApexExecutionNano": 57165851,
+ "shortestApexExecutionNano": 9992515,
+ "longestApexExecutionNano": 101903104
+ },
+ {
+ "batchNumber": 6837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144922535,
+ "shortestRoundTripNano": 77546311,
+ "longestRoundTripNano": 178584692,
+ "averageApexExecutionNano": 61459545,
+ "shortestApexExecutionNano": 9497218,
+ "longestApexExecutionNano": 109313568
+ },
+ {
+ "batchNumber": 6838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151497703,
+ "shortestRoundTripNano": 47883751,
+ "longestRoundTripNano": 183893397,
+ "averageApexExecutionNano": 62788466,
+ "shortestApexExecutionNano": 14780737,
+ "longestApexExecutionNano": 143470913
+ },
+ {
+ "batchNumber": 6839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145621012,
+ "shortestRoundTripNano": 71773161,
+ "longestRoundTripNano": 181876074,
+ "averageApexExecutionNano": 67583311,
+ "shortestApexExecutionNano": 8688093,
+ "longestApexExecutionNano": 127538975
+ },
+ {
+ "batchNumber": 6840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135942295,
+ "shortestRoundTripNano": 73358345,
+ "longestRoundTripNano": 155266721,
+ "averageApexExecutionNano": 65067695,
+ "shortestApexExecutionNano": 6478355,
+ "longestApexExecutionNano": 112458409
+ },
+ {
+ "batchNumber": 6841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157390173,
+ "shortestRoundTripNano": 70060306,
+ "longestRoundTripNano": 188523523,
+ "averageApexExecutionNano": 57311490,
+ "shortestApexExecutionNano": 9656914,
+ "longestApexExecutionNano": 128482683
+ },
+ {
+ "batchNumber": 6842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155413717,
+ "shortestRoundTripNano": 90653124,
+ "longestRoundTripNano": 185681146,
+ "averageApexExecutionNano": 56293858,
+ "shortestApexExecutionNano": 6966922,
+ "longestApexExecutionNano": 139221911
+ },
+ {
+ "batchNumber": 6843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134741820,
+ "shortestRoundTripNano": 53502312,
+ "longestRoundTripNano": 166595966,
+ "averageApexExecutionNano": 63428209,
+ "shortestApexExecutionNano": 8599946,
+ "longestApexExecutionNano": 112057313
+ },
+ {
+ "batchNumber": 6844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149757156,
+ "shortestRoundTripNano": 67716575,
+ "longestRoundTripNano": 180096485,
+ "averageApexExecutionNano": 70142008,
+ "shortestApexExecutionNano": 12326787,
+ "longestApexExecutionNano": 134865994
+ },
+ {
+ "batchNumber": 6845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37352",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151040101,
+ "shortestRoundTripNano": 57030971,
+ "longestRoundTripNano": 181919687,
+ "averageApexExecutionNano": 59144053,
+ "shortestApexExecutionNano": 8745418,
+ "longestApexExecutionNano": 121576957
+ },
+ {
+ "batchNumber": 6846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129272979,
+ "shortestRoundTripNano": 61437585,
+ "longestRoundTripNano": 154297478,
+ "averageApexExecutionNano": 56302534,
+ "shortestApexExecutionNano": 8492671,
+ "longestApexExecutionNano": 109810924
+ },
+ {
+ "batchNumber": 6847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146004800,
+ "shortestRoundTripNano": 41786719,
+ "longestRoundTripNano": 178727721,
+ "averageApexExecutionNano": 65246821,
+ "shortestApexExecutionNano": 6355493,
+ "longestApexExecutionNano": 143470188
+ },
+ {
+ "batchNumber": 6848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149672239,
+ "shortestRoundTripNano": 65908690,
+ "longestRoundTripNano": 178874685,
+ "averageApexExecutionNano": 58192279,
+ "shortestApexExecutionNano": 7284553,
+ "longestApexExecutionNano": 118540916
+ },
+ {
+ "batchNumber": 6849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140708759,
+ "shortestRoundTripNano": 59439967,
+ "longestRoundTripNano": 179472486,
+ "averageApexExecutionNano": 49507315,
+ "shortestApexExecutionNano": 7149038,
+ "longestApexExecutionNano": 129282639
+ },
+ {
+ "batchNumber": 6850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145454898,
+ "shortestRoundTripNano": 44855808,
+ "longestRoundTripNano": 178825062,
+ "averageApexExecutionNano": 67206516,
+ "shortestApexExecutionNano": 6173090,
+ "longestApexExecutionNano": 120516057
+ },
+ {
+ "batchNumber": 6851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160436246,
+ "shortestRoundTripNano": 53865239,
+ "longestRoundTripNano": 192561786,
+ "averageApexExecutionNano": 61452276,
+ "shortestApexExecutionNano": 7333427,
+ "longestApexExecutionNano": 125599339
+ },
+ {
+ "batchNumber": 6852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164597555,
+ "shortestRoundTripNano": 40030699,
+ "longestRoundTripNano": 193616256,
+ "averageApexExecutionNano": 80014231,
+ "shortestApexExecutionNano": 8777831,
+ "longestApexExecutionNano": 151914227
+ },
+ {
+ "batchNumber": 6853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150575366,
+ "shortestRoundTripNano": 49176904,
+ "longestRoundTripNano": 185518618,
+ "averageApexExecutionNano": 63072170,
+ "shortestApexExecutionNano": 8655995,
+ "longestApexExecutionNano": 140765089
+ },
+ {
+ "batchNumber": 6854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37360",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140661779,
+ "shortestRoundTripNano": 64428230,
+ "longestRoundTripNano": 169333162,
+ "averageApexExecutionNano": 59713533,
+ "shortestApexExecutionNano": 7194433,
+ "longestApexExecutionNano": 117651618
+ },
+ {
+ "batchNumber": 6855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132583583,
+ "shortestRoundTripNano": 60638912,
+ "longestRoundTripNano": 160270923,
+ "averageApexExecutionNano": 43301355,
+ "shortestApexExecutionNano": 8016717,
+ "longestApexExecutionNano": 103481831
+ },
+ {
+ "batchNumber": 6856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 229383275,
+ "shortestRoundTripNano": 63096114,
+ "longestRoundTripNano": 268271174,
+ "averageApexExecutionNano": 122348468,
+ "shortestApexExecutionNano": 11116508,
+ "longestApexExecutionNano": 223049721
+ },
+ {
+ "batchNumber": 6857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159099151,
+ "shortestRoundTripNano": 78361943,
+ "longestRoundTripNano": 184463618,
+ "averageApexExecutionNano": 45831567,
+ "shortestApexExecutionNano": 5879012,
+ "longestApexExecutionNano": 118368838
+ },
+ {
+ "batchNumber": 6858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151985981,
+ "shortestRoundTripNano": 69404504,
+ "longestRoundTripNano": 183272831,
+ "averageApexExecutionNano": 69108883,
+ "shortestApexExecutionNano": 6226009,
+ "longestApexExecutionNano": 131519797
+ },
+ {
+ "batchNumber": 6859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37358",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145699034,
+ "shortestRoundTripNano": 63275335,
+ "longestRoundTripNano": 170861623,
+ "averageApexExecutionNano": 60640176,
+ "shortestApexExecutionNano": 8122207,
+ "longestApexExecutionNano": 119397275
+ },
+ {
+ "batchNumber": 6860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138628708,
+ "shortestRoundTripNano": 59167964,
+ "longestRoundTripNano": 166078494,
+ "averageApexExecutionNano": 68026471,
+ "shortestApexExecutionNano": 9510398,
+ "longestApexExecutionNano": 132431643
+ },
+ {
+ "batchNumber": 6861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37362",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156099454,
+ "shortestRoundTripNano": 59461426,
+ "longestRoundTripNano": 188463092,
+ "averageApexExecutionNano": 73327435,
+ "shortestApexExecutionNano": 8427146,
+ "longestApexExecutionNano": 124499597
+ },
+ {
+ "batchNumber": 6862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167622051,
+ "shortestRoundTripNano": 74078437,
+ "longestRoundTripNano": 201351278,
+ "averageApexExecutionNano": 68004625,
+ "shortestApexExecutionNano": 5576033,
+ "longestApexExecutionNano": 140747163
+ },
+ {
+ "batchNumber": 6863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139727140,
+ "shortestRoundTripNano": 60945550,
+ "longestRoundTripNano": 162753954,
+ "averageApexExecutionNano": 57611753,
+ "shortestApexExecutionNano": 7110688,
+ "longestApexExecutionNano": 110523501
+ },
+ {
+ "batchNumber": 6864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159266735,
+ "shortestRoundTripNano": 88644167,
+ "longestRoundTripNano": 194993548,
+ "averageApexExecutionNano": 64905217,
+ "shortestApexExecutionNano": 13149737,
+ "longestApexExecutionNano": 139503294
+ },
+ {
+ "batchNumber": 6865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148228493,
+ "shortestRoundTripNano": 58667634,
+ "longestRoundTripNano": 183090376,
+ "averageApexExecutionNano": 43963955,
+ "shortestApexExecutionNano": 8877205,
+ "longestApexExecutionNano": 123405535
+ },
+ {
+ "batchNumber": 6866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136626151,
+ "shortestRoundTripNano": 69289961,
+ "longestRoundTripNano": 166533235,
+ "averageApexExecutionNano": 62791754,
+ "shortestApexExecutionNano": 10634259,
+ "longestApexExecutionNano": 104442248
+ },
+ {
+ "batchNumber": 6867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144688595,
+ "shortestRoundTripNano": 81250914,
+ "longestRoundTripNano": 166622555,
+ "averageApexExecutionNano": 65435395,
+ "shortestApexExecutionNano": 10007830,
+ "longestApexExecutionNano": 109562899
+ },
+ {
+ "batchNumber": 6868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141074658,
+ "shortestRoundTripNano": 62710950,
+ "longestRoundTripNano": 172975545,
+ "averageApexExecutionNano": 49461783,
+ "shortestApexExecutionNano": 7128001,
+ "longestApexExecutionNano": 112519299
+ },
+ {
+ "batchNumber": 6869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154419117,
+ "shortestRoundTripNano": 73786457,
+ "longestRoundTripNano": 186126306,
+ "averageApexExecutionNano": 67951103,
+ "shortestApexExecutionNano": 11110776,
+ "longestApexExecutionNano": 123385397
+ },
+ {
+ "batchNumber": 6870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37364",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160161511,
+ "shortestRoundTripNano": 47588851,
+ "longestRoundTripNano": 193884923,
+ "averageApexExecutionNano": 77476984,
+ "shortestApexExecutionNano": 13794978,
+ "longestApexExecutionNano": 151518772
+ },
+ {
+ "batchNumber": 6871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156114540,
+ "shortestRoundTripNano": 75353305,
+ "longestRoundTripNano": 192374831,
+ "averageApexExecutionNano": 71983049,
+ "shortestApexExecutionNano": 8167094,
+ "longestApexExecutionNano": 141031421
+ },
+ {
+ "batchNumber": 6872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147329140,
+ "shortestRoundTripNano": 85681841,
+ "longestRoundTripNano": 172205759,
+ "averageApexExecutionNano": 62941449,
+ "shortestApexExecutionNano": 9684979,
+ "longestApexExecutionNano": 104086173
+ },
+ {
+ "batchNumber": 6873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145975449,
+ "shortestRoundTripNano": 69698274,
+ "longestRoundTripNano": 180402300,
+ "averageApexExecutionNano": 63812250,
+ "shortestApexExecutionNano": 11753413,
+ "longestApexExecutionNano": 122101254
+ },
+ {
+ "batchNumber": 6874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139153904,
+ "shortestRoundTripNano": 42698547,
+ "longestRoundTripNano": 171434257,
+ "averageApexExecutionNano": 59178991,
+ "shortestApexExecutionNano": 13551039,
+ "longestApexExecutionNano": 110288961
+ },
+ {
+ "batchNumber": 6875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141749530,
+ "shortestRoundTripNano": 82116566,
+ "longestRoundTripNano": 168057613,
+ "averageApexExecutionNano": 70252412,
+ "shortestApexExecutionNano": 6807560,
+ "longestApexExecutionNano": 131174470
+ },
+ {
+ "batchNumber": 6876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161982256,
+ "shortestRoundTripNano": 44293028,
+ "longestRoundTripNano": 202046941,
+ "averageApexExecutionNano": 76485171,
+ "shortestApexExecutionNano": 13363865,
+ "longestApexExecutionNano": 159924594
+ },
+ {
+ "batchNumber": 6877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163030264,
+ "shortestRoundTripNano": 91669493,
+ "longestRoundTripNano": 188081305,
+ "averageApexExecutionNano": 59223992,
+ "shortestApexExecutionNano": 8176767,
+ "longestApexExecutionNano": 125939766
+ },
+ {
+ "batchNumber": 6878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148335473,
+ "shortestRoundTripNano": 54519576,
+ "longestRoundTripNano": 184348025,
+ "averageApexExecutionNano": 50625312,
+ "shortestApexExecutionNano": 9957974,
+ "longestApexExecutionNano": 121599597
+ },
+ {
+ "batchNumber": 6879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37368",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165019237,
+ "shortestRoundTripNano": 106348450,
+ "longestRoundTripNano": 204743185,
+ "averageApexExecutionNano": 75974268,
+ "shortestApexExecutionNano": 11591738,
+ "longestApexExecutionNano": 134322264
+ },
+ {
+ "batchNumber": 6880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143326913,
+ "shortestRoundTripNano": 47352644,
+ "longestRoundTripNano": 174904575,
+ "averageApexExecutionNano": 56167326,
+ "shortestApexExecutionNano": 5579781,
+ "longestApexExecutionNano": 132850037
+ },
+ {
+ "batchNumber": 6881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143416967,
+ "shortestRoundTripNano": 77848532,
+ "longestRoundTripNano": 169060886,
+ "averageApexExecutionNano": 61176062,
+ "shortestApexExecutionNano": 11267761,
+ "longestApexExecutionNano": 115086765
+ },
+ {
+ "batchNumber": 6882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151910289,
+ "shortestRoundTripNano": 86297736,
+ "longestRoundTripNano": 197891717,
+ "averageApexExecutionNano": 70161237,
+ "shortestApexExecutionNano": 7399289,
+ "longestApexExecutionNano": 135574695
+ },
+ {
+ "batchNumber": 6883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170674916,
+ "shortestRoundTripNano": 74039051,
+ "longestRoundTripNano": 196879924,
+ "averageApexExecutionNano": 69909519,
+ "shortestApexExecutionNano": 10624350,
+ "longestApexExecutionNano": 152571983
+ },
+ {
+ "batchNumber": 6884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134164321,
+ "shortestRoundTripNano": 80943408,
+ "longestRoundTripNano": 165498634,
+ "averageApexExecutionNano": 80699721,
+ "shortestApexExecutionNano": 7761176,
+ "longestApexExecutionNano": 138074494
+ },
+ {
+ "batchNumber": 6885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160778756,
+ "shortestRoundTripNano": 67805176,
+ "longestRoundTripNano": 196436922,
+ "averageApexExecutionNano": 72348530,
+ "shortestApexExecutionNano": 31712342,
+ "longestApexExecutionNano": 126884598
+ },
+ {
+ "batchNumber": 6886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134554260,
+ "shortestRoundTripNano": 75155417,
+ "longestRoundTripNano": 168971391,
+ "averageApexExecutionNano": 58447883,
+ "shortestApexExecutionNano": 7811016,
+ "longestApexExecutionNano": 120821438
+ },
+ {
+ "batchNumber": 6887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37370",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144886947,
+ "shortestRoundTripNano": 60984628,
+ "longestRoundTripNano": 192173868,
+ "averageApexExecutionNano": 67475222,
+ "shortestApexExecutionNano": 8557724,
+ "longestApexExecutionNano": 131689023
+ },
+ {
+ "batchNumber": 6888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165947401,
+ "shortestRoundTripNano": 80332418,
+ "longestRoundTripNano": 189932694,
+ "averageApexExecutionNano": 58632758,
+ "shortestApexExecutionNano": 6581594,
+ "longestApexExecutionNano": 124475268
+ },
+ {
+ "batchNumber": 6889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167327120,
+ "shortestRoundTripNano": 74535572,
+ "longestRoundTripNano": 195211687,
+ "averageApexExecutionNano": 62894731,
+ "shortestApexExecutionNano": 13249593,
+ "longestApexExecutionNano": 126415650
+ },
+ {
+ "batchNumber": 6890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141404553,
+ "shortestRoundTripNano": 36987397,
+ "longestRoundTripNano": 170977696,
+ "averageApexExecutionNano": 58539556,
+ "shortestApexExecutionNano": 7172976,
+ "longestApexExecutionNano": 112669072
+ },
+ {
+ "batchNumber": 6891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126006978,
+ "shortestRoundTripNano": 36099657,
+ "longestRoundTripNano": 158717957,
+ "averageApexExecutionNano": 48823768,
+ "shortestApexExecutionNano": 9490699,
+ "longestApexExecutionNano": 116338013
+ },
+ {
+ "batchNumber": 6892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146371898,
+ "shortestRoundTripNano": 48214938,
+ "longestRoundTripNano": 181414091,
+ "averageApexExecutionNano": 63074786,
+ "shortestApexExecutionNano": 8784697,
+ "longestApexExecutionNano": 134533131
+ },
+ {
+ "batchNumber": 6893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172583818,
+ "shortestRoundTripNano": 47598825,
+ "longestRoundTripNano": 204205093,
+ "averageApexExecutionNano": 53541922,
+ "shortestApexExecutionNano": 7607434,
+ "longestApexExecutionNano": 116677456
+ },
+ {
+ "batchNumber": 6894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144452991,
+ "shortestRoundTripNano": 40873262,
+ "longestRoundTripNano": 181891868,
+ "averageApexExecutionNano": 65240753,
+ "shortestApexExecutionNano": 7817074,
+ "longestApexExecutionNano": 129931246
+ },
+ {
+ "batchNumber": 6895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158669711,
+ "shortestRoundTripNano": 52111243,
+ "longestRoundTripNano": 185133277,
+ "averageApexExecutionNano": 65473445,
+ "shortestApexExecutionNano": 7037196,
+ "longestApexExecutionNano": 134929593
+ },
+ {
+ "batchNumber": 6896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158992651,
+ "shortestRoundTripNano": 65082677,
+ "longestRoundTripNano": 191674521,
+ "averageApexExecutionNano": 72090561,
+ "shortestApexExecutionNano": 10080826,
+ "longestApexExecutionNano": 139921631
+ },
+ {
+ "batchNumber": 6897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169320019,
+ "shortestRoundTripNano": 91612481,
+ "longestRoundTripNano": 200324183,
+ "averageApexExecutionNano": 87535702,
+ "shortestApexExecutionNano": 10373462,
+ "longestApexExecutionNano": 154697560
+ },
+ {
+ "batchNumber": 6898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145353020,
+ "shortestRoundTripNano": 39579691,
+ "longestRoundTripNano": 183985306,
+ "averageApexExecutionNano": 53204192,
+ "shortestApexExecutionNano": 5701150,
+ "longestApexExecutionNano": 118485880
+ },
+ {
+ "batchNumber": 6899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152184405,
+ "shortestRoundTripNano": 76788290,
+ "longestRoundTripNano": 179662888,
+ "averageApexExecutionNano": 63111429,
+ "shortestApexExecutionNano": 6859477,
+ "longestApexExecutionNano": 111623481
+ },
+ {
+ "batchNumber": 6900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136819836,
+ "shortestRoundTripNano": 58459923,
+ "longestRoundTripNano": 165515403,
+ "averageApexExecutionNano": 53897575,
+ "shortestApexExecutionNano": 6649899,
+ "longestApexExecutionNano": 120664532
+ },
+ {
+ "batchNumber": 6901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37374",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159430215,
+ "shortestRoundTripNano": 58894272,
+ "longestRoundTripNano": 190732719,
+ "averageApexExecutionNano": 48509141,
+ "shortestApexExecutionNano": 6411734,
+ "longestApexExecutionNano": 115951875
+ },
+ {
+ "batchNumber": 6902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162133419,
+ "shortestRoundTripNano": 64320064,
+ "longestRoundTripNano": 202355944,
+ "averageApexExecutionNano": 59320400,
+ "shortestApexExecutionNano": 8741602,
+ "longestApexExecutionNano": 133363001
+ },
+ {
+ "batchNumber": 6903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146496501,
+ "shortestRoundTripNano": 64894881,
+ "longestRoundTripNano": 181479447,
+ "averageApexExecutionNano": 64042046,
+ "shortestApexExecutionNano": 6653267,
+ "longestApexExecutionNano": 114024186
+ },
+ {
+ "batchNumber": 6904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145977193,
+ "shortestRoundTripNano": 91629260,
+ "longestRoundTripNano": 167380404,
+ "averageApexExecutionNano": 61168369,
+ "shortestApexExecutionNano": 8198513,
+ "longestApexExecutionNano": 112984387
+ },
+ {
+ "batchNumber": 6905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152296101,
+ "shortestRoundTripNano": 93701204,
+ "longestRoundTripNano": 175486392,
+ "averageApexExecutionNano": 58515727,
+ "shortestApexExecutionNano": 5951894,
+ "longestApexExecutionNano": 105109562
+ },
+ {
+ "batchNumber": 6906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139704371,
+ "shortestRoundTripNano": 51598991,
+ "longestRoundTripNano": 168190454,
+ "averageApexExecutionNano": 65571335,
+ "shortestApexExecutionNano": 15483283,
+ "longestApexExecutionNano": 123438667
+ },
+ {
+ "batchNumber": 6907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37380",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147344269,
+ "shortestRoundTripNano": 53640258,
+ "longestRoundTripNano": 181586280,
+ "averageApexExecutionNano": 74104335,
+ "shortestApexExecutionNano": 13424421,
+ "longestApexExecutionNano": 149151259
+ },
+ {
+ "batchNumber": 6908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135881835,
+ "shortestRoundTripNano": 52503402,
+ "longestRoundTripNano": 172666358,
+ "averageApexExecutionNano": 51260121,
+ "shortestApexExecutionNano": 6862643,
+ "longestApexExecutionNano": 115804108
+ },
+ {
+ "batchNumber": 6909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124953231,
+ "shortestRoundTripNano": 35227921,
+ "longestRoundTripNano": 150686034,
+ "averageApexExecutionNano": 50042176,
+ "shortestApexExecutionNano": 8072415,
+ "longestApexExecutionNano": 101203699
+ },
+ {
+ "batchNumber": 6910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147746883,
+ "shortestRoundTripNano": 71215486,
+ "longestRoundTripNano": 173162846,
+ "averageApexExecutionNano": 55970211,
+ "shortestApexExecutionNano": 7952132,
+ "longestApexExecutionNano": 119647357
+ },
+ {
+ "batchNumber": 6911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139952547,
+ "shortestRoundTripNano": 66487417,
+ "longestRoundTripNano": 170104703,
+ "averageApexExecutionNano": 55193846,
+ "shortestApexExecutionNano": 12342441,
+ "longestApexExecutionNano": 103177763
+ },
+ {
+ "batchNumber": 6912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129779647,
+ "shortestRoundTripNano": 37956312,
+ "longestRoundTripNano": 166584876,
+ "averageApexExecutionNano": 57118533,
+ "shortestApexExecutionNano": 5149578,
+ "longestApexExecutionNano": 110919843
+ },
+ {
+ "batchNumber": 6913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141495064,
+ "shortestRoundTripNano": 47827394,
+ "longestRoundTripNano": 171912636,
+ "averageApexExecutionNano": 59580604,
+ "shortestApexExecutionNano": 8167621,
+ "longestApexExecutionNano": 105882814
+ },
+ {
+ "batchNumber": 6914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148990253,
+ "shortestRoundTripNano": 66301490,
+ "longestRoundTripNano": 173203242,
+ "averageApexExecutionNano": 53925014,
+ "shortestApexExecutionNano": 7929888,
+ "longestApexExecutionNano": 114600975
+ },
+ {
+ "batchNumber": 6915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129641331,
+ "shortestRoundTripNano": 67308944,
+ "longestRoundTripNano": 152851533,
+ "averageApexExecutionNano": 61387566,
+ "shortestApexExecutionNano": 12105427,
+ "longestApexExecutionNano": 109160528
+ },
+ {
+ "batchNumber": 6916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133794033,
+ "shortestRoundTripNano": 58070739,
+ "longestRoundTripNano": 162391682,
+ "averageApexExecutionNano": 57851601,
+ "shortestApexExecutionNano": 7473238,
+ "longestApexExecutionNano": 107839654
+ },
+ {
+ "batchNumber": 6917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37384",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156487215,
+ "shortestRoundTripNano": 54907698,
+ "longestRoundTripNano": 185028599,
+ "averageApexExecutionNano": 44887764,
+ "shortestApexExecutionNano": 7490485,
+ "longestApexExecutionNano": 115891745
+ },
+ {
+ "batchNumber": 6918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138059792,
+ "shortestRoundTripNano": 69222882,
+ "longestRoundTripNano": 165321864,
+ "averageApexExecutionNano": 62826211,
+ "shortestApexExecutionNano": 8221208,
+ "longestApexExecutionNano": 117960952
+ },
+ {
+ "batchNumber": 6919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153641957,
+ "shortestRoundTripNano": 59718406,
+ "longestRoundTripNano": 183211355,
+ "averageApexExecutionNano": 63762126,
+ "shortestApexExecutionNano": 8300606,
+ "longestApexExecutionNano": 108406428
+ },
+ {
+ "batchNumber": 6920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120174404,
+ "shortestRoundTripNano": 62816061,
+ "longestRoundTripNano": 149424652,
+ "averageApexExecutionNano": 53455760,
+ "shortestApexExecutionNano": 7251255,
+ "longestApexExecutionNano": 100432974
+ },
+ {
+ "batchNumber": 6921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167215242,
+ "shortestRoundTripNano": 89577242,
+ "longestRoundTripNano": 200896585,
+ "averageApexExecutionNano": 82322654,
+ "shortestApexExecutionNano": 7591281,
+ "longestApexExecutionNano": 130338355
+ },
+ {
+ "batchNumber": 6922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137085102,
+ "shortestRoundTripNano": 68807851,
+ "longestRoundTripNano": 173141610,
+ "averageApexExecutionNano": 52961155,
+ "shortestApexExecutionNano": 5883601,
+ "longestApexExecutionNano": 131323270
+ },
+ {
+ "batchNumber": 6923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37382",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170257864,
+ "shortestRoundTripNano": 72964079,
+ "longestRoundTripNano": 196713406,
+ "averageApexExecutionNano": 75861565,
+ "shortestApexExecutionNano": 7402129,
+ "longestApexExecutionNano": 141590281
+ },
+ {
+ "batchNumber": 6924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132836459,
+ "shortestRoundTripNano": 45302812,
+ "longestRoundTripNano": 161538632,
+ "averageApexExecutionNano": 52986787,
+ "shortestApexExecutionNano": 4976459,
+ "longestApexExecutionNano": 108755805
+ },
+ {
+ "batchNumber": 6925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143177124,
+ "shortestRoundTripNano": 77757632,
+ "longestRoundTripNano": 172704203,
+ "averageApexExecutionNano": 52903714,
+ "shortestApexExecutionNano": 5821646,
+ "longestApexExecutionNano": 127834425
+ },
+ {
+ "batchNumber": 6926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153031067,
+ "shortestRoundTripNano": 45923349,
+ "longestRoundTripNano": 181164563,
+ "averageApexExecutionNano": 74616113,
+ "shortestApexExecutionNano": 7175943,
+ "longestApexExecutionNano": 137790157
+ },
+ {
+ "batchNumber": 6927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157118407,
+ "shortestRoundTripNano": 67252799,
+ "longestRoundTripNano": 195782222,
+ "averageApexExecutionNano": 58723743,
+ "shortestApexExecutionNano": 7701371,
+ "longestApexExecutionNano": 108743211
+ },
+ {
+ "batchNumber": 6928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131897442,
+ "shortestRoundTripNano": 49804013,
+ "longestRoundTripNano": 159131836,
+ "averageApexExecutionNano": 60503567,
+ "shortestApexExecutionNano": 8900954,
+ "longestApexExecutionNano": 114151269
+ },
+ {
+ "batchNumber": 6929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37386",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143848498,
+ "shortestRoundTripNano": 60099551,
+ "longestRoundTripNano": 180006704,
+ "averageApexExecutionNano": 71517082,
+ "shortestApexExecutionNano": 9087757,
+ "longestApexExecutionNano": 137264440
+ },
+ {
+ "batchNumber": 6930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141335566,
+ "shortestRoundTripNano": 76409694,
+ "longestRoundTripNano": 164509555,
+ "averageApexExecutionNano": 60178996,
+ "shortestApexExecutionNano": 8331524,
+ "longestApexExecutionNano": 109856711
+ },
+ {
+ "batchNumber": 6931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141272230,
+ "shortestRoundTripNano": 51012218,
+ "longestRoundTripNano": 174002390,
+ "averageApexExecutionNano": 58967729,
+ "shortestApexExecutionNano": 8208138,
+ "longestApexExecutionNano": 121286688
+ },
+ {
+ "batchNumber": 6932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117027856,
+ "shortestRoundTripNano": 54482161,
+ "longestRoundTripNano": 148382504,
+ "averageApexExecutionNano": 61628211,
+ "shortestApexExecutionNano": 13778651,
+ "longestApexExecutionNano": 110427739
+ },
+ {
+ "batchNumber": 6933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157284649,
+ "shortestRoundTripNano": 63012112,
+ "longestRoundTripNano": 183146641,
+ "averageApexExecutionNano": 66875548,
+ "shortestApexExecutionNano": 10406669,
+ "longestApexExecutionNano": 131129162
+ },
+ {
+ "batchNumber": 6934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137314508,
+ "shortestRoundTripNano": 63786960,
+ "longestRoundTripNano": 172720819,
+ "averageApexExecutionNano": 38985828,
+ "shortestApexExecutionNano": 8981869,
+ "longestApexExecutionNano": 83057921
+ },
+ {
+ "batchNumber": 6935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145262241,
+ "shortestRoundTripNano": 49680311,
+ "longestRoundTripNano": 178081090,
+ "averageApexExecutionNano": 69499087,
+ "shortestApexExecutionNano": 8286899,
+ "longestApexExecutionNano": 126506529
+ },
+ {
+ "batchNumber": 6936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154682672,
+ "shortestRoundTripNano": 51230254,
+ "longestRoundTripNano": 188475224,
+ "averageApexExecutionNano": 65100029,
+ "shortestApexExecutionNano": 10413719,
+ "longestApexExecutionNano": 114691450
+ },
+ {
+ "batchNumber": 6937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161924098,
+ "shortestRoundTripNano": 51459335,
+ "longestRoundTripNano": 194297786,
+ "averageApexExecutionNano": 64471342,
+ "shortestApexExecutionNano": 9000775,
+ "longestApexExecutionNano": 133469086
+ },
+ {
+ "batchNumber": 6938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37392",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168025391,
+ "shortestRoundTripNano": 70878092,
+ "longestRoundTripNano": 200179953,
+ "averageApexExecutionNano": 71355333,
+ "shortestApexExecutionNano": 11770969,
+ "longestApexExecutionNano": 146518605
+ },
+ {
+ "batchNumber": 6939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166600693,
+ "shortestRoundTripNano": 79434517,
+ "longestRoundTripNano": 202036928,
+ "averageApexExecutionNano": 67888851,
+ "shortestApexExecutionNano": 6091821,
+ "longestApexExecutionNano": 124218869
+ },
+ {
+ "batchNumber": 6940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131374281,
+ "shortestRoundTripNano": 50510811,
+ "longestRoundTripNano": 158884730,
+ "averageApexExecutionNano": 47200240,
+ "shortestApexExecutionNano": 7568707,
+ "longestApexExecutionNano": 104179587
+ },
+ {
+ "batchNumber": 6941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165369746,
+ "shortestRoundTripNano": 80348747,
+ "longestRoundTripNano": 196273360,
+ "averageApexExecutionNano": 61131769,
+ "shortestApexExecutionNano": 5746388,
+ "longestApexExecutionNano": 146226537
+ },
+ {
+ "batchNumber": 6942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147921631,
+ "shortestRoundTripNano": 78588337,
+ "longestRoundTripNano": 185394688,
+ "averageApexExecutionNano": 64761753,
+ "shortestApexExecutionNano": 7701856,
+ "longestApexExecutionNano": 131943431
+ },
+ {
+ "batchNumber": 6943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149887129,
+ "shortestRoundTripNano": 67847215,
+ "longestRoundTripNano": 186678703,
+ "averageApexExecutionNano": 72603416,
+ "shortestApexExecutionNano": 9464908,
+ "longestApexExecutionNano": 141202345
+ },
+ {
+ "batchNumber": 6944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150477899,
+ "shortestRoundTripNano": 85042012,
+ "longestRoundTripNano": 175875922,
+ "averageApexExecutionNano": 60640041,
+ "shortestApexExecutionNano": 8123666,
+ "longestApexExecutionNano": 113001778
+ },
+ {
+ "batchNumber": 6945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37390",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144979855,
+ "shortestRoundTripNano": 66980136,
+ "longestRoundTripNano": 181276568,
+ "averageApexExecutionNano": 77773462,
+ "shortestApexExecutionNano": 7073686,
+ "longestApexExecutionNano": 141997219
+ },
+ {
+ "batchNumber": 6946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162043362,
+ "shortestRoundTripNano": 69441820,
+ "longestRoundTripNano": 197794830,
+ "averageApexExecutionNano": 76227454,
+ "shortestApexExecutionNano": 10224923,
+ "longestApexExecutionNano": 140746980
+ },
+ {
+ "batchNumber": 6947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157628172,
+ "shortestRoundTripNano": 59484966,
+ "longestRoundTripNano": 187102150,
+ "averageApexExecutionNano": 51436224,
+ "shortestApexExecutionNano": 8069156,
+ "longestApexExecutionNano": 121714628
+ },
+ {
+ "batchNumber": 6948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139957756,
+ "shortestRoundTripNano": 47781138,
+ "longestRoundTripNano": 161594576,
+ "averageApexExecutionNano": 55725783,
+ "shortestApexExecutionNano": 5929118,
+ "longestApexExecutionNano": 116771222
+ },
+ {
+ "batchNumber": 6949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157682229,
+ "shortestRoundTripNano": 76638604,
+ "longestRoundTripNano": 184468517,
+ "averageApexExecutionNano": 59528816,
+ "shortestApexExecutionNano": 6810587,
+ "longestApexExecutionNano": 115221144
+ },
+ {
+ "batchNumber": 6950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148267131,
+ "shortestRoundTripNano": 76343003,
+ "longestRoundTripNano": 179668330,
+ "averageApexExecutionNano": 64396023,
+ "shortestApexExecutionNano": 7577315,
+ "longestApexExecutionNano": 131264685
+ },
+ {
+ "batchNumber": 6951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152410916,
+ "shortestRoundTripNano": 82697222,
+ "longestRoundTripNano": 187276277,
+ "averageApexExecutionNano": 54615244,
+ "shortestApexExecutionNano": 9580507,
+ "longestApexExecutionNano": 128322532
+ },
+ {
+ "batchNumber": 6952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37396",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144628686,
+ "shortestRoundTripNano": 27365146,
+ "longestRoundTripNano": 186774387,
+ "averageApexExecutionNano": 62558461,
+ "shortestApexExecutionNano": 5958733,
+ "longestApexExecutionNano": 134313210
+ },
+ {
+ "batchNumber": 6953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138447169,
+ "shortestRoundTripNano": 57714153,
+ "longestRoundTripNano": 165441191,
+ "averageApexExecutionNano": 63866884,
+ "shortestApexExecutionNano": 9491869,
+ "longestApexExecutionNano": 118550702
+ },
+ {
+ "batchNumber": 6954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184769066,
+ "shortestRoundTripNano": 69620627,
+ "longestRoundTripNano": 223478877,
+ "averageApexExecutionNano": 68946300,
+ "shortestApexExecutionNano": 12125013,
+ "longestApexExecutionNano": 141017807
+ },
+ {
+ "batchNumber": 6955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169879986,
+ "shortestRoundTripNano": 74096991,
+ "longestRoundTripNano": 206999400,
+ "averageApexExecutionNano": 69011940,
+ "shortestApexExecutionNano": 6170962,
+ "longestApexExecutionNano": 153245558
+ },
+ {
+ "batchNumber": 6956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158627821,
+ "shortestRoundTripNano": 59908460,
+ "longestRoundTripNano": 183719294,
+ "averageApexExecutionNano": 63042736,
+ "shortestApexExecutionNano": 7961600,
+ "longestApexExecutionNano": 137761927
+ },
+ {
+ "batchNumber": 6957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 194503879,
+ "shortestRoundTripNano": 121557170,
+ "longestRoundTripNano": 219254283,
+ "averageApexExecutionNano": 92370975,
+ "shortestApexExecutionNano": 8797972,
+ "longestApexExecutionNano": 157928080
+ },
+ {
+ "batchNumber": 6958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139163945,
+ "shortestRoundTripNano": 60840511,
+ "longestRoundTripNano": 163840314,
+ "averageApexExecutionNano": 49179846,
+ "shortestApexExecutionNano": 9073244,
+ "longestApexExecutionNano": 121297288
+ },
+ {
+ "batchNumber": 6959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122919743,
+ "shortestRoundTripNano": 61716768,
+ "longestRoundTripNano": 150135739,
+ "averageApexExecutionNano": 58547375,
+ "shortestApexExecutionNano": 6924168,
+ "longestApexExecutionNano": 103188962
+ },
+ {
+ "batchNumber": 6960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168535095,
+ "shortestRoundTripNano": 60060443,
+ "longestRoundTripNano": 214423097,
+ "averageApexExecutionNano": 55675647,
+ "shortestApexExecutionNano": 6585722,
+ "longestApexExecutionNano": 119608222
+ },
+ {
+ "batchNumber": 6961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148763601,
+ "shortestRoundTripNano": 82888183,
+ "longestRoundTripNano": 180757884,
+ "averageApexExecutionNano": 82052425,
+ "shortestApexExecutionNano": 15340483,
+ "longestApexExecutionNano": 150570398
+ },
+ {
+ "batchNumber": 6962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37400",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151356783,
+ "shortestRoundTripNano": 56261031,
+ "longestRoundTripNano": 181623816,
+ "averageApexExecutionNano": 73611669,
+ "shortestApexExecutionNano": 12377195,
+ "longestApexExecutionNano": 129808917
+ },
+ {
+ "batchNumber": 6963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137979042,
+ "shortestRoundTripNano": 55620352,
+ "longestRoundTripNano": 166658661,
+ "averageApexExecutionNano": 48779313,
+ "shortestApexExecutionNano": 11318259,
+ "longestApexExecutionNano": 108577647
+ },
+ {
+ "batchNumber": 6964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159094788,
+ "shortestRoundTripNano": 71755863,
+ "longestRoundTripNano": 192036610,
+ "averageApexExecutionNano": 80767393,
+ "shortestApexExecutionNano": 11037053,
+ "longestApexExecutionNano": 142090608
+ },
+ {
+ "batchNumber": 6965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151008452,
+ "shortestRoundTripNano": 63546731,
+ "longestRoundTripNano": 179304587,
+ "averageApexExecutionNano": 57154586,
+ "shortestApexExecutionNano": 4966608,
+ "longestApexExecutionNano": 120689735
+ },
+ {
+ "batchNumber": 6966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127435958,
+ "shortestRoundTripNano": 60986658,
+ "longestRoundTripNano": 151840833,
+ "averageApexExecutionNano": 55633889,
+ "shortestApexExecutionNano": 17309892,
+ "longestApexExecutionNano": 100743196
+ },
+ {
+ "batchNumber": 6967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134345934,
+ "shortestRoundTripNano": 60325608,
+ "longestRoundTripNano": 170525955,
+ "averageApexExecutionNano": 58536980,
+ "shortestApexExecutionNano": 6284095,
+ "longestApexExecutionNano": 113307172
+ },
+ {
+ "batchNumber": 6968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140435800,
+ "shortestRoundTripNano": 57878233,
+ "longestRoundTripNano": 169925154,
+ "averageApexExecutionNano": 52873809,
+ "shortestApexExecutionNano": 9312139,
+ "longestApexExecutionNano": 108607886
+ },
+ {
+ "batchNumber": 6969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148201223,
+ "shortestRoundTripNano": 60983359,
+ "longestRoundTripNano": 179982120,
+ "averageApexExecutionNano": 64490407,
+ "shortestApexExecutionNano": 7525216,
+ "longestApexExecutionNano": 124098355
+ },
+ {
+ "batchNumber": 6970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159189330,
+ "shortestRoundTripNano": 74284209,
+ "longestRoundTripNano": 194127127,
+ "averageApexExecutionNano": 58916591,
+ "shortestApexExecutionNano": 8668609,
+ "longestApexExecutionNano": 125384242
+ },
+ {
+ "batchNumber": 6971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153232075,
+ "shortestRoundTripNano": 78672801,
+ "longestRoundTripNano": 180345342,
+ "averageApexExecutionNano": 73037125,
+ "shortestApexExecutionNano": 10717774,
+ "longestApexExecutionNano": 128849885
+ },
+ {
+ "batchNumber": 6972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166724940,
+ "shortestRoundTripNano": 70239945,
+ "longestRoundTripNano": 202131097,
+ "averageApexExecutionNano": 75796956,
+ "shortestApexExecutionNano": 8586776,
+ "longestApexExecutionNano": 151238973
+ },
+ {
+ "batchNumber": 6973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152830180,
+ "shortestRoundTripNano": 47843926,
+ "longestRoundTripNano": 187220440,
+ "averageApexExecutionNano": 59705137,
+ "shortestApexExecutionNano": 6566651,
+ "longestApexExecutionNano": 151606901
+ },
+ {
+ "batchNumber": 6974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145921213,
+ "shortestRoundTripNano": 72909298,
+ "longestRoundTripNano": 179785848,
+ "averageApexExecutionNano": 66925763,
+ "shortestApexExecutionNano": 5383309,
+ "longestApexExecutionNano": 138502099
+ },
+ {
+ "batchNumber": 6975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132232990,
+ "shortestRoundTripNano": 54062096,
+ "longestRoundTripNano": 168300506,
+ "averageApexExecutionNano": 58195753,
+ "shortestApexExecutionNano": 8794813,
+ "longestApexExecutionNano": 102978001
+ },
+ {
+ "batchNumber": 6976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37404",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127427180,
+ "shortestRoundTripNano": 57073208,
+ "longestRoundTripNano": 154681353,
+ "averageApexExecutionNano": 55669611,
+ "shortestApexExecutionNano": 5948557,
+ "longestApexExecutionNano": 112090433
+ },
+ {
+ "batchNumber": 6977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136008639,
+ "shortestRoundTripNano": 59541424,
+ "longestRoundTripNano": 163474834,
+ "averageApexExecutionNano": 56381619,
+ "shortestApexExecutionNano": 5176731,
+ "longestApexExecutionNano": 123790745
+ },
+ {
+ "batchNumber": 6978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174799442,
+ "shortestRoundTripNano": 69505662,
+ "longestRoundTripNano": 207156137,
+ "averageApexExecutionNano": 78597681,
+ "shortestApexExecutionNano": 7098977,
+ "longestApexExecutionNano": 150453833
+ },
+ {
+ "batchNumber": 6979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150204128,
+ "shortestRoundTripNano": 76345766,
+ "longestRoundTripNano": 180394852,
+ "averageApexExecutionNano": 56284330,
+ "shortestApexExecutionNano": 11174562,
+ "longestApexExecutionNano": 129545735
+ },
+ {
+ "batchNumber": 6980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181492639,
+ "shortestRoundTripNano": 65725811,
+ "longestRoundTripNano": 217431734,
+ "averageApexExecutionNano": 66055853,
+ "shortestApexExecutionNano": 13432221,
+ "longestApexExecutionNano": 154463314
+ },
+ {
+ "batchNumber": 6981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139700143,
+ "shortestRoundTripNano": 60757627,
+ "longestRoundTripNano": 171603099,
+ "averageApexExecutionNano": 54106275,
+ "shortestApexExecutionNano": 12784038,
+ "longestApexExecutionNano": 129160443
+ },
+ {
+ "batchNumber": 6982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151034798,
+ "shortestRoundTripNano": 82398090,
+ "longestRoundTripNano": 173533288,
+ "averageApexExecutionNano": 64272750,
+ "shortestApexExecutionNano": 6221987,
+ "longestApexExecutionNano": 128975092
+ },
+ {
+ "batchNumber": 6983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148122155,
+ "shortestRoundTripNano": 58592236,
+ "longestRoundTripNano": 191492619,
+ "averageApexExecutionNano": 54723642,
+ "shortestApexExecutionNano": 9007620,
+ "longestApexExecutionNano": 123021127
+ },
+ {
+ "batchNumber": 6984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148164539,
+ "shortestRoundTripNano": 30737447,
+ "longestRoundTripNano": 186805416,
+ "averageApexExecutionNano": 68953190,
+ "shortestApexExecutionNano": 5709913,
+ "longestApexExecutionNano": 152151976
+ },
+ {
+ "batchNumber": 6985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153094129,
+ "shortestRoundTripNano": 84908429,
+ "longestRoundTripNano": 176178876,
+ "averageApexExecutionNano": 67043394,
+ "shortestApexExecutionNano": 6628909,
+ "longestApexExecutionNano": 118816009
+ },
+ {
+ "batchNumber": 6986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37408",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192623613,
+ "shortestRoundTripNano": 55889848,
+ "longestRoundTripNano": 231183999,
+ "averageApexExecutionNano": 81415771,
+ "shortestApexExecutionNano": 7247345,
+ "longestApexExecutionNano": 186588585
+ },
+ {
+ "batchNumber": 6987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128238444,
+ "shortestRoundTripNano": 55174033,
+ "longestRoundTripNano": 155812874,
+ "averageApexExecutionNano": 51395292,
+ "shortestApexExecutionNano": 6128571,
+ "longestApexExecutionNano": 103842773
+ },
+ {
+ "batchNumber": 6988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152222757,
+ "shortestRoundTripNano": 67789971,
+ "longestRoundTripNano": 185229164,
+ "averageApexExecutionNano": 63935432,
+ "shortestApexExecutionNano": 6734024,
+ "longestApexExecutionNano": 112573181
+ },
+ {
+ "batchNumber": 6989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37412",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151647049,
+ "shortestRoundTripNano": 73996773,
+ "longestRoundTripNano": 174562365,
+ "averageApexExecutionNano": 71670546,
+ "shortestApexExecutionNano": 15221502,
+ "longestApexExecutionNano": 126002768
+ },
+ {
+ "batchNumber": 6990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153411628,
+ "shortestRoundTripNano": 58838308,
+ "longestRoundTripNano": 179821173,
+ "averageApexExecutionNano": 64652928,
+ "shortestApexExecutionNano": 5800441,
+ "longestApexExecutionNano": 110647032
+ },
+ {
+ "batchNumber": 6991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133409014,
+ "shortestRoundTripNano": 57841497,
+ "longestRoundTripNano": 164235658,
+ "averageApexExecutionNano": 51794235,
+ "shortestApexExecutionNano": 6796913,
+ "longestApexExecutionNano": 101528363
+ },
+ {
+ "batchNumber": 6992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130932427,
+ "shortestRoundTripNano": 65544256,
+ "longestRoundTripNano": 157808126,
+ "averageApexExecutionNano": 71397757,
+ "shortestApexExecutionNano": 8788441,
+ "longestApexExecutionNano": 117498447
+ },
+ {
+ "batchNumber": 6993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133079261,
+ "shortestRoundTripNano": 47446162,
+ "longestRoundTripNano": 162158035,
+ "averageApexExecutionNano": 57221573,
+ "shortestApexExecutionNano": 5866005,
+ "longestApexExecutionNano": 125731614
+ },
+ {
+ "batchNumber": 6994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150945077,
+ "shortestRoundTripNano": 58152171,
+ "longestRoundTripNano": 182668749,
+ "averageApexExecutionNano": 58477783,
+ "shortestApexExecutionNano": 11209714,
+ "longestApexExecutionNano": 120105736
+ },
+ {
+ "batchNumber": 6995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130058337,
+ "shortestRoundTripNano": 56807691,
+ "longestRoundTripNano": 156573615,
+ "averageApexExecutionNano": 67989974,
+ "shortestApexExecutionNano": 14630311,
+ "longestApexExecutionNano": 122805641
+ },
+ {
+ "batchNumber": 6996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151912537,
+ "shortestRoundTripNano": 74583163,
+ "longestRoundTripNano": 198375163,
+ "averageApexExecutionNano": 72792175,
+ "shortestApexExecutionNano": 26394378,
+ "longestApexExecutionNano": 118049502
+ },
+ {
+ "batchNumber": 6997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148956886,
+ "shortestRoundTripNano": 65216605,
+ "longestRoundTripNano": 189271098,
+ "averageApexExecutionNano": 56545540,
+ "shortestApexExecutionNano": 7363084,
+ "longestApexExecutionNano": 124849860
+ },
+ {
+ "batchNumber": 6998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139976042,
+ "shortestRoundTripNano": 40846561,
+ "longestRoundTripNano": 166184240,
+ "averageApexExecutionNano": 65033639,
+ "shortestApexExecutionNano": 9625254,
+ "longestApexExecutionNano": 123591178
+ },
+ {
+ "batchNumber": 6999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131588933,
+ "shortestRoundTripNano": 53076833,
+ "longestRoundTripNano": 167691886,
+ "averageApexExecutionNano": 44589030,
+ "shortestApexExecutionNano": 7625449,
+ "longestApexExecutionNano": 123273597
+ },
+ {
+ "batchNumber": 7000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132249251,
+ "shortestRoundTripNano": 62676380,
+ "longestRoundTripNano": 160659116,
+ "averageApexExecutionNano": 51402507,
+ "shortestApexExecutionNano": 10374188,
+ "longestApexExecutionNano": 119403189
+ },
+ {
+ "batchNumber": 7001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37414",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142572768,
+ "shortestRoundTripNano": 54500275,
+ "longestRoundTripNano": 175844877,
+ "averageApexExecutionNano": 57936652,
+ "shortestApexExecutionNano": 11162085,
+ "longestApexExecutionNano": 125404040
+ },
+ {
+ "batchNumber": 7002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149458258,
+ "shortestRoundTripNano": 76962959,
+ "longestRoundTripNano": 180363168,
+ "averageApexExecutionNano": 69096618,
+ "shortestApexExecutionNano": 16797175,
+ "longestApexExecutionNano": 121863179
+ },
+ {
+ "batchNumber": 7003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165157476,
+ "shortestRoundTripNano": 98332852,
+ "longestRoundTripNano": 187668312,
+ "averageApexExecutionNano": 73556789,
+ "shortestApexExecutionNano": 23685796,
+ "longestApexExecutionNano": 131266796
+ },
+ {
+ "batchNumber": 7004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145701909,
+ "shortestRoundTripNano": 66297532,
+ "longestRoundTripNano": 173156801,
+ "averageApexExecutionNano": 57143884,
+ "shortestApexExecutionNano": 6006198,
+ "longestApexExecutionNano": 129857096
+ },
+ {
+ "batchNumber": 7005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37418",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149050942,
+ "shortestRoundTripNano": 56828117,
+ "longestRoundTripNano": 192635750,
+ "averageApexExecutionNano": 59446417,
+ "shortestApexExecutionNano": 9104244,
+ "longestApexExecutionNano": 127309104
+ },
+ {
+ "batchNumber": 7006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149399595,
+ "shortestRoundTripNano": 28312572,
+ "longestRoundTripNano": 188118969,
+ "averageApexExecutionNano": 65840903,
+ "shortestApexExecutionNano": 8978709,
+ "longestApexExecutionNano": 150759410
+ },
+ {
+ "batchNumber": 7007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132001152,
+ "shortestRoundTripNano": 69426418,
+ "longestRoundTripNano": 165125659,
+ "averageApexExecutionNano": 44547813,
+ "shortestApexExecutionNano": 8400671,
+ "longestApexExecutionNano": 103839156
+ },
+ {
+ "batchNumber": 7008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151740967,
+ "shortestRoundTripNano": 42796134,
+ "longestRoundTripNano": 186072923,
+ "averageApexExecutionNano": 47980318,
+ "shortestApexExecutionNano": 8701996,
+ "longestApexExecutionNano": 134780778
+ },
+ {
+ "batchNumber": 7009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155493652,
+ "shortestRoundTripNano": 75822267,
+ "longestRoundTripNano": 183267934,
+ "averageApexExecutionNano": 55928553,
+ "shortestApexExecutionNano": 7070176,
+ "longestApexExecutionNano": 136370599
+ },
+ {
+ "batchNumber": 7010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151909123,
+ "shortestRoundTripNano": 86231030,
+ "longestRoundTripNano": 184026107,
+ "averageApexExecutionNano": 58965481,
+ "shortestApexExecutionNano": 7383365,
+ "longestApexExecutionNano": 135852170
+ },
+ {
+ "batchNumber": 7011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157015001,
+ "shortestRoundTripNano": 83826859,
+ "longestRoundTripNano": 180263830,
+ "averageApexExecutionNano": 69682318,
+ "shortestApexExecutionNano": 5537650,
+ "longestApexExecutionNano": 139058634
+ },
+ {
+ "batchNumber": 7012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37420",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132405073,
+ "shortestRoundTripNano": 49881507,
+ "longestRoundTripNano": 174052697,
+ "averageApexExecutionNano": 51892366,
+ "shortestApexExecutionNano": 7716066,
+ "longestApexExecutionNano": 129801260
+ },
+ {
+ "batchNumber": 7013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145239242,
+ "shortestRoundTripNano": 85279927,
+ "longestRoundTripNano": 176708510,
+ "averageApexExecutionNano": 73009197,
+ "shortestApexExecutionNano": 7733814,
+ "longestApexExecutionNano": 137753832
+ },
+ {
+ "batchNumber": 7014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131989056,
+ "shortestRoundTripNano": 57552381,
+ "longestRoundTripNano": 164221588,
+ "averageApexExecutionNano": 47467666,
+ "shortestApexExecutionNano": 5562075,
+ "longestApexExecutionNano": 102071100
+ },
+ {
+ "batchNumber": 7015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173386830,
+ "shortestRoundTripNano": 69176995,
+ "longestRoundTripNano": 216907708,
+ "averageApexExecutionNano": 77972991,
+ "shortestApexExecutionNano": 13306846,
+ "longestApexExecutionNano": 168794190
+ },
+ {
+ "batchNumber": 7016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164572766,
+ "shortestRoundTripNano": 45827855,
+ "longestRoundTripNano": 196184234,
+ "averageApexExecutionNano": 79945312,
+ "shortestApexExecutionNano": 12282836,
+ "longestApexExecutionNano": 155369225
+ },
+ {
+ "batchNumber": 7017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134863163,
+ "shortestRoundTripNano": 54088380,
+ "longestRoundTripNano": 164269776,
+ "averageApexExecutionNano": 54851531,
+ "shortestApexExecutionNano": 8544328,
+ "longestApexExecutionNano": 125280238
+ },
+ {
+ "batchNumber": 7018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149227635,
+ "shortestRoundTripNano": 85516788,
+ "longestRoundTripNano": 177284036,
+ "averageApexExecutionNano": 76114768,
+ "shortestApexExecutionNano": 9824599,
+ "longestApexExecutionNano": 146640063
+ },
+ {
+ "batchNumber": 7019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141022417,
+ "shortestRoundTripNano": 59563065,
+ "longestRoundTripNano": 166485094,
+ "averageApexExecutionNano": 69592755,
+ "shortestApexExecutionNano": 6799550,
+ "longestApexExecutionNano": 120205646
+ },
+ {
+ "batchNumber": 7020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147681202,
+ "shortestRoundTripNano": 79827487,
+ "longestRoundTripNano": 174035225,
+ "averageApexExecutionNano": 59027647,
+ "shortestApexExecutionNano": 4524941,
+ "longestApexExecutionNano": 118702096
+ },
+ {
+ "batchNumber": 7021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 193802561,
+ "shortestRoundTripNano": 97015418,
+ "longestRoundTripNano": 235284732,
+ "averageApexExecutionNano": 88963378,
+ "shortestApexExecutionNano": 13537381,
+ "longestApexExecutionNano": 177286849
+ },
+ {
+ "batchNumber": 7022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127359734,
+ "shortestRoundTripNano": 52789171,
+ "longestRoundTripNano": 157246026,
+ "averageApexExecutionNano": 50470285,
+ "shortestApexExecutionNano": 7470275,
+ "longestApexExecutionNano": 95286520
+ },
+ {
+ "batchNumber": 7023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138742515,
+ "shortestRoundTripNano": 44557591,
+ "longestRoundTripNano": 177655708,
+ "averageApexExecutionNano": 54602171,
+ "shortestApexExecutionNano": 5626438,
+ "longestApexExecutionNano": 114240068
+ },
+ {
+ "batchNumber": 7024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141622610,
+ "shortestRoundTripNano": 67608739,
+ "longestRoundTripNano": 168310119,
+ "averageApexExecutionNano": 64991940,
+ "shortestApexExecutionNano": 8348778,
+ "longestApexExecutionNano": 115438594
+ },
+ {
+ "batchNumber": 7025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141796439,
+ "shortestRoundTripNano": 56197744,
+ "longestRoundTripNano": 175355837,
+ "averageApexExecutionNano": 48108437,
+ "shortestApexExecutionNano": 6127070,
+ "longestApexExecutionNano": 114437664
+ },
+ {
+ "batchNumber": 7026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151515007,
+ "shortestRoundTripNano": 81847656,
+ "longestRoundTripNano": 185232663,
+ "averageApexExecutionNano": 72308451,
+ "shortestApexExecutionNano": 15425757,
+ "longestApexExecutionNano": 113852479
+ },
+ {
+ "batchNumber": 7027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136857148,
+ "shortestRoundTripNano": 46699254,
+ "longestRoundTripNano": 161156084,
+ "averageApexExecutionNano": 65884514,
+ "shortestApexExecutionNano": 9440112,
+ "longestApexExecutionNano": 114583036
+ },
+ {
+ "batchNumber": 7028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142823313,
+ "shortestRoundTripNano": 60343969,
+ "longestRoundTripNano": 183226035,
+ "averageApexExecutionNano": 70582902,
+ "shortestApexExecutionNano": 8700942,
+ "longestApexExecutionNano": 151027330
+ },
+ {
+ "batchNumber": 7029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139049051,
+ "shortestRoundTripNano": 63819723,
+ "longestRoundTripNano": 163103137,
+ "averageApexExecutionNano": 56418444,
+ "shortestApexExecutionNano": 6600595,
+ "longestApexExecutionNano": 111454703
+ },
+ {
+ "batchNumber": 7030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140755287,
+ "shortestRoundTripNano": 65999250,
+ "longestRoundTripNano": 172603609,
+ "averageApexExecutionNano": 64208097,
+ "shortestApexExecutionNano": 13763220,
+ "longestApexExecutionNano": 143851921
+ },
+ {
+ "batchNumber": 7031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37422",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163737740,
+ "shortestRoundTripNano": 40628827,
+ "longestRoundTripNano": 209676556,
+ "averageApexExecutionNano": 70553803,
+ "shortestApexExecutionNano": 9932863,
+ "longestApexExecutionNano": 159572616
+ },
+ {
+ "batchNumber": 7032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158274508,
+ "shortestRoundTripNano": 72250796,
+ "longestRoundTripNano": 200169730,
+ "averageApexExecutionNano": 69750668,
+ "shortestApexExecutionNano": 11905350,
+ "longestApexExecutionNano": 146582511
+ },
+ {
+ "batchNumber": 7033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160327356,
+ "shortestRoundTripNano": 77837174,
+ "longestRoundTripNano": 186868219,
+ "averageApexExecutionNano": 81348938,
+ "shortestApexExecutionNano": 10406516,
+ "longestApexExecutionNano": 141032435
+ },
+ {
+ "batchNumber": 7034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129627123,
+ "shortestRoundTripNano": 59364978,
+ "longestRoundTripNano": 166842267,
+ "averageApexExecutionNano": 50451464,
+ "shortestApexExecutionNano": 5319435,
+ "longestApexExecutionNano": 115467424
+ },
+ {
+ "batchNumber": 7035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131751856,
+ "shortestRoundTripNano": 69457001,
+ "longestRoundTripNano": 153002795,
+ "averageApexExecutionNano": 61072669,
+ "shortestApexExecutionNano": 5754306,
+ "longestApexExecutionNano": 110550330
+ },
+ {
+ "batchNumber": 7036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141836952,
+ "shortestRoundTripNano": 61548624,
+ "longestRoundTripNano": 173007988,
+ "averageApexExecutionNano": 53258381,
+ "shortestApexExecutionNano": 12977613,
+ "longestApexExecutionNano": 117660902
+ },
+ {
+ "batchNumber": 7037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131623937,
+ "shortestRoundTripNano": 51458128,
+ "longestRoundTripNano": 158991378,
+ "averageApexExecutionNano": 65305003,
+ "shortestApexExecutionNano": 9046230,
+ "longestApexExecutionNano": 123617732
+ },
+ {
+ "batchNumber": 7038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159187672,
+ "shortestRoundTripNano": 50612987,
+ "longestRoundTripNano": 186138903,
+ "averageApexExecutionNano": 59055087,
+ "shortestApexExecutionNano": 7251443,
+ "longestApexExecutionNano": 118115245
+ },
+ {
+ "batchNumber": 7039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 236611297,
+ "shortestRoundTripNano": 55604532,
+ "longestRoundTripNano": 282809928,
+ "averageApexExecutionNano": 95078507,
+ "shortestApexExecutionNano": 8850073,
+ "longestApexExecutionNano": 216022884
+ },
+ {
+ "batchNumber": 7040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37434",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152225394,
+ "shortestRoundTripNano": 64238023,
+ "longestRoundTripNano": 178575746,
+ "averageApexExecutionNano": 68089235,
+ "shortestApexExecutionNano": 9153754,
+ "longestApexExecutionNano": 126638666
+ },
+ {
+ "batchNumber": 7041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145919248,
+ "shortestRoundTripNano": 60476624,
+ "longestRoundTripNano": 174295209,
+ "averageApexExecutionNano": 56151238,
+ "shortestApexExecutionNano": 11636627,
+ "longestApexExecutionNano": 119302751
+ },
+ {
+ "batchNumber": 7042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148906851,
+ "shortestRoundTripNano": 65532282,
+ "longestRoundTripNano": 180807750,
+ "averageApexExecutionNano": 63655792,
+ "shortestApexExecutionNano": 5509263,
+ "longestApexExecutionNano": 134468157
+ },
+ {
+ "batchNumber": 7043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37430",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164719443,
+ "shortestRoundTripNano": 52060354,
+ "longestRoundTripNano": 196105561,
+ "averageApexExecutionNano": 69567856,
+ "shortestApexExecutionNano": 10903814,
+ "longestApexExecutionNano": 105117781
+ },
+ {
+ "batchNumber": 7044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128819592,
+ "shortestRoundTripNano": 31811628,
+ "longestRoundTripNano": 174718775,
+ "averageApexExecutionNano": 58115339,
+ "shortestApexExecutionNano": 8345860,
+ "longestApexExecutionNano": 128785790
+ },
+ {
+ "batchNumber": 7045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149278173,
+ "shortestRoundTripNano": 61221182,
+ "longestRoundTripNano": 174139184,
+ "averageApexExecutionNano": 60427695,
+ "shortestApexExecutionNano": 6472492,
+ "longestApexExecutionNano": 133380686
+ },
+ {
+ "batchNumber": 7046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174087116,
+ "shortestRoundTripNano": 57327150,
+ "longestRoundTripNano": 205865544,
+ "averageApexExecutionNano": 57550488,
+ "shortestApexExecutionNano": 8477955,
+ "longestApexExecutionNano": 135022926
+ },
+ {
+ "batchNumber": 7047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148333240,
+ "shortestRoundTripNano": 34889450,
+ "longestRoundTripNano": 190065051,
+ "averageApexExecutionNano": 73572603,
+ "shortestApexExecutionNano": 7837736,
+ "longestApexExecutionNano": 137693711
+ },
+ {
+ "batchNumber": 7048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141323015,
+ "shortestRoundTripNano": 78270371,
+ "longestRoundTripNano": 174543515,
+ "averageApexExecutionNano": 57495936,
+ "shortestApexExecutionNano": 7816705,
+ "longestApexExecutionNano": 129858111
+ },
+ {
+ "batchNumber": 7049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141983073,
+ "shortestRoundTripNano": 54989919,
+ "longestRoundTripNano": 178474457,
+ "averageApexExecutionNano": 51539425,
+ "shortestApexExecutionNano": 7169553,
+ "longestApexExecutionNano": 148351582
+ },
+ {
+ "batchNumber": 7050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37436",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138737217,
+ "shortestRoundTripNano": 59860148,
+ "longestRoundTripNano": 167529580,
+ "averageApexExecutionNano": 51640084,
+ "shortestApexExecutionNano": 8751535,
+ "longestApexExecutionNano": 115937024
+ },
+ {
+ "batchNumber": 7051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130959375,
+ "shortestRoundTripNano": 60996073,
+ "longestRoundTripNano": 163223410,
+ "averageApexExecutionNano": 66059416,
+ "shortestApexExecutionNano": 8067395,
+ "longestApexExecutionNano": 126753639
+ },
+ {
+ "batchNumber": 7052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142375254,
+ "shortestRoundTripNano": 69658071,
+ "longestRoundTripNano": 184594370,
+ "averageApexExecutionNano": 51370933,
+ "shortestApexExecutionNano": 7194140,
+ "longestApexExecutionNano": 118162437
+ },
+ {
+ "batchNumber": 7053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160582999,
+ "shortestRoundTripNano": 69004656,
+ "longestRoundTripNano": 186378090,
+ "averageApexExecutionNano": 69037312,
+ "shortestApexExecutionNano": 9426343,
+ "longestApexExecutionNano": 110329550
+ },
+ {
+ "batchNumber": 7054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141585556,
+ "shortestRoundTripNano": 46428411,
+ "longestRoundTripNano": 167483963,
+ "averageApexExecutionNano": 53586594,
+ "shortestApexExecutionNano": 5286415,
+ "longestApexExecutionNano": 112962398
+ },
+ {
+ "batchNumber": 7055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37438",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161372146,
+ "shortestRoundTripNano": 47032550,
+ "longestRoundTripNano": 201993031,
+ "averageApexExecutionNano": 74278681,
+ "shortestApexExecutionNano": 6864927,
+ "longestApexExecutionNano": 144601186
+ },
+ {
+ "batchNumber": 7056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132862453,
+ "shortestRoundTripNano": 67450850,
+ "longestRoundTripNano": 166211571,
+ "averageApexExecutionNano": 53267890,
+ "shortestApexExecutionNano": 8890804,
+ "longestApexExecutionNano": 128988277
+ },
+ {
+ "batchNumber": 7057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151376589,
+ "shortestRoundTripNano": 70412359,
+ "longestRoundTripNano": 185497903,
+ "averageApexExecutionNano": 73877555,
+ "shortestApexExecutionNano": 14213703,
+ "longestApexExecutionNano": 119281045
+ },
+ {
+ "batchNumber": 7058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136196562,
+ "shortestRoundTripNano": 73554863,
+ "longestRoundTripNano": 165764651,
+ "averageApexExecutionNano": 76892229,
+ "shortestApexExecutionNano": 6905655,
+ "longestApexExecutionNano": 135430885
+ },
+ {
+ "batchNumber": 7059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 115503070,
+ "shortestRoundTripNano": 49416607,
+ "longestRoundTripNano": 143754757,
+ "averageApexExecutionNano": 50569109,
+ "shortestApexExecutionNano": 5257363,
+ "longestApexExecutionNano": 105646515
+ },
+ {
+ "batchNumber": 7060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144768014,
+ "shortestRoundTripNano": 73339680,
+ "longestRoundTripNano": 172473146,
+ "averageApexExecutionNano": 55366265,
+ "shortestApexExecutionNano": 5929356,
+ "longestApexExecutionNano": 99316931
+ },
+ {
+ "batchNumber": 7061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147765890,
+ "shortestRoundTripNano": 62531810,
+ "longestRoundTripNano": 177168767,
+ "averageApexExecutionNano": 52169824,
+ "shortestApexExecutionNano": 9854981,
+ "longestApexExecutionNano": 116853061
+ },
+ {
+ "batchNumber": 7062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136142716,
+ "shortestRoundTripNano": 51730271,
+ "longestRoundTripNano": 175011665,
+ "averageApexExecutionNano": 64242337,
+ "shortestApexExecutionNano": 9803232,
+ "longestApexExecutionNano": 136226823
+ },
+ {
+ "batchNumber": 7063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139514801,
+ "shortestRoundTripNano": 65125405,
+ "longestRoundTripNano": 166607776,
+ "averageApexExecutionNano": 57197098,
+ "shortestApexExecutionNano": 11617471,
+ "longestApexExecutionNano": 118212815
+ },
+ {
+ "batchNumber": 7064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121877261,
+ "shortestRoundTripNano": 47309864,
+ "longestRoundTripNano": 153595679,
+ "averageApexExecutionNano": 41760178,
+ "shortestApexExecutionNano": 8048551,
+ "longestApexExecutionNano": 108030240
+ },
+ {
+ "batchNumber": 7065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121866543,
+ "shortestRoundTripNano": 47107127,
+ "longestRoundTripNano": 153192863,
+ "averageApexExecutionNano": 49488811,
+ "shortestApexExecutionNano": 9427907,
+ "longestApexExecutionNano": 106610155
+ },
+ {
+ "batchNumber": 7066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37440",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158425681,
+ "shortestRoundTripNano": 38953760,
+ "longestRoundTripNano": 193742325,
+ "averageApexExecutionNano": 64936144,
+ "shortestApexExecutionNano": 7744988,
+ "longestApexExecutionNano": 131925326
+ },
+ {
+ "batchNumber": 7067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144133309,
+ "shortestRoundTripNano": 75085778,
+ "longestRoundTripNano": 168917431,
+ "averageApexExecutionNano": 62678342,
+ "shortestApexExecutionNano": 7113161,
+ "longestApexExecutionNano": 119541607
+ },
+ {
+ "batchNumber": 7068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141769174,
+ "shortestRoundTripNano": 57811369,
+ "longestRoundTripNano": 179609476,
+ "averageApexExecutionNano": 52127255,
+ "shortestApexExecutionNano": 6665975,
+ "longestApexExecutionNano": 111347597
+ },
+ {
+ "batchNumber": 7069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37444",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146551956,
+ "shortestRoundTripNano": 72916316,
+ "longestRoundTripNano": 169838564,
+ "averageApexExecutionNano": 63444525,
+ "shortestApexExecutionNano": 10618552,
+ "longestApexExecutionNano": 128835582
+ },
+ {
+ "batchNumber": 7070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125788514,
+ "shortestRoundTripNano": 53131359,
+ "longestRoundTripNano": 149090009,
+ "averageApexExecutionNano": 52243663,
+ "shortestApexExecutionNano": 8809353,
+ "longestApexExecutionNano": 100246501
+ },
+ {
+ "batchNumber": 7071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133047531,
+ "shortestRoundTripNano": 52920592,
+ "longestRoundTripNano": 164460858,
+ "averageApexExecutionNano": 49397097,
+ "shortestApexExecutionNano": 9077573,
+ "longestApexExecutionNano": 102437802
+ },
+ {
+ "batchNumber": 7072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138083176,
+ "shortestRoundTripNano": 60997820,
+ "longestRoundTripNano": 164246214,
+ "averageApexExecutionNano": 68490174,
+ "shortestApexExecutionNano": 21740678,
+ "longestApexExecutionNano": 125217665
+ },
+ {
+ "batchNumber": 7073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137153277,
+ "shortestRoundTripNano": 56476499,
+ "longestRoundTripNano": 164461644,
+ "averageApexExecutionNano": 53471357,
+ "shortestApexExecutionNano": 8133723,
+ "longestApexExecutionNano": 102258631
+ },
+ {
+ "batchNumber": 7074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140223658,
+ "shortestRoundTripNano": 33537433,
+ "longestRoundTripNano": 172130841,
+ "averageApexExecutionNano": 59781875,
+ "shortestApexExecutionNano": 8027293,
+ "longestApexExecutionNano": 123117434
+ },
+ {
+ "batchNumber": 7075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132712424,
+ "shortestRoundTripNano": 69720062,
+ "longestRoundTripNano": 158950352,
+ "averageApexExecutionNano": 50977725,
+ "shortestApexExecutionNano": 6652217,
+ "longestApexExecutionNano": 124220431
+ },
+ {
+ "batchNumber": 7076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37446",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154825142,
+ "shortestRoundTripNano": 49665989,
+ "longestRoundTripNano": 193415472,
+ "averageApexExecutionNano": 63953620,
+ "shortestApexExecutionNano": 7738235,
+ "longestApexExecutionNano": 132246293
+ },
+ {
+ "batchNumber": 7077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159910351,
+ "shortestRoundTripNano": 75930339,
+ "longestRoundTripNano": 183901655,
+ "averageApexExecutionNano": 70182609,
+ "shortestApexExecutionNano": 9392119,
+ "longestApexExecutionNano": 130003056
+ },
+ {
+ "batchNumber": 7078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133841060,
+ "shortestRoundTripNano": 66576375,
+ "longestRoundTripNano": 162235030,
+ "averageApexExecutionNano": 47926109,
+ "shortestApexExecutionNano": 7503108,
+ "longestApexExecutionNano": 119262602
+ },
+ {
+ "batchNumber": 7079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144099170,
+ "shortestRoundTripNano": 47509575,
+ "longestRoundTripNano": 180796043,
+ "averageApexExecutionNano": 53040135,
+ "shortestApexExecutionNano": 9962808,
+ "longestApexExecutionNano": 116319100
+ },
+ {
+ "batchNumber": 7080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155521470,
+ "shortestRoundTripNano": 42172705,
+ "longestRoundTripNano": 185039861,
+ "averageApexExecutionNano": 76873883,
+ "shortestApexExecutionNano": 9737347,
+ "longestApexExecutionNano": 138301042
+ },
+ {
+ "batchNumber": 7081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37448",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157923390,
+ "shortestRoundTripNano": 58971805,
+ "longestRoundTripNano": 198683389,
+ "averageApexExecutionNano": 62590542,
+ "shortestApexExecutionNano": 10146375,
+ "longestApexExecutionNano": 140307782
+ },
+ {
+ "batchNumber": 7082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168293459,
+ "shortestRoundTripNano": 61293802,
+ "longestRoundTripNano": 211158441,
+ "averageApexExecutionNano": 63742031,
+ "shortestApexExecutionNano": 7950301,
+ "longestApexExecutionNano": 128318427
+ },
+ {
+ "batchNumber": 7083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37450",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156867034,
+ "shortestRoundTripNano": 52023519,
+ "longestRoundTripNano": 185548459,
+ "averageApexExecutionNano": 72405929,
+ "shortestApexExecutionNano": 9377758,
+ "longestApexExecutionNano": 134210740
+ },
+ {
+ "batchNumber": 7084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138264852,
+ "shortestRoundTripNano": 74304840,
+ "longestRoundTripNano": 169127604,
+ "averageApexExecutionNano": 48971228,
+ "shortestApexExecutionNano": 5824062,
+ "longestApexExecutionNano": 126064943
+ },
+ {
+ "batchNumber": 7085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144104594,
+ "shortestRoundTripNano": 81937639,
+ "longestRoundTripNano": 179505000,
+ "averageApexExecutionNano": 66484982,
+ "shortestApexExecutionNano": 8187283,
+ "longestApexExecutionNano": 141304964
+ },
+ {
+ "batchNumber": 7086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132149227,
+ "shortestRoundTripNano": 58085570,
+ "longestRoundTripNano": 155989719,
+ "averageApexExecutionNano": 57261000,
+ "shortestApexExecutionNano": 9301882,
+ "longestApexExecutionNano": 111217154
+ },
+ {
+ "batchNumber": 7087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37452",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149930838,
+ "shortestRoundTripNano": 58556338,
+ "longestRoundTripNano": 184237923,
+ "averageApexExecutionNano": 65001603,
+ "shortestApexExecutionNano": 8367270,
+ "longestApexExecutionNano": 127644383
+ },
+ {
+ "batchNumber": 7088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131344238,
+ "shortestRoundTripNano": 54587672,
+ "longestRoundTripNano": 164212672,
+ "averageApexExecutionNano": 49484593,
+ "shortestApexExecutionNano": 6780173,
+ "longestApexExecutionNano": 108657773
+ },
+ {
+ "batchNumber": 7089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141405616,
+ "shortestRoundTripNano": 66802604,
+ "longestRoundTripNano": 167818037,
+ "averageApexExecutionNano": 54184335,
+ "shortestApexExecutionNano": 8796911,
+ "longestApexExecutionNano": 107297187
+ },
+ {
+ "batchNumber": 7090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137602749,
+ "shortestRoundTripNano": 53392119,
+ "longestRoundTripNano": 168615188,
+ "averageApexExecutionNano": 53019947,
+ "shortestApexExecutionNano": 4818274,
+ "longestApexExecutionNano": 105171412
+ },
+ {
+ "batchNumber": 7091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133957795,
+ "shortestRoundTripNano": 46449032,
+ "longestRoundTripNano": 155069585,
+ "averageApexExecutionNano": 59110893,
+ "shortestApexExecutionNano": 12961241,
+ "longestApexExecutionNano": 106996309
+ },
+ {
+ "batchNumber": 7092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141559884,
+ "shortestRoundTripNano": 43879889,
+ "longestRoundTripNano": 179000195,
+ "averageApexExecutionNano": 56345194,
+ "shortestApexExecutionNano": 9177667,
+ "longestApexExecutionNano": 132016972
+ },
+ {
+ "batchNumber": 7093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132805506,
+ "shortestRoundTripNano": 60886076,
+ "longestRoundTripNano": 157376565,
+ "averageApexExecutionNano": 57044863,
+ "shortestApexExecutionNano": 10662611,
+ "longestApexExecutionNano": 110579841
+ },
+ {
+ "batchNumber": 7094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137894383,
+ "shortestRoundTripNano": 64871246,
+ "longestRoundTripNano": 162529375,
+ "averageApexExecutionNano": 48960924,
+ "shortestApexExecutionNano": 5353991,
+ "longestApexExecutionNano": 105706597
+ },
+ {
+ "batchNumber": 7095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144224315,
+ "shortestRoundTripNano": 56715530,
+ "longestRoundTripNano": 176836745,
+ "averageApexExecutionNano": 55601261,
+ "shortestApexExecutionNano": 9053063,
+ "longestApexExecutionNano": 121162568
+ },
+ {
+ "batchNumber": 7096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133380586,
+ "shortestRoundTripNano": 77687232,
+ "longestRoundTripNano": 158691730,
+ "averageApexExecutionNano": 68031952,
+ "shortestApexExecutionNano": 16041349,
+ "longestApexExecutionNano": 121871979
+ },
+ {
+ "batchNumber": 7097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144484268,
+ "shortestRoundTripNano": 44498486,
+ "longestRoundTripNano": 169365309,
+ "averageApexExecutionNano": 57127679,
+ "shortestApexExecutionNano": 7575089,
+ "longestApexExecutionNano": 120088004
+ },
+ {
+ "batchNumber": 7098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155796771,
+ "shortestRoundTripNano": 67250275,
+ "longestRoundTripNano": 185638251,
+ "averageApexExecutionNano": 68789835,
+ "shortestApexExecutionNano": 11111252,
+ "longestApexExecutionNano": 123933821
+ },
+ {
+ "batchNumber": 7099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37456",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124752821,
+ "shortestRoundTripNano": 62879982,
+ "longestRoundTripNano": 152391290,
+ "averageApexExecutionNano": 56285888,
+ "shortestApexExecutionNano": 6204657,
+ "longestApexExecutionNano": 111893340
+ },
+ {
+ "batchNumber": 7100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151075773,
+ "shortestRoundTripNano": 77959968,
+ "longestRoundTripNano": 184127055,
+ "averageApexExecutionNano": 53977195,
+ "shortestApexExecutionNano": 9137564,
+ "longestApexExecutionNano": 105474046
+ },
+ {
+ "batchNumber": 7101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161158211,
+ "shortestRoundTripNano": 63144600,
+ "longestRoundTripNano": 199842548,
+ "averageApexExecutionNano": 42755483,
+ "shortestApexExecutionNano": 9101010,
+ "longestApexExecutionNano": 114236415
+ },
+ {
+ "batchNumber": 7102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133824404,
+ "shortestRoundTripNano": 73856729,
+ "longestRoundTripNano": 162322464,
+ "averageApexExecutionNano": 65485695,
+ "shortestApexExecutionNano": 6354100,
+ "longestApexExecutionNano": 121137524
+ },
+ {
+ "batchNumber": 7103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134652413,
+ "shortestRoundTripNano": 67122785,
+ "longestRoundTripNano": 176139705,
+ "averageApexExecutionNano": 56623692,
+ "shortestApexExecutionNano": 10326019,
+ "longestApexExecutionNano": 125592278
+ },
+ {
+ "batchNumber": 7104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134871332,
+ "shortestRoundTripNano": 49800582,
+ "longestRoundTripNano": 168075139,
+ "averageApexExecutionNano": 62260931,
+ "shortestApexExecutionNano": 12984744,
+ "longestApexExecutionNano": 114964971
+ },
+ {
+ "batchNumber": 7105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145037594,
+ "shortestRoundTripNano": 65982184,
+ "longestRoundTripNano": 174513584,
+ "averageApexExecutionNano": 58457264,
+ "shortestApexExecutionNano": 9727118,
+ "longestApexExecutionNano": 127473343
+ },
+ {
+ "batchNumber": 7106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178193743,
+ "shortestRoundTripNano": 53956061,
+ "longestRoundTripNano": 209465963,
+ "averageApexExecutionNano": 67911107,
+ "shortestApexExecutionNano": 7995637,
+ "longestApexExecutionNano": 123157020
+ },
+ {
+ "batchNumber": 7107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155980236,
+ "shortestRoundTripNano": 85265871,
+ "longestRoundTripNano": 187562058,
+ "averageApexExecutionNano": 81903076,
+ "shortestApexExecutionNano": 11188539,
+ "longestApexExecutionNano": 143546255
+ },
+ {
+ "batchNumber": 7108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133887168,
+ "shortestRoundTripNano": 33619194,
+ "longestRoundTripNano": 168402799,
+ "averageApexExecutionNano": 67121866,
+ "shortestApexExecutionNano": 10926292,
+ "longestApexExecutionNano": 119211129
+ },
+ {
+ "batchNumber": 7109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144422311,
+ "shortestRoundTripNano": 61571242,
+ "longestRoundTripNano": 171205184,
+ "averageApexExecutionNano": 51764592,
+ "shortestApexExecutionNano": 6106554,
+ "longestApexExecutionNano": 103088476
+ },
+ {
+ "batchNumber": 7110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37454",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147840313,
+ "shortestRoundTripNano": 50957227,
+ "longestRoundTripNano": 181989721,
+ "averageApexExecutionNano": 61981024,
+ "shortestApexExecutionNano": 7115593,
+ "longestApexExecutionNano": 142844595
+ },
+ {
+ "batchNumber": 7111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152256072,
+ "shortestRoundTripNano": 57201750,
+ "longestRoundTripNano": 187619414,
+ "averageApexExecutionNano": 65399787,
+ "shortestApexExecutionNano": 6940440,
+ "longestApexExecutionNano": 130600773
+ },
+ {
+ "batchNumber": 7112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145629235,
+ "shortestRoundTripNano": 78638779,
+ "longestRoundTripNano": 169419739,
+ "averageApexExecutionNano": 65728027,
+ "shortestApexExecutionNano": 10453342,
+ "longestApexExecutionNano": 125514601
+ },
+ {
+ "batchNumber": 7113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136823055,
+ "shortestRoundTripNano": 70636365,
+ "longestRoundTripNano": 168777432,
+ "averageApexExecutionNano": 37849248,
+ "shortestApexExecutionNano": 8222125,
+ "longestApexExecutionNano": 106048859
+ },
+ {
+ "batchNumber": 7114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140631501,
+ "shortestRoundTripNano": 72967860,
+ "longestRoundTripNano": 165551275,
+ "averageApexExecutionNano": 59561063,
+ "shortestApexExecutionNano": 9601635,
+ "longestApexExecutionNano": 121757187
+ },
+ {
+ "batchNumber": 7115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128142519,
+ "shortestRoundTripNano": 52514737,
+ "longestRoundTripNano": 151723832,
+ "averageApexExecutionNano": 55736804,
+ "shortestApexExecutionNano": 14962592,
+ "longestApexExecutionNano": 108503119
+ },
+ {
+ "batchNumber": 7116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152852406,
+ "shortestRoundTripNano": 73838760,
+ "longestRoundTripNano": 185015740,
+ "averageApexExecutionNano": 40520998,
+ "shortestApexExecutionNano": 8414386,
+ "longestApexExecutionNano": 122626227
+ },
+ {
+ "batchNumber": 7117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129214880,
+ "shortestRoundTripNano": 59136240,
+ "longestRoundTripNano": 159182930,
+ "averageApexExecutionNano": 53705982,
+ "shortestApexExecutionNano": 10140722,
+ "longestApexExecutionNano": 107031958
+ },
+ {
+ "batchNumber": 7118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124025168,
+ "shortestRoundTripNano": 50457136,
+ "longestRoundTripNano": 152442423,
+ "averageApexExecutionNano": 48921161,
+ "shortestApexExecutionNano": 7786277,
+ "longestApexExecutionNano": 109484434
+ },
+ {
+ "batchNumber": 7119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127362885,
+ "shortestRoundTripNano": 37290242,
+ "longestRoundTripNano": 164253346,
+ "averageApexExecutionNano": 56061479,
+ "shortestApexExecutionNano": 8867682,
+ "longestApexExecutionNano": 109887461
+ },
+ {
+ "batchNumber": 7120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142638735,
+ "shortestRoundTripNano": 72494343,
+ "longestRoundTripNano": 177716698,
+ "averageApexExecutionNano": 64459684,
+ "shortestApexExecutionNano": 10998307,
+ "longestApexExecutionNano": 122590181
+ },
+ {
+ "batchNumber": 7121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142259021,
+ "shortestRoundTripNano": 44983220,
+ "longestRoundTripNano": 175750495,
+ "averageApexExecutionNano": 75385837,
+ "shortestApexExecutionNano": 9397177,
+ "longestApexExecutionNano": 134170860
+ },
+ {
+ "batchNumber": 7122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156915034,
+ "shortestRoundTripNano": 72991824,
+ "longestRoundTripNano": 189730616,
+ "averageApexExecutionNano": 62106999,
+ "shortestApexExecutionNano": 7579979,
+ "longestApexExecutionNano": 121452199
+ },
+ {
+ "batchNumber": 7123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37466",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126068996,
+ "shortestRoundTripNano": 63085318,
+ "longestRoundTripNano": 154813291,
+ "averageApexExecutionNano": 56034367,
+ "shortestApexExecutionNano": 11048242,
+ "longestApexExecutionNano": 111521924
+ },
+ {
+ "batchNumber": 7124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121176855,
+ "shortestRoundTripNano": 43347429,
+ "longestRoundTripNano": 151114127,
+ "averageApexExecutionNano": 46976102,
+ "shortestApexExecutionNano": 8065868,
+ "longestApexExecutionNano": 103857345
+ },
+ {
+ "batchNumber": 7125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147195481,
+ "shortestRoundTripNano": 55346401,
+ "longestRoundTripNano": 177449182,
+ "averageApexExecutionNano": 65365120,
+ "shortestApexExecutionNano": 6176354,
+ "longestApexExecutionNano": 121019719
+ },
+ {
+ "batchNumber": 7126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131256227,
+ "shortestRoundTripNano": 69555360,
+ "longestRoundTripNano": 153915582,
+ "averageApexExecutionNano": 62754325,
+ "shortestApexExecutionNano": 10990110,
+ "longestApexExecutionNano": 118421822
+ },
+ {
+ "batchNumber": 7127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156898086,
+ "shortestRoundTripNano": 57484866,
+ "longestRoundTripNano": 185488673,
+ "averageApexExecutionNano": 53396799,
+ "shortestApexExecutionNano": 10885336,
+ "longestApexExecutionNano": 109592627
+ },
+ {
+ "batchNumber": 7128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135627546,
+ "shortestRoundTripNano": 62222456,
+ "longestRoundTripNano": 155237494,
+ "averageApexExecutionNano": 50915491,
+ "shortestApexExecutionNano": 5388232,
+ "longestApexExecutionNano": 112604557
+ },
+ {
+ "batchNumber": 7129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167070532,
+ "shortestRoundTripNano": 85634327,
+ "longestRoundTripNano": 200071907,
+ "averageApexExecutionNano": 86648701,
+ "shortestApexExecutionNano": 12012498,
+ "longestApexExecutionNano": 154220712
+ },
+ {
+ "batchNumber": 7130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147827827,
+ "shortestRoundTripNano": 69066708,
+ "longestRoundTripNano": 181173452,
+ "averageApexExecutionNano": 63498307,
+ "shortestApexExecutionNano": 12293642,
+ "longestApexExecutionNano": 136070764
+ },
+ {
+ "batchNumber": 7131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151196641,
+ "shortestRoundTripNano": 66839237,
+ "longestRoundTripNano": 182026766,
+ "averageApexExecutionNano": 47552975,
+ "shortestApexExecutionNano": 8939796,
+ "longestApexExecutionNano": 109485925
+ },
+ {
+ "batchNumber": 7132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155929264,
+ "shortestRoundTripNano": 72002970,
+ "longestRoundTripNano": 187135974,
+ "averageApexExecutionNano": 72312043,
+ "shortestApexExecutionNano": 5332026,
+ "longestApexExecutionNano": 141027005
+ },
+ {
+ "batchNumber": 7133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137846980,
+ "shortestRoundTripNano": 54514081,
+ "longestRoundTripNano": 171995751,
+ "averageApexExecutionNano": 52235545,
+ "shortestApexExecutionNano": 6436162,
+ "longestApexExecutionNano": 122850088
+ },
+ {
+ "batchNumber": 7134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150451647,
+ "shortestRoundTripNano": 77931232,
+ "longestRoundTripNano": 196041870,
+ "averageApexExecutionNano": 67269692,
+ "shortestApexExecutionNano": 6329720,
+ "longestApexExecutionNano": 130836717
+ },
+ {
+ "batchNumber": 7135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151631460,
+ "shortestRoundTripNano": 79443561,
+ "longestRoundTripNano": 178914111,
+ "averageApexExecutionNano": 59669773,
+ "shortestApexExecutionNano": 14248069,
+ "longestApexExecutionNano": 137158120
+ },
+ {
+ "batchNumber": 7136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150294723,
+ "shortestRoundTripNano": 81969944,
+ "longestRoundTripNano": 180839742,
+ "averageApexExecutionNano": 51636060,
+ "shortestApexExecutionNano": 7803240,
+ "longestApexExecutionNano": 102035050
+ },
+ {
+ "batchNumber": 7137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170501550,
+ "shortestRoundTripNano": 52780831,
+ "longestRoundTripNano": 195750631,
+ "averageApexExecutionNano": 76298449,
+ "shortestApexExecutionNano": 5254621,
+ "longestApexExecutionNano": 137322885
+ },
+ {
+ "batchNumber": 7138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153675284,
+ "shortestRoundTripNano": 26450006,
+ "longestRoundTripNano": 184373821,
+ "averageApexExecutionNano": 65542942,
+ "shortestApexExecutionNano": 5544207,
+ "longestApexExecutionNano": 119882010
+ },
+ {
+ "batchNumber": 7139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140585100,
+ "shortestRoundTripNano": 60361021,
+ "longestRoundTripNano": 167383765,
+ "averageApexExecutionNano": 52991984,
+ "shortestApexExecutionNano": 6500265,
+ "longestApexExecutionNano": 114808997
+ },
+ {
+ "batchNumber": 7140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142042981,
+ "shortestRoundTripNano": 69473320,
+ "longestRoundTripNano": 177249883,
+ "averageApexExecutionNano": 47070513,
+ "shortestApexExecutionNano": 5627976,
+ "longestApexExecutionNano": 130691038
+ },
+ {
+ "batchNumber": 7141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122812952,
+ "shortestRoundTripNano": 53350394,
+ "longestRoundTripNano": 157870573,
+ "averageApexExecutionNano": 47130244,
+ "shortestApexExecutionNano": 8865511,
+ "longestApexExecutionNano": 95970110
+ },
+ {
+ "batchNumber": 7142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131554433,
+ "shortestRoundTripNano": 42808260,
+ "longestRoundTripNano": 166369491,
+ "averageApexExecutionNano": 54633730,
+ "shortestApexExecutionNano": 9847939,
+ "longestApexExecutionNano": 125742683
+ },
+ {
+ "batchNumber": 7143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146643484,
+ "shortestRoundTripNano": 72049892,
+ "longestRoundTripNano": 169925649,
+ "averageApexExecutionNano": 64131780,
+ "shortestApexExecutionNano": 6577168,
+ "longestApexExecutionNano": 116759567
+ },
+ {
+ "batchNumber": 7144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145048946,
+ "shortestRoundTripNano": 83086642,
+ "longestRoundTripNano": 167941900,
+ "averageApexExecutionNano": 47422818,
+ "shortestApexExecutionNano": 9326896,
+ "longestApexExecutionNano": 123510231
+ },
+ {
+ "batchNumber": 7145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148986145,
+ "shortestRoundTripNano": 61773416,
+ "longestRoundTripNano": 179497724,
+ "averageApexExecutionNano": 68529287,
+ "shortestApexExecutionNano": 9045098,
+ "longestApexExecutionNano": 133579680
+ },
+ {
+ "batchNumber": 7146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136466506,
+ "shortestRoundTripNano": 31084978,
+ "longestRoundTripNano": 170576581,
+ "averageApexExecutionNano": 56843521,
+ "shortestApexExecutionNano": 6879918,
+ "longestApexExecutionNano": 128899087
+ },
+ {
+ "batchNumber": 7147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37462",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150710204,
+ "shortestRoundTripNano": 58079303,
+ "longestRoundTripNano": 182444804,
+ "averageApexExecutionNano": 66295092,
+ "shortestApexExecutionNano": 8345401,
+ "longestApexExecutionNano": 137310269
+ },
+ {
+ "batchNumber": 7148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159282165,
+ "shortestRoundTripNano": 83979390,
+ "longestRoundTripNano": 189728409,
+ "averageApexExecutionNano": 65623901,
+ "shortestApexExecutionNano": 12878975,
+ "longestApexExecutionNano": 136597552
+ },
+ {
+ "batchNumber": 7149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143267145,
+ "shortestRoundTripNano": 54766164,
+ "longestRoundTripNano": 172748953,
+ "averageApexExecutionNano": 64976260,
+ "shortestApexExecutionNano": 5699699,
+ "longestApexExecutionNano": 127968268
+ },
+ {
+ "batchNumber": 7150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158906429,
+ "shortestRoundTripNano": 86869927,
+ "longestRoundTripNano": 191710305,
+ "averageApexExecutionNano": 84205730,
+ "shortestApexExecutionNano": 13364299,
+ "longestApexExecutionNano": 149776248
+ },
+ {
+ "batchNumber": 7151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134989093,
+ "shortestRoundTripNano": 62189580,
+ "longestRoundTripNano": 168780320,
+ "averageApexExecutionNano": 52264451,
+ "shortestApexExecutionNano": 7398148,
+ "longestApexExecutionNano": 111902785
+ },
+ {
+ "batchNumber": 7152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149685046,
+ "shortestRoundTripNano": 49278556,
+ "longestRoundTripNano": 181210329,
+ "averageApexExecutionNano": 67137188,
+ "shortestApexExecutionNano": 10286827,
+ "longestApexExecutionNano": 119717773
+ },
+ {
+ "batchNumber": 7153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160524466,
+ "shortestRoundTripNano": 70700990,
+ "longestRoundTripNano": 190136634,
+ "averageApexExecutionNano": 63252907,
+ "shortestApexExecutionNano": 9171000,
+ "longestApexExecutionNano": 138813532
+ },
+ {
+ "batchNumber": 7154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156691056,
+ "shortestRoundTripNano": 68518008,
+ "longestRoundTripNano": 182513169,
+ "averageApexExecutionNano": 62033288,
+ "shortestApexExecutionNano": 9005761,
+ "longestApexExecutionNano": 129025388
+ },
+ {
+ "batchNumber": 7155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171125643,
+ "shortestRoundTripNano": 96139444,
+ "longestRoundTripNano": 197534763,
+ "averageApexExecutionNano": 69771376,
+ "shortestApexExecutionNano": 7366789,
+ "longestApexExecutionNano": 135799308
+ },
+ {
+ "batchNumber": 7156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148272077,
+ "shortestRoundTripNano": 61542759,
+ "longestRoundTripNano": 179434739,
+ "averageApexExecutionNano": 70612423,
+ "shortestApexExecutionNano": 15123172,
+ "longestApexExecutionNano": 118798215
+ },
+ {
+ "batchNumber": 7157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157471477,
+ "shortestRoundTripNano": 79535134,
+ "longestRoundTripNano": 193818617,
+ "averageApexExecutionNano": 53026767,
+ "shortestApexExecutionNano": 9238719,
+ "longestApexExecutionNano": 113797203
+ },
+ {
+ "batchNumber": 7158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137250686,
+ "shortestRoundTripNano": 42308592,
+ "longestRoundTripNano": 172220590,
+ "averageApexExecutionNano": 58708775,
+ "shortestApexExecutionNano": 9997032,
+ "longestApexExecutionNano": 127959799
+ },
+ {
+ "batchNumber": 7159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154797542,
+ "shortestRoundTripNano": 50719738,
+ "longestRoundTripNano": 188082733,
+ "averageApexExecutionNano": 63117671,
+ "shortestApexExecutionNano": 5673986,
+ "longestApexExecutionNano": 126171062
+ },
+ {
+ "batchNumber": 7160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37476",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169528408,
+ "shortestRoundTripNano": 70302862,
+ "longestRoundTripNano": 203920177,
+ "averageApexExecutionNano": 78473357,
+ "shortestApexExecutionNano": 7686434,
+ "longestApexExecutionNano": 158108763
+ },
+ {
+ "batchNumber": 7161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143817400,
+ "shortestRoundTripNano": 60931267,
+ "longestRoundTripNano": 174699894,
+ "averageApexExecutionNano": 64257164,
+ "shortestApexExecutionNano": 10929801,
+ "longestApexExecutionNano": 113624130
+ },
+ {
+ "batchNumber": 7162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145356462,
+ "shortestRoundTripNano": 74639713,
+ "longestRoundTripNano": 180023652,
+ "averageApexExecutionNano": 51613831,
+ "shortestApexExecutionNano": 5238034,
+ "longestApexExecutionNano": 106508781
+ },
+ {
+ "batchNumber": 7163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133080183,
+ "shortestRoundTripNano": 64628722,
+ "longestRoundTripNano": 154809591,
+ "averageApexExecutionNano": 57132523,
+ "shortestApexExecutionNano": 8051475,
+ "longestApexExecutionNano": 103156526
+ },
+ {
+ "batchNumber": 7164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165514773,
+ "shortestRoundTripNano": 35130363,
+ "longestRoundTripNano": 194424422,
+ "averageApexExecutionNano": 66076520,
+ "shortestApexExecutionNano": 6619257,
+ "longestApexExecutionNano": 144635199
+ },
+ {
+ "batchNumber": 7165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156214035,
+ "shortestRoundTripNano": 62622650,
+ "longestRoundTripNano": 187094414,
+ "averageApexExecutionNano": 56982131,
+ "shortestApexExecutionNano": 9533483,
+ "longestApexExecutionNano": 143853539
+ },
+ {
+ "batchNumber": 7166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156996864,
+ "shortestRoundTripNano": 72668515,
+ "longestRoundTripNano": 188545038,
+ "averageApexExecutionNano": 76681314,
+ "shortestApexExecutionNano": 14926235,
+ "longestApexExecutionNano": 132544656
+ },
+ {
+ "batchNumber": 7167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37482",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 190402569,
+ "shortestRoundTripNano": 78564589,
+ "longestRoundTripNano": 227708066,
+ "averageApexExecutionNano": 106825584,
+ "shortestApexExecutionNano": 11932741,
+ "longestApexExecutionNano": 182885173
+ },
+ {
+ "batchNumber": 7168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134126946,
+ "shortestRoundTripNano": 62879103,
+ "longestRoundTripNano": 171215261,
+ "averageApexExecutionNano": 53523192,
+ "shortestApexExecutionNano": 9300914,
+ "longestApexExecutionNano": 101168061
+ },
+ {
+ "batchNumber": 7169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159135443,
+ "shortestRoundTripNano": 54792369,
+ "longestRoundTripNano": 185021274,
+ "averageApexExecutionNano": 73077022,
+ "shortestApexExecutionNano": 6636548,
+ "longestApexExecutionNano": 141739273
+ },
+ {
+ "batchNumber": 7170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145992844,
+ "shortestRoundTripNano": 45039478,
+ "longestRoundTripNano": 181466789,
+ "averageApexExecutionNano": 55405340,
+ "shortestApexExecutionNano": 8979966,
+ "longestApexExecutionNano": 118898256
+ },
+ {
+ "batchNumber": 7171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169465309,
+ "shortestRoundTripNano": 74160432,
+ "longestRoundTripNano": 191525503,
+ "averageApexExecutionNano": 76148952,
+ "shortestApexExecutionNano": 12218251,
+ "longestApexExecutionNano": 143698552
+ },
+ {
+ "batchNumber": 7172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162973749,
+ "shortestRoundTripNano": 71137273,
+ "longestRoundTripNano": 199367734,
+ "averageApexExecutionNano": 54192008,
+ "shortestApexExecutionNano": 6339510,
+ "longestApexExecutionNano": 141432515
+ },
+ {
+ "batchNumber": 7173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37488",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159165743,
+ "shortestRoundTripNano": 45080460,
+ "longestRoundTripNano": 222219481,
+ "averageApexExecutionNano": 64236745,
+ "shortestApexExecutionNano": 11832120,
+ "longestApexExecutionNano": 129503864
+ },
+ {
+ "batchNumber": 7174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147421622,
+ "shortestRoundTripNano": 79793345,
+ "longestRoundTripNano": 176323545,
+ "averageApexExecutionNano": 51126062,
+ "shortestApexExecutionNano": 6816539,
+ "longestApexExecutionNano": 123495448
+ },
+ {
+ "batchNumber": 7175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141116447,
+ "shortestRoundTripNano": 54081859,
+ "longestRoundTripNano": 168872927,
+ "averageApexExecutionNano": 55661379,
+ "shortestApexExecutionNano": 5799522,
+ "longestApexExecutionNano": 106979570
+ },
+ {
+ "batchNumber": 7176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155573074,
+ "shortestRoundTripNano": 65160000,
+ "longestRoundTripNano": 184057602,
+ "averageApexExecutionNano": 70440858,
+ "shortestApexExecutionNano": 5816493,
+ "longestApexExecutionNano": 140300740
+ },
+ {
+ "batchNumber": 7177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143810930,
+ "shortestRoundTripNano": 59791428,
+ "longestRoundTripNano": 179404719,
+ "averageApexExecutionNano": 60470534,
+ "shortestApexExecutionNano": 10759020,
+ "longestApexExecutionNano": 129846253
+ },
+ {
+ "batchNumber": 7178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142657629,
+ "shortestRoundTripNano": 84498488,
+ "longestRoundTripNano": 172249807,
+ "averageApexExecutionNano": 65711702,
+ "shortestApexExecutionNano": 5313910,
+ "longestApexExecutionNano": 119741672
+ },
+ {
+ "batchNumber": 7179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163025924,
+ "shortestRoundTripNano": 81000770,
+ "longestRoundTripNano": 188428210,
+ "averageApexExecutionNano": 73138669,
+ "shortestApexExecutionNano": 21355276,
+ "longestApexExecutionNano": 125033458
+ },
+ {
+ "batchNumber": 7180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147240983,
+ "shortestRoundTripNano": 37006840,
+ "longestRoundTripNano": 171800344,
+ "averageApexExecutionNano": 68921443,
+ "shortestApexExecutionNano": 7688480,
+ "longestApexExecutionNano": 127966453
+ },
+ {
+ "batchNumber": 7181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146577082,
+ "shortestRoundTripNano": 68358280,
+ "longestRoundTripNano": 180362602,
+ "averageApexExecutionNano": 51209987,
+ "shortestApexExecutionNano": 9994551,
+ "longestApexExecutionNano": 119861987
+ },
+ {
+ "batchNumber": 7182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161123031,
+ "shortestRoundTripNano": 80162872,
+ "longestRoundTripNano": 193880065,
+ "averageApexExecutionNano": 75274808,
+ "shortestApexExecutionNano": 11351944,
+ "longestApexExecutionNano": 151866723
+ },
+ {
+ "batchNumber": 7183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164843975,
+ "shortestRoundTripNano": 68138216,
+ "longestRoundTripNano": 193969434,
+ "averageApexExecutionNano": 65303499,
+ "shortestApexExecutionNano": 13231752,
+ "longestApexExecutionNano": 150303530
+ },
+ {
+ "batchNumber": 7184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173497715,
+ "shortestRoundTripNano": 82193514,
+ "longestRoundTripNano": 201239608,
+ "averageApexExecutionNano": 78739316,
+ "shortestApexExecutionNano": 5868604,
+ "longestApexExecutionNano": 144630340
+ },
+ {
+ "batchNumber": 7185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148978169,
+ "shortestRoundTripNano": 51636966,
+ "longestRoundTripNano": 180411521,
+ "averageApexExecutionNano": 55141833,
+ "shortestApexExecutionNano": 11468495,
+ "longestApexExecutionNano": 109809956
+ },
+ {
+ "batchNumber": 7186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126543799,
+ "shortestRoundTripNano": 48761782,
+ "longestRoundTripNano": 158815669,
+ "averageApexExecutionNano": 59025027,
+ "shortestApexExecutionNano": 6323335,
+ "longestApexExecutionNano": 124904508
+ },
+ {
+ "batchNumber": 7187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167682171,
+ "shortestRoundTripNano": 72606327,
+ "longestRoundTripNano": 197560101,
+ "averageApexExecutionNano": 70161527,
+ "shortestApexExecutionNano": 13287530,
+ "longestApexExecutionNano": 155755408
+ },
+ {
+ "batchNumber": 7188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156907675,
+ "shortestRoundTripNano": 87568081,
+ "longestRoundTripNano": 182924035,
+ "averageApexExecutionNano": 67714144,
+ "shortestApexExecutionNano": 6996598,
+ "longestApexExecutionNano": 132323800
+ },
+ {
+ "batchNumber": 7189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181615400,
+ "shortestRoundTripNano": 93630354,
+ "longestRoundTripNano": 209223956,
+ "averageApexExecutionNano": 73099065,
+ "shortestApexExecutionNano": 11558842,
+ "longestApexExecutionNano": 155251532
+ },
+ {
+ "batchNumber": 7190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150976900,
+ "shortestRoundTripNano": 78208717,
+ "longestRoundTripNano": 179503793,
+ "averageApexExecutionNano": 67733231,
+ "shortestApexExecutionNano": 8467848,
+ "longestApexExecutionNano": 130173314
+ },
+ {
+ "batchNumber": 7191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154408097,
+ "shortestRoundTripNano": 56390183,
+ "longestRoundTripNano": 192541299,
+ "averageApexExecutionNano": 67387397,
+ "shortestApexExecutionNano": 11442252,
+ "longestApexExecutionNano": 131910034
+ },
+ {
+ "batchNumber": 7192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150243928,
+ "shortestRoundTripNano": 57258929,
+ "longestRoundTripNano": 183677428,
+ "averageApexExecutionNano": 69208704,
+ "shortestApexExecutionNano": 7364588,
+ "longestApexExecutionNano": 135427606
+ },
+ {
+ "batchNumber": 7193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167769640,
+ "shortestRoundTripNano": 52666933,
+ "longestRoundTripNano": 195327825,
+ "averageApexExecutionNano": 79843621,
+ "shortestApexExecutionNano": 11510713,
+ "longestApexExecutionNano": 144422714
+ },
+ {
+ "batchNumber": 7194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37496",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171058097,
+ "shortestRoundTripNano": 89004022,
+ "longestRoundTripNano": 201584321,
+ "averageApexExecutionNano": 41470699,
+ "shortestApexExecutionNano": 8284238,
+ "longestApexExecutionNano": 103675126
+ },
+ {
+ "batchNumber": 7195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37496",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127664213,
+ "shortestRoundTripNano": 81203440,
+ "longestRoundTripNano": 155663255,
+ "averageApexExecutionNano": 65896200,
+ "shortestApexExecutionNano": 13335282,
+ "longestApexExecutionNano": 115759241
+ },
+ {
+ "batchNumber": 7196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146048385,
+ "shortestRoundTripNano": 74339434,
+ "longestRoundTripNano": 175831823,
+ "averageApexExecutionNano": 68996834,
+ "shortestApexExecutionNano": 6251028,
+ "longestApexExecutionNano": 133411586
+ },
+ {
+ "batchNumber": 7197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37486",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134658516,
+ "shortestRoundTripNano": 64643550,
+ "longestRoundTripNano": 170565655,
+ "averageApexExecutionNano": 52555264,
+ "shortestApexExecutionNano": 7064699,
+ "longestApexExecutionNano": 123441968
+ },
+ {
+ "batchNumber": 7198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37496",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138332060,
+ "shortestRoundTripNano": 47438094,
+ "longestRoundTripNano": 178281800,
+ "averageApexExecutionNano": 55253973,
+ "shortestApexExecutionNano": 8766334,
+ "longestApexExecutionNano": 120276152
+ },
+ {
+ "batchNumber": 7199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37496",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134446492,
+ "shortestRoundTripNano": 37445678,
+ "longestRoundTripNano": 167747783,
+ "averageApexExecutionNano": 56396436,
+ "shortestApexExecutionNano": 10114491,
+ "longestApexExecutionNano": 120157972
+ },
+ {
+ "batchNumber": 7200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37496",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172350409,
+ "shortestRoundTripNano": 55162514,
+ "longestRoundTripNano": 209595501,
+ "averageApexExecutionNano": 50872060,
+ "shortestApexExecutionNano": 8073403,
+ "longestApexExecutionNano": 139607461
+ },
+ {
+ "batchNumber": 7201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124403323,
+ "shortestRoundTripNano": 65860426,
+ "longestRoundTripNano": 158221134,
+ "averageApexExecutionNano": 55300235,
+ "shortestApexExecutionNano": 8189284,
+ "longestApexExecutionNano": 119109151
+ },
+ {
+ "batchNumber": 7202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159933645,
+ "shortestRoundTripNano": 74545782,
+ "longestRoundTripNano": 184284001,
+ "averageApexExecutionNano": 66256165,
+ "shortestApexExecutionNano": 9131035,
+ "longestApexExecutionNano": 135183119
+ },
+ {
+ "batchNumber": 7203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140829531,
+ "shortestRoundTripNano": 52605581,
+ "longestRoundTripNano": 177774554,
+ "averageApexExecutionNano": 55438212,
+ "shortestApexExecutionNano": 8075512,
+ "longestApexExecutionNano": 116390013
+ },
+ {
+ "batchNumber": 7204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158607416,
+ "shortestRoundTripNano": 47262608,
+ "longestRoundTripNano": 193790984,
+ "averageApexExecutionNano": 61599198,
+ "shortestApexExecutionNano": 13187965,
+ "longestApexExecutionNano": 118986938
+ },
+ {
+ "batchNumber": 7205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37498",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169428067,
+ "shortestRoundTripNano": 59556678,
+ "longestRoundTripNano": 200473357,
+ "averageApexExecutionNano": 77580693,
+ "shortestApexExecutionNano": 5876160,
+ "longestApexExecutionNano": 131991067
+ },
+ {
+ "batchNumber": 7206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144517084,
+ "shortestRoundTripNano": 75011637,
+ "longestRoundTripNano": 174867956,
+ "averageApexExecutionNano": 66072862,
+ "shortestApexExecutionNano": 9103801,
+ "longestApexExecutionNano": 131813155
+ },
+ {
+ "batchNumber": 7207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178104402,
+ "shortestRoundTripNano": 58170468,
+ "longestRoundTripNano": 209399009,
+ "averageApexExecutionNano": 66059897,
+ "shortestApexExecutionNano": 13287145,
+ "longestApexExecutionNano": 132179640
+ },
+ {
+ "batchNumber": 7208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170561434,
+ "shortestRoundTripNano": 75601391,
+ "longestRoundTripNano": 201548667,
+ "averageApexExecutionNano": 82337856,
+ "shortestApexExecutionNano": 14797054,
+ "longestApexExecutionNano": 158245153
+ },
+ {
+ "batchNumber": 7209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164479429,
+ "shortestRoundTripNano": 75111902,
+ "longestRoundTripNano": 191830454,
+ "averageApexExecutionNano": 77831724,
+ "shortestApexExecutionNano": 11420990,
+ "longestApexExecutionNano": 146772554
+ },
+ {
+ "batchNumber": 7210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144002967,
+ "shortestRoundTripNano": 53880435,
+ "longestRoundTripNano": 170662779,
+ "averageApexExecutionNano": 55337421,
+ "shortestApexExecutionNano": 5739804,
+ "longestApexExecutionNano": 129106125
+ },
+ {
+ "batchNumber": 7211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141794998,
+ "shortestRoundTripNano": 72173362,
+ "longestRoundTripNano": 174474372,
+ "averageApexExecutionNano": 59676574,
+ "shortestApexExecutionNano": 9528397,
+ "longestApexExecutionNano": 128169614
+ },
+ {
+ "batchNumber": 7212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150458140,
+ "shortestRoundTripNano": 76449826,
+ "longestRoundTripNano": 176201346,
+ "averageApexExecutionNano": 48081162,
+ "shortestApexExecutionNano": 7393765,
+ "longestApexExecutionNano": 118595769
+ },
+ {
+ "batchNumber": 7213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165467339,
+ "shortestRoundTripNano": 112162591,
+ "longestRoundTripNano": 201451349,
+ "averageApexExecutionNano": 73225436,
+ "shortestApexExecutionNano": 10771213,
+ "longestApexExecutionNano": 129854328
+ },
+ {
+ "batchNumber": 7214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126063595,
+ "shortestRoundTripNano": 55154779,
+ "longestRoundTripNano": 155654377,
+ "averageApexExecutionNano": 57058847,
+ "shortestApexExecutionNano": 5954219,
+ "longestApexExecutionNano": 105748314
+ },
+ {
+ "batchNumber": 7215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37500",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163645153,
+ "shortestRoundTripNano": 60616358,
+ "longestRoundTripNano": 192876158,
+ "averageApexExecutionNano": 66994155,
+ "shortestApexExecutionNano": 6927631,
+ "longestApexExecutionNano": 150393288
+ },
+ {
+ "batchNumber": 7216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192539462,
+ "shortestRoundTripNano": 66588935,
+ "longestRoundTripNano": 224557449,
+ "averageApexExecutionNano": 85235168,
+ "shortestApexExecutionNano": 11555359,
+ "longestApexExecutionNano": 178605910
+ },
+ {
+ "batchNumber": 7217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144657497,
+ "shortestRoundTripNano": 67556626,
+ "longestRoundTripNano": 170684272,
+ "averageApexExecutionNano": 70067587,
+ "shortestApexExecutionNano": 8647880,
+ "longestApexExecutionNano": 120801350
+ },
+ {
+ "batchNumber": 7218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164184015,
+ "shortestRoundTripNano": 79304233,
+ "longestRoundTripNano": 196480431,
+ "averageApexExecutionNano": 67905498,
+ "shortestApexExecutionNano": 14721157,
+ "longestApexExecutionNano": 122444273
+ },
+ {
+ "batchNumber": 7219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142728085,
+ "shortestRoundTripNano": 78843298,
+ "longestRoundTripNano": 172123315,
+ "averageApexExecutionNano": 58210159,
+ "shortestApexExecutionNano": 9545014,
+ "longestApexExecutionNano": 124623758
+ },
+ {
+ "batchNumber": 7220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153217885,
+ "shortestRoundTripNano": 62808995,
+ "longestRoundTripNano": 177611999,
+ "averageApexExecutionNano": 70211947,
+ "shortestApexExecutionNano": 17833827,
+ "longestApexExecutionNano": 113146116
+ },
+ {
+ "batchNumber": 7221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143599629,
+ "shortestRoundTripNano": 66204412,
+ "longestRoundTripNano": 183311688,
+ "averageApexExecutionNano": 47365086,
+ "shortestApexExecutionNano": 7634310,
+ "longestApexExecutionNano": 107470639
+ },
+ {
+ "batchNumber": 7222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147945729,
+ "shortestRoundTripNano": 81595653,
+ "longestRoundTripNano": 193076242,
+ "averageApexExecutionNano": 73690350,
+ "shortestApexExecutionNano": 8092542,
+ "longestApexExecutionNano": 128274785
+ },
+ {
+ "batchNumber": 7223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158974550,
+ "shortestRoundTripNano": 88344655,
+ "longestRoundTripNano": 181129087,
+ "averageApexExecutionNano": 69640432,
+ "shortestApexExecutionNano": 11175911,
+ "longestApexExecutionNano": 127176056
+ },
+ {
+ "batchNumber": 7224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37504",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188118936,
+ "shortestRoundTripNano": 65549879,
+ "longestRoundTripNano": 261121470,
+ "averageApexExecutionNano": 84845496,
+ "shortestApexExecutionNano": 11312543,
+ "longestApexExecutionNano": 168485672
+ },
+ {
+ "batchNumber": 7225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140875204,
+ "shortestRoundTripNano": 69019121,
+ "longestRoundTripNano": 177271253,
+ "averageApexExecutionNano": 64080707,
+ "shortestApexExecutionNano": 5250607,
+ "longestApexExecutionNano": 131460990
+ },
+ {
+ "batchNumber": 7226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151891082,
+ "shortestRoundTripNano": 63107108,
+ "longestRoundTripNano": 178550817,
+ "averageApexExecutionNano": 54650290,
+ "shortestApexExecutionNano": 8966351,
+ "longestApexExecutionNano": 113222549
+ },
+ {
+ "batchNumber": 7227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162162934,
+ "shortestRoundTripNano": 89023309,
+ "longestRoundTripNano": 190991860,
+ "averageApexExecutionNano": 76365458,
+ "shortestApexExecutionNano": 10495164,
+ "longestApexExecutionNano": 139550841
+ },
+ {
+ "batchNumber": 7228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139574838,
+ "shortestRoundTripNano": 81545534,
+ "longestRoundTripNano": 169644562,
+ "averageApexExecutionNano": 64825855,
+ "shortestApexExecutionNano": 8860159,
+ "longestApexExecutionNano": 131142176
+ },
+ {
+ "batchNumber": 7229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150007136,
+ "shortestRoundTripNano": 68408428,
+ "longestRoundTripNano": 183491710,
+ "averageApexExecutionNano": 51880003,
+ "shortestApexExecutionNano": 8996651,
+ "longestApexExecutionNano": 131355395
+ },
+ {
+ "batchNumber": 7230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131365784,
+ "shortestRoundTripNano": 38657981,
+ "longestRoundTripNano": 168556644,
+ "averageApexExecutionNano": 70534200,
+ "shortestApexExecutionNano": 9485302,
+ "longestApexExecutionNano": 126394509
+ },
+ {
+ "batchNumber": 7231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133402844,
+ "shortestRoundTripNano": 68702004,
+ "longestRoundTripNano": 168311273,
+ "averageApexExecutionNano": 62112045,
+ "shortestApexExecutionNano": 6866240,
+ "longestApexExecutionNano": 129873460
+ },
+ {
+ "batchNumber": 7232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135449640,
+ "shortestRoundTripNano": 53035386,
+ "longestRoundTripNano": 166535296,
+ "averageApexExecutionNano": 52834777,
+ "shortestApexExecutionNano": 5686851,
+ "longestApexExecutionNano": 104363388
+ },
+ {
+ "batchNumber": 7233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144203325,
+ "shortestRoundTripNano": 84198607,
+ "longestRoundTripNano": 173045050,
+ "averageApexExecutionNano": 56720677,
+ "shortestApexExecutionNano": 8792545,
+ "longestApexExecutionNano": 110903006
+ },
+ {
+ "batchNumber": 7234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139176613,
+ "shortestRoundTripNano": 33057952,
+ "longestRoundTripNano": 170376201,
+ "averageApexExecutionNano": 60038484,
+ "shortestApexExecutionNano": 9631923,
+ "longestApexExecutionNano": 117688184
+ },
+ {
+ "batchNumber": 7235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150203918,
+ "shortestRoundTripNano": 80743628,
+ "longestRoundTripNano": 181059153,
+ "averageApexExecutionNano": 68170178,
+ "shortestApexExecutionNano": 8898713,
+ "longestApexExecutionNano": 145537688
+ },
+ {
+ "batchNumber": 7236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123730276,
+ "shortestRoundTripNano": 48624211,
+ "longestRoundTripNano": 158602194,
+ "averageApexExecutionNano": 42196709,
+ "shortestApexExecutionNano": 6424310,
+ "longestApexExecutionNano": 101900318
+ },
+ {
+ "batchNumber": 7237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 232112428,
+ "shortestRoundTripNano": 55047643,
+ "longestRoundTripNano": 266966185,
+ "averageApexExecutionNano": 109131183,
+ "shortestApexExecutionNano": 10105634,
+ "longestApexExecutionNano": 216226692
+ },
+ {
+ "batchNumber": 7238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37512",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160099156,
+ "shortestRoundTripNano": 71753174,
+ "longestRoundTripNano": 189232719,
+ "averageApexExecutionNano": 70045563,
+ "shortestApexExecutionNano": 9567005,
+ "longestApexExecutionNano": 123464816
+ },
+ {
+ "batchNumber": 7239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138981772,
+ "shortestRoundTripNano": 80691300,
+ "longestRoundTripNano": 161635116,
+ "averageApexExecutionNano": 64180824,
+ "shortestApexExecutionNano": 8330925,
+ "longestApexExecutionNano": 115865641
+ },
+ {
+ "batchNumber": 7240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139668812,
+ "shortestRoundTripNano": 83600010,
+ "longestRoundTripNano": 163066179,
+ "averageApexExecutionNano": 55614990,
+ "shortestApexExecutionNano": 8948969,
+ "longestApexExecutionNano": 107376031
+ },
+ {
+ "batchNumber": 7241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124086246,
+ "shortestRoundTripNano": 59003223,
+ "longestRoundTripNano": 150399225,
+ "averageApexExecutionNano": 43370744,
+ "shortestApexExecutionNano": 6902053,
+ "longestApexExecutionNano": 107476029
+ },
+ {
+ "batchNumber": 7242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37508",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155586270,
+ "shortestRoundTripNano": 65421449,
+ "longestRoundTripNano": 188410985,
+ "averageApexExecutionNano": 73249554,
+ "shortestApexExecutionNano": 11278966,
+ "longestApexExecutionNano": 146926447
+ },
+ {
+ "batchNumber": 7243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120648467,
+ "shortestRoundTripNano": 53517064,
+ "longestRoundTripNano": 150536497,
+ "averageApexExecutionNano": 52023037,
+ "shortestApexExecutionNano": 12431218,
+ "longestApexExecutionNano": 106212466
+ },
+ {
+ "batchNumber": 7244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169572409,
+ "shortestRoundTripNano": 58754650,
+ "longestRoundTripNano": 201380351,
+ "averageApexExecutionNano": 68817028,
+ "shortestApexExecutionNano": 6309739,
+ "longestApexExecutionNano": 147755599
+ },
+ {
+ "batchNumber": 7245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178287539,
+ "shortestRoundTripNano": 97378003,
+ "longestRoundTripNano": 203624652,
+ "averageApexExecutionNano": 63047545,
+ "shortestApexExecutionNano": 9772903,
+ "longestApexExecutionNano": 141734609
+ },
+ {
+ "batchNumber": 7246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37514",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159505788,
+ "shortestRoundTripNano": 54559087,
+ "longestRoundTripNano": 192074458,
+ "averageApexExecutionNano": 64056911,
+ "shortestApexExecutionNano": 12754016,
+ "longestApexExecutionNano": 128751895
+ },
+ {
+ "batchNumber": 7247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159797781,
+ "shortestRoundTripNano": 69245267,
+ "longestRoundTripNano": 182795377,
+ "averageApexExecutionNano": 74200546,
+ "shortestApexExecutionNano": 9937771,
+ "longestApexExecutionNano": 140800213
+ },
+ {
+ "batchNumber": 7248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143501910,
+ "shortestRoundTripNano": 73491296,
+ "longestRoundTripNano": 167176659,
+ "averageApexExecutionNano": 67276014,
+ "shortestApexExecutionNano": 16310624,
+ "longestApexExecutionNano": 131809992
+ },
+ {
+ "batchNumber": 7249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165013661,
+ "shortestRoundTripNano": 76364908,
+ "longestRoundTripNano": 197798022,
+ "averageApexExecutionNano": 75102056,
+ "shortestApexExecutionNano": 9529956,
+ "longestApexExecutionNano": 133905249
+ },
+ {
+ "batchNumber": 7250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37518",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131390601,
+ "shortestRoundTripNano": 56944267,
+ "longestRoundTripNano": 163045855,
+ "averageApexExecutionNano": 68336993,
+ "shortestApexExecutionNano": 6174616,
+ "longestApexExecutionNano": 130153935
+ },
+ {
+ "batchNumber": 7251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156546313,
+ "shortestRoundTripNano": 62336464,
+ "longestRoundTripNano": 190464731,
+ "averageApexExecutionNano": 66393908,
+ "shortestApexExecutionNano": 9087744,
+ "longestApexExecutionNano": 135495605
+ },
+ {
+ "batchNumber": 7252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152288955,
+ "shortestRoundTripNano": 81067813,
+ "longestRoundTripNano": 179325779,
+ "averageApexExecutionNano": 73477997,
+ "shortestApexExecutionNano": 17295899,
+ "longestApexExecutionNano": 131928600
+ },
+ {
+ "batchNumber": 7253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145260278,
+ "shortestRoundTripNano": 57865015,
+ "longestRoundTripNano": 176950512,
+ "averageApexExecutionNano": 68622450,
+ "shortestApexExecutionNano": 8430146,
+ "longestApexExecutionNano": 134805225
+ },
+ {
+ "batchNumber": 7254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148909532,
+ "shortestRoundTripNano": 76590304,
+ "longestRoundTripNano": 179438908,
+ "averageApexExecutionNano": 46477358,
+ "shortestApexExecutionNano": 9825140,
+ "longestApexExecutionNano": 103851036
+ },
+ {
+ "batchNumber": 7255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134148098,
+ "shortestRoundTripNano": 39124591,
+ "longestRoundTripNano": 176641398,
+ "averageApexExecutionNano": 54585111,
+ "shortestApexExecutionNano": 11595999,
+ "longestApexExecutionNano": 120508643
+ },
+ {
+ "batchNumber": 7256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160213539,
+ "shortestRoundTripNano": 73227490,
+ "longestRoundTripNano": 193284889,
+ "averageApexExecutionNano": 54852506,
+ "shortestApexExecutionNano": 8778030,
+ "longestApexExecutionNano": 134419094
+ },
+ {
+ "batchNumber": 7257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157584080,
+ "shortestRoundTripNano": 51826944,
+ "longestRoundTripNano": 190550457,
+ "averageApexExecutionNano": 57850932,
+ "shortestApexExecutionNano": 9540037,
+ "longestApexExecutionNano": 124481624
+ },
+ {
+ "batchNumber": 7258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156064566,
+ "shortestRoundTripNano": 46289935,
+ "longestRoundTripNano": 183960135,
+ "averageApexExecutionNano": 70459684,
+ "shortestApexExecutionNano": 10269063,
+ "longestApexExecutionNano": 127244233
+ },
+ {
+ "batchNumber": 7259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124123915,
+ "shortestRoundTripNano": 46191539,
+ "longestRoundTripNano": 154930703,
+ "averageApexExecutionNano": 43028790,
+ "shortestApexExecutionNano": 7564654,
+ "longestApexExecutionNano": 104235520
+ },
+ {
+ "batchNumber": 7260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183535404,
+ "shortestRoundTripNano": 71038318,
+ "longestRoundTripNano": 231973304,
+ "averageApexExecutionNano": 83490778,
+ "shortestApexExecutionNano": 9420681,
+ "longestApexExecutionNano": 144788375
+ },
+ {
+ "batchNumber": 7261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37522",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149267008,
+ "shortestRoundTripNano": 62268183,
+ "longestRoundTripNano": 181560872,
+ "averageApexExecutionNano": 54711941,
+ "shortestApexExecutionNano": 7474423,
+ "longestApexExecutionNano": 119700266
+ },
+ {
+ "batchNumber": 7262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37522",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161905670,
+ "shortestRoundTripNano": 54391562,
+ "longestRoundTripNano": 194203452,
+ "averageApexExecutionNano": 56836646,
+ "shortestApexExecutionNano": 8804998,
+ "longestApexExecutionNano": 137122767
+ },
+ {
+ "batchNumber": 7263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147354375,
+ "shortestRoundTripNano": 75363570,
+ "longestRoundTripNano": 168321134,
+ "averageApexExecutionNano": 63199045,
+ "shortestApexExecutionNano": 5873337,
+ "longestApexExecutionNano": 121233452
+ },
+ {
+ "batchNumber": 7264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140342342,
+ "shortestRoundTripNano": 72806842,
+ "longestRoundTripNano": 171312022,
+ "averageApexExecutionNano": 61374958,
+ "shortestApexExecutionNano": 6894164,
+ "longestApexExecutionNano": 122377306
+ },
+ {
+ "batchNumber": 7265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146804033,
+ "shortestRoundTripNano": 43264948,
+ "longestRoundTripNano": 177579689,
+ "averageApexExecutionNano": 63451404,
+ "shortestApexExecutionNano": 10407418,
+ "longestApexExecutionNano": 130255209
+ },
+ {
+ "batchNumber": 7266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148180329,
+ "shortestRoundTripNano": 64945986,
+ "longestRoundTripNano": 182442112,
+ "averageApexExecutionNano": 63009051,
+ "shortestApexExecutionNano": 7852232,
+ "longestApexExecutionNano": 125523919
+ },
+ {
+ "batchNumber": 7267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151219236,
+ "shortestRoundTripNano": 58189152,
+ "longestRoundTripNano": 177880491,
+ "averageApexExecutionNano": 55652241,
+ "shortestApexExecutionNano": 8383495,
+ "longestApexExecutionNano": 123922644
+ },
+ {
+ "batchNumber": 7268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37516",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172172586,
+ "shortestRoundTripNano": 57084339,
+ "longestRoundTripNano": 215375597,
+ "averageApexExecutionNano": 72243897,
+ "shortestApexExecutionNano": 9569166,
+ "longestApexExecutionNano": 150227009
+ },
+ {
+ "batchNumber": 7269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153017060,
+ "shortestRoundTripNano": 46740183,
+ "longestRoundTripNano": 185588287,
+ "averageApexExecutionNano": 70027282,
+ "shortestApexExecutionNano": 7826742,
+ "longestApexExecutionNano": 145681708
+ },
+ {
+ "batchNumber": 7270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146990665,
+ "shortestRoundTripNano": 66858250,
+ "longestRoundTripNano": 176958293,
+ "averageApexExecutionNano": 68228535,
+ "shortestApexExecutionNano": 5194797,
+ "longestApexExecutionNano": 132604502
+ },
+ {
+ "batchNumber": 7271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37524",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174938660,
+ "shortestRoundTripNano": 71110014,
+ "longestRoundTripNano": 207298582,
+ "averageApexExecutionNano": 63724528,
+ "shortestApexExecutionNano": 7903387,
+ "longestApexExecutionNano": 138259015
+ },
+ {
+ "batchNumber": 7272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145009473,
+ "shortestRoundTripNano": 59352749,
+ "longestRoundTripNano": 200635961,
+ "averageApexExecutionNano": 63315361,
+ "shortestApexExecutionNano": 8723406,
+ "longestApexExecutionNano": 119193645
+ },
+ {
+ "batchNumber": 7273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133235034,
+ "shortestRoundTripNano": 67882529,
+ "longestRoundTripNano": 161181611,
+ "averageApexExecutionNano": 67533752,
+ "shortestApexExecutionNano": 6291980,
+ "longestApexExecutionNano": 121849807
+ },
+ {
+ "batchNumber": 7274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141735073,
+ "shortestRoundTripNano": 54363670,
+ "longestRoundTripNano": 172646573,
+ "averageApexExecutionNano": 56525039,
+ "shortestApexExecutionNano": 7509065,
+ "longestApexExecutionNano": 108942986
+ },
+ {
+ "batchNumber": 7275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142520157,
+ "shortestRoundTripNano": 65030768,
+ "longestRoundTripNano": 180904338,
+ "averageApexExecutionNano": 71014808,
+ "shortestApexExecutionNano": 9733450,
+ "longestApexExecutionNano": 135183893
+ },
+ {
+ "batchNumber": 7276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139915208,
+ "shortestRoundTripNano": 46868193,
+ "longestRoundTripNano": 172902869,
+ "averageApexExecutionNano": 65098970,
+ "shortestApexExecutionNano": 7409418,
+ "longestApexExecutionNano": 131044841
+ },
+ {
+ "batchNumber": 7277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163734446,
+ "shortestRoundTripNano": 78501336,
+ "longestRoundTripNano": 188837806,
+ "averageApexExecutionNano": 68734486,
+ "shortestApexExecutionNano": 12142152,
+ "longestApexExecutionNano": 117214365
+ },
+ {
+ "batchNumber": 7278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171067030,
+ "shortestRoundTripNano": 75618984,
+ "longestRoundTripNano": 201955529,
+ "averageApexExecutionNano": 74363022,
+ "shortestApexExecutionNano": 9470988,
+ "longestApexExecutionNano": 129658416
+ },
+ {
+ "batchNumber": 7279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158806914,
+ "shortestRoundTripNano": 79430809,
+ "longestRoundTripNano": 196134653,
+ "averageApexExecutionNano": 88104804,
+ "shortestApexExecutionNano": 21243652,
+ "longestApexExecutionNano": 145808585
+ },
+ {
+ "batchNumber": 7280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37526",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162533243,
+ "shortestRoundTripNano": 59179527,
+ "longestRoundTripNano": 194346148,
+ "averageApexExecutionNano": 71557026,
+ "shortestApexExecutionNano": 6342416,
+ "longestApexExecutionNano": 143861304
+ },
+ {
+ "batchNumber": 7281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163892065,
+ "shortestRoundTripNano": 69511139,
+ "longestRoundTripNano": 191121758,
+ "averageApexExecutionNano": 70440398,
+ "shortestApexExecutionNano": 9579998,
+ "longestApexExecutionNano": 144589907
+ },
+ {
+ "batchNumber": 7282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138820575,
+ "shortestRoundTripNano": 59607792,
+ "longestRoundTripNano": 168928815,
+ "averageApexExecutionNano": 61995420,
+ "shortestApexExecutionNano": 8982335,
+ "longestApexExecutionNano": 120844035
+ },
+ {
+ "batchNumber": 7283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140013318,
+ "shortestRoundTripNano": 51808544,
+ "longestRoundTripNano": 173395981,
+ "averageApexExecutionNano": 44457423,
+ "shortestApexExecutionNano": 6110364,
+ "longestApexExecutionNano": 121114453
+ },
+ {
+ "batchNumber": 7284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37530",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168596080,
+ "shortestRoundTripNano": 44099772,
+ "longestRoundTripNano": 217855009,
+ "averageApexExecutionNano": 79585962,
+ "shortestApexExecutionNano": 9931940,
+ "longestApexExecutionNano": 179561185
+ },
+ {
+ "batchNumber": 7285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138181961,
+ "shortestRoundTripNano": 65820560,
+ "longestRoundTripNano": 164129838,
+ "averageApexExecutionNano": 61141036,
+ "shortestApexExecutionNano": 7688810,
+ "longestApexExecutionNano": 118831930
+ },
+ {
+ "batchNumber": 7286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158258846,
+ "shortestRoundTripNano": 66300687,
+ "longestRoundTripNano": 184618192,
+ "averageApexExecutionNano": 73563236,
+ "shortestApexExecutionNano": 8597555,
+ "longestApexExecutionNano": 138996047
+ },
+ {
+ "batchNumber": 7287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188685488,
+ "shortestRoundTripNano": 99287971,
+ "longestRoundTripNano": 218037744,
+ "averageApexExecutionNano": 85553401,
+ "shortestApexExecutionNano": 14643867,
+ "longestApexExecutionNano": 141578230
+ },
+ {
+ "batchNumber": 7288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138735725,
+ "shortestRoundTripNano": 37437606,
+ "longestRoundTripNano": 165664036,
+ "averageApexExecutionNano": 52262931,
+ "shortestApexExecutionNano": 10447267,
+ "longestApexExecutionNano": 106999144
+ },
+ {
+ "batchNumber": 7289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149606785,
+ "shortestRoundTripNano": 76536451,
+ "longestRoundTripNano": 180285065,
+ "averageApexExecutionNano": 58803818,
+ "shortestApexExecutionNano": 8567204,
+ "longestApexExecutionNano": 128403690
+ },
+ {
+ "batchNumber": 7290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146488347,
+ "shortestRoundTripNano": 65410462,
+ "longestRoundTripNano": 178675956,
+ "averageApexExecutionNano": 60096190,
+ "shortestApexExecutionNano": 9324548,
+ "longestApexExecutionNano": 112348911
+ },
+ {
+ "batchNumber": 7291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155305031,
+ "shortestRoundTripNano": 96206836,
+ "longestRoundTripNano": 181934525,
+ "averageApexExecutionNano": 80732780,
+ "shortestApexExecutionNano": 11323804,
+ "longestApexExecutionNano": 129610239
+ },
+ {
+ "batchNumber": 7292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141872716,
+ "shortestRoundTripNano": 64936388,
+ "longestRoundTripNano": 166785030,
+ "averageApexExecutionNano": 65190389,
+ "shortestApexExecutionNano": 7538738,
+ "longestApexExecutionNano": 118062357
+ },
+ {
+ "batchNumber": 7293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156823528,
+ "shortestRoundTripNano": 65861681,
+ "longestRoundTripNano": 186842770,
+ "averageApexExecutionNano": 44867606,
+ "shortestApexExecutionNano": 7643074,
+ "longestApexExecutionNano": 120863753
+ },
+ {
+ "batchNumber": 7294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158144291,
+ "shortestRoundTripNano": 66465409,
+ "longestRoundTripNano": 177590631,
+ "averageApexExecutionNano": 72441235,
+ "shortestApexExecutionNano": 11782234,
+ "longestApexExecutionNano": 134960871
+ },
+ {
+ "batchNumber": 7295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150798864,
+ "shortestRoundTripNano": 83102509,
+ "longestRoundTripNano": 184193262,
+ "averageApexExecutionNano": 65626880,
+ "shortestApexExecutionNano": 12301443,
+ "longestApexExecutionNano": 122123311
+ },
+ {
+ "batchNumber": 7296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152889765,
+ "shortestRoundTripNano": 55717613,
+ "longestRoundTripNano": 192852677,
+ "averageApexExecutionNano": 62150923,
+ "shortestApexExecutionNano": 10820787,
+ "longestApexExecutionNano": 140863444
+ },
+ {
+ "batchNumber": 7297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153255454,
+ "shortestRoundTripNano": 40985921,
+ "longestRoundTripNano": 181489011,
+ "averageApexExecutionNano": 72577226,
+ "shortestApexExecutionNano": 9378970,
+ "longestApexExecutionNano": 129608264
+ },
+ {
+ "batchNumber": 7298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139263169,
+ "shortestRoundTripNano": 71451467,
+ "longestRoundTripNano": 176737719,
+ "averageApexExecutionNano": 68506291,
+ "shortestApexExecutionNano": 10908154,
+ "longestApexExecutionNano": 130456091
+ },
+ {
+ "batchNumber": 7299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37532",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148468075,
+ "shortestRoundTripNano": 57006324,
+ "longestRoundTripNano": 197647037,
+ "averageApexExecutionNano": 62471017,
+ "shortestApexExecutionNano": 7463158,
+ "longestApexExecutionNano": 132304571
+ },
+ {
+ "batchNumber": 7300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155990761,
+ "shortestRoundTripNano": 42106559,
+ "longestRoundTripNano": 190878143,
+ "averageApexExecutionNano": 62449753,
+ "shortestApexExecutionNano": 5595104,
+ "longestApexExecutionNano": 153124592
+ },
+ {
+ "batchNumber": 7301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143585519,
+ "shortestRoundTripNano": 68012845,
+ "longestRoundTripNano": 184863048,
+ "averageApexExecutionNano": 62338208,
+ "shortestApexExecutionNano": 14400942,
+ "longestApexExecutionNano": 123830350
+ },
+ {
+ "batchNumber": 7302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143226606,
+ "shortestRoundTripNano": 85298727,
+ "longestRoundTripNano": 168840633,
+ "averageApexExecutionNano": 72603178,
+ "shortestApexExecutionNano": 9679711,
+ "longestApexExecutionNano": 127393474
+ },
+ {
+ "batchNumber": 7303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136319912,
+ "shortestRoundTripNano": 36122872,
+ "longestRoundTripNano": 163153736,
+ "averageApexExecutionNano": 55253750,
+ "shortestApexExecutionNano": 4879878,
+ "longestApexExecutionNano": 120945769
+ },
+ {
+ "batchNumber": 7304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169957832,
+ "shortestRoundTripNano": 76273817,
+ "longestRoundTripNano": 199712602,
+ "averageApexExecutionNano": 56399094,
+ "shortestApexExecutionNano": 8670385,
+ "longestApexExecutionNano": 124532306
+ },
+ {
+ "batchNumber": 7305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37538",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152544800,
+ "shortestRoundTripNano": 68794517,
+ "longestRoundTripNano": 184862602,
+ "averageApexExecutionNano": 77746432,
+ "shortestApexExecutionNano": 16371651,
+ "longestApexExecutionNano": 150463004
+ },
+ {
+ "batchNumber": 7306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141764634,
+ "shortestRoundTripNano": 84666213,
+ "longestRoundTripNano": 173015467,
+ "averageApexExecutionNano": 75701313,
+ "shortestApexExecutionNano": 8099928,
+ "longestApexExecutionNano": 135097838
+ },
+ {
+ "batchNumber": 7307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154094797,
+ "shortestRoundTripNano": 68819280,
+ "longestRoundTripNano": 186086214,
+ "averageApexExecutionNano": 61310527,
+ "shortestApexExecutionNano": 6203981,
+ "longestApexExecutionNano": 125359439
+ },
+ {
+ "batchNumber": 7308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143043136,
+ "shortestRoundTripNano": 72545339,
+ "longestRoundTripNano": 170769515,
+ "averageApexExecutionNano": 65671023,
+ "shortestApexExecutionNano": 5445760,
+ "longestApexExecutionNano": 116613515
+ },
+ {
+ "batchNumber": 7309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129933336,
+ "shortestRoundTripNano": 57683331,
+ "longestRoundTripNano": 169303533,
+ "averageApexExecutionNano": 61020831,
+ "shortestApexExecutionNano": 11347765,
+ "longestApexExecutionNano": 122858050
+ },
+ {
+ "batchNumber": 7310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136897104,
+ "shortestRoundTripNano": 60897028,
+ "longestRoundTripNano": 169573608,
+ "averageApexExecutionNano": 37805310,
+ "shortestApexExecutionNano": 6248954,
+ "longestApexExecutionNano": 88432587
+ },
+ {
+ "batchNumber": 7311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127806737,
+ "shortestRoundTripNano": 67861104,
+ "longestRoundTripNano": 162391114,
+ "averageApexExecutionNano": 68010087,
+ "shortestApexExecutionNano": 11954436,
+ "longestApexExecutionNano": 127131314
+ },
+ {
+ "batchNumber": 7312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137051454,
+ "shortestRoundTripNano": 69818179,
+ "longestRoundTripNano": 170117209,
+ "averageApexExecutionNano": 57740123,
+ "shortestApexExecutionNano": 6387519,
+ "longestApexExecutionNano": 128713696
+ },
+ {
+ "batchNumber": 7313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136662306,
+ "shortestRoundTripNano": 60693593,
+ "longestRoundTripNano": 171982041,
+ "averageApexExecutionNano": 66590961,
+ "shortestApexExecutionNano": 10925804,
+ "longestApexExecutionNano": 109524252
+ },
+ {
+ "batchNumber": 7314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149191361,
+ "shortestRoundTripNano": 65378526,
+ "longestRoundTripNano": 180418555,
+ "averageApexExecutionNano": 74529862,
+ "shortestApexExecutionNano": 13247021,
+ "longestApexExecutionNano": 150200132
+ },
+ {
+ "batchNumber": 7315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37540",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154236545,
+ "shortestRoundTripNano": 43785127,
+ "longestRoundTripNano": 188697666,
+ "averageApexExecutionNano": 71154443,
+ "shortestApexExecutionNano": 7398389,
+ "longestApexExecutionNano": 124763035
+ },
+ {
+ "batchNumber": 7316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145918932,
+ "shortestRoundTripNano": 70009005,
+ "longestRoundTripNano": 172392529,
+ "averageApexExecutionNano": 61955674,
+ "shortestApexExecutionNano": 9270624,
+ "longestApexExecutionNano": 123258307
+ },
+ {
+ "batchNumber": 7317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37542",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147313412,
+ "shortestRoundTripNano": 47309200,
+ "longestRoundTripNano": 177294254,
+ "averageApexExecutionNano": 48476351,
+ "shortestApexExecutionNano": 6904890,
+ "longestApexExecutionNano": 119853156
+ },
+ {
+ "batchNumber": 7318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135361746,
+ "shortestRoundTripNano": 63331094,
+ "longestRoundTripNano": 159468758,
+ "averageApexExecutionNano": 51415259,
+ "shortestApexExecutionNano": 6295282,
+ "longestApexExecutionNano": 103161633
+ },
+ {
+ "batchNumber": 7319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141130649,
+ "shortestRoundTripNano": 59307929,
+ "longestRoundTripNano": 166217788,
+ "averageApexExecutionNano": 65861282,
+ "shortestApexExecutionNano": 5892667,
+ "longestApexExecutionNano": 118851036
+ },
+ {
+ "batchNumber": 7320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168169197,
+ "shortestRoundTripNano": 69112224,
+ "longestRoundTripNano": 198122064,
+ "averageApexExecutionNano": 77657019,
+ "shortestApexExecutionNano": 14887813,
+ "longestApexExecutionNano": 142999953
+ },
+ {
+ "batchNumber": 7321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37546",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128349356,
+ "shortestRoundTripNano": 59965334,
+ "longestRoundTripNano": 155574544,
+ "averageApexExecutionNano": 58377848,
+ "shortestApexExecutionNano": 10035039,
+ "longestApexExecutionNano": 129362660
+ },
+ {
+ "batchNumber": 7322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37546",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144066541,
+ "shortestRoundTripNano": 63533622,
+ "longestRoundTripNano": 174977002,
+ "averageApexExecutionNano": 62297065,
+ "shortestApexExecutionNano": 7191210,
+ "longestApexExecutionNano": 119678111
+ },
+ {
+ "batchNumber": 7323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144722184,
+ "shortestRoundTripNano": 69736538,
+ "longestRoundTripNano": 172889974,
+ "averageApexExecutionNano": 72127889,
+ "shortestApexExecutionNano": 8769722,
+ "longestApexExecutionNano": 113485555
+ },
+ {
+ "batchNumber": 7324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156792493,
+ "shortestRoundTripNano": 74893073,
+ "longestRoundTripNano": 185293389,
+ "averageApexExecutionNano": 58051517,
+ "shortestApexExecutionNano": 8709587,
+ "longestApexExecutionNano": 121513103
+ },
+ {
+ "batchNumber": 7325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149139456,
+ "shortestRoundTripNano": 58305326,
+ "longestRoundTripNano": 178442566,
+ "averageApexExecutionNano": 57201977,
+ "shortestApexExecutionNano": 9343358,
+ "longestApexExecutionNano": 131393833
+ },
+ {
+ "batchNumber": 7326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132934738,
+ "shortestRoundTripNano": 96699950,
+ "longestRoundTripNano": 154116321,
+ "averageApexExecutionNano": 57641278,
+ "shortestApexExecutionNano": 7391069,
+ "longestApexExecutionNano": 99443784
+ },
+ {
+ "batchNumber": 7327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142300877,
+ "shortestRoundTripNano": 53314456,
+ "longestRoundTripNano": 169586756,
+ "averageApexExecutionNano": 54843638,
+ "shortestApexExecutionNano": 13217469,
+ "longestApexExecutionNano": 101770946
+ },
+ {
+ "batchNumber": 7328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138852594,
+ "shortestRoundTripNano": 63320125,
+ "longestRoundTripNano": 168376326,
+ "averageApexExecutionNano": 63475776,
+ "shortestApexExecutionNano": 9473491,
+ "longestApexExecutionNano": 116963967
+ },
+ {
+ "batchNumber": 7329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37544",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180527355,
+ "shortestRoundTripNano": 55253639,
+ "longestRoundTripNano": 221329217,
+ "averageApexExecutionNano": 79168549,
+ "shortestApexExecutionNano": 6669691,
+ "longestApexExecutionNano": 165534602
+ },
+ {
+ "batchNumber": 7330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133723691,
+ "shortestRoundTripNano": 65891907,
+ "longestRoundTripNano": 162658934,
+ "averageApexExecutionNano": 48707771,
+ "shortestApexExecutionNano": 12017290,
+ "longestApexExecutionNano": 102628920
+ },
+ {
+ "batchNumber": 7331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156988027,
+ "shortestRoundTripNano": 58037628,
+ "longestRoundTripNano": 181668336,
+ "averageApexExecutionNano": 63051769,
+ "shortestApexExecutionNano": 11187590,
+ "longestApexExecutionNano": 121603956
+ },
+ {
+ "batchNumber": 7332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37548",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162925475,
+ "shortestRoundTripNano": 66948815,
+ "longestRoundTripNano": 196469925,
+ "averageApexExecutionNano": 72922535,
+ "shortestApexExecutionNano": 7622883,
+ "longestApexExecutionNano": 150253396
+ },
+ {
+ "batchNumber": 7333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141109272,
+ "shortestRoundTripNano": 65016814,
+ "longestRoundTripNano": 177144726,
+ "averageApexExecutionNano": 57441014,
+ "shortestApexExecutionNano": 12743685,
+ "longestApexExecutionNano": 111566205
+ },
+ {
+ "batchNumber": 7334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141804484,
+ "shortestRoundTripNano": 72612419,
+ "longestRoundTripNano": 166682592,
+ "averageApexExecutionNano": 68805634,
+ "shortestApexExecutionNano": 6692529,
+ "longestApexExecutionNano": 117626793
+ },
+ {
+ "batchNumber": 7335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162919031,
+ "shortestRoundTripNano": 52198343,
+ "longestRoundTripNano": 196938767,
+ "averageApexExecutionNano": 69139664,
+ "shortestApexExecutionNano": 10704751,
+ "longestApexExecutionNano": 146952511
+ },
+ {
+ "batchNumber": 7336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146037057,
+ "shortestRoundTripNano": 51050583,
+ "longestRoundTripNano": 178450921,
+ "averageApexExecutionNano": 65383795,
+ "shortestApexExecutionNano": 11290761,
+ "longestApexExecutionNano": 115977847
+ },
+ {
+ "batchNumber": 7337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140837055,
+ "shortestRoundTripNano": 75499138,
+ "longestRoundTripNano": 171078578,
+ "averageApexExecutionNano": 64854102,
+ "shortestApexExecutionNano": 11826955,
+ "longestApexExecutionNano": 108838171
+ },
+ {
+ "batchNumber": 7338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37552",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148320830,
+ "shortestRoundTripNano": 60156951,
+ "longestRoundTripNano": 189135850,
+ "averageApexExecutionNano": 65063628,
+ "shortestApexExecutionNano": 8204558,
+ "longestApexExecutionNano": 147593442
+ },
+ {
+ "batchNumber": 7339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137589795,
+ "shortestRoundTripNano": 44922507,
+ "longestRoundTripNano": 173500054,
+ "averageApexExecutionNano": 51461582,
+ "shortestApexExecutionNano": 6407990,
+ "longestApexExecutionNano": 111661048
+ },
+ {
+ "batchNumber": 7340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142860541,
+ "shortestRoundTripNano": 100786836,
+ "longestRoundTripNano": 161613500,
+ "averageApexExecutionNano": 62991839,
+ "shortestApexExecutionNano": 9886784,
+ "longestApexExecutionNano": 109781348
+ },
+ {
+ "batchNumber": 7341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164500158,
+ "shortestRoundTripNano": 84435613,
+ "longestRoundTripNano": 188803107,
+ "averageApexExecutionNano": 54869752,
+ "shortestApexExecutionNano": 5972016,
+ "longestApexExecutionNano": 138456961
+ },
+ {
+ "batchNumber": 7342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146681231,
+ "shortestRoundTripNano": 82284206,
+ "longestRoundTripNano": 173811199,
+ "averageApexExecutionNano": 57115550,
+ "shortestApexExecutionNano": 8626448,
+ "longestApexExecutionNano": 122152935
+ },
+ {
+ "batchNumber": 7343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150432208,
+ "shortestRoundTripNano": 70356147,
+ "longestRoundTripNano": 185339963,
+ "averageApexExecutionNano": 56891452,
+ "shortestApexExecutionNano": 6026829,
+ "longestApexExecutionNano": 113253063
+ },
+ {
+ "batchNumber": 7344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37550",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154150937,
+ "shortestRoundTripNano": 62270438,
+ "longestRoundTripNano": 186463599,
+ "averageApexExecutionNano": 70222544,
+ "shortestApexExecutionNano": 13592794,
+ "longestApexExecutionNano": 138938848
+ },
+ {
+ "batchNumber": 7345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120219388,
+ "shortestRoundTripNano": 58068174,
+ "longestRoundTripNano": 148935449,
+ "averageApexExecutionNano": 50753857,
+ "shortestApexExecutionNano": 8596503,
+ "longestApexExecutionNano": 109410494
+ },
+ {
+ "batchNumber": 7346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164212826,
+ "shortestRoundTripNano": 71788668,
+ "longestRoundTripNano": 198220484,
+ "averageApexExecutionNano": 58944822,
+ "shortestApexExecutionNano": 11527903,
+ "longestApexExecutionNano": 123924955
+ },
+ {
+ "batchNumber": 7347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120817623,
+ "shortestRoundTripNano": 51161686,
+ "longestRoundTripNano": 152316564,
+ "averageApexExecutionNano": 46276653,
+ "shortestApexExecutionNano": 6356222,
+ "longestApexExecutionNano": 104248100
+ },
+ {
+ "batchNumber": 7348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128170841,
+ "shortestRoundTripNano": 54665971,
+ "longestRoundTripNano": 168170308,
+ "averageApexExecutionNano": 54045889,
+ "shortestApexExecutionNano": 10696200,
+ "longestApexExecutionNano": 111022378
+ },
+ {
+ "batchNumber": 7349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137897284,
+ "shortestRoundTripNano": 35891598,
+ "longestRoundTripNano": 169883853,
+ "averageApexExecutionNano": 63854208,
+ "shortestApexExecutionNano": 6295960,
+ "longestApexExecutionNano": 114411632
+ },
+ {
+ "batchNumber": 7350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37554",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157397236,
+ "shortestRoundTripNano": 50403677,
+ "longestRoundTripNano": 191134676,
+ "averageApexExecutionNano": 75223129,
+ "shortestApexExecutionNano": 15149292,
+ "longestApexExecutionNano": 129881240
+ },
+ {
+ "batchNumber": 7351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145296906,
+ "shortestRoundTripNano": 67556124,
+ "longestRoundTripNano": 176435307,
+ "averageApexExecutionNano": 60022626,
+ "shortestApexExecutionNano": 6495289,
+ "longestApexExecutionNano": 122499371
+ },
+ {
+ "batchNumber": 7352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37556",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136328022,
+ "shortestRoundTripNano": 69774181,
+ "longestRoundTripNano": 168240290,
+ "averageApexExecutionNano": 60525479,
+ "shortestApexExecutionNano": 11422079,
+ "longestApexExecutionNano": 130086468
+ },
+ {
+ "batchNumber": 7353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165429926,
+ "shortestRoundTripNano": 80232993,
+ "longestRoundTripNano": 200662086,
+ "averageApexExecutionNano": 68266703,
+ "shortestApexExecutionNano": 11601460,
+ "longestApexExecutionNano": 138950188
+ },
+ {
+ "batchNumber": 7354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145808726,
+ "shortestRoundTripNano": 71841800,
+ "longestRoundTripNano": 170526942,
+ "averageApexExecutionNano": 68068496,
+ "shortestApexExecutionNano": 9969008,
+ "longestApexExecutionNano": 124890360
+ },
+ {
+ "batchNumber": 7355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136544460,
+ "shortestRoundTripNano": 77944744,
+ "longestRoundTripNano": 167842618,
+ "averageApexExecutionNano": 52973020,
+ "shortestApexExecutionNano": 5922766,
+ "longestApexExecutionNano": 107407441
+ },
+ {
+ "batchNumber": 7356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150621746,
+ "shortestRoundTripNano": 72830129,
+ "longestRoundTripNano": 181137964,
+ "averageApexExecutionNano": 52288783,
+ "shortestApexExecutionNano": 5212246,
+ "longestApexExecutionNano": 108946981
+ },
+ {
+ "batchNumber": 7357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154126176,
+ "shortestRoundTripNano": 47662584,
+ "longestRoundTripNano": 176879291,
+ "averageApexExecutionNano": 79677848,
+ "shortestApexExecutionNano": 9335929,
+ "longestApexExecutionNano": 123338377
+ },
+ {
+ "batchNumber": 7358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162882263,
+ "shortestRoundTripNano": 72915196,
+ "longestRoundTripNano": 191543506,
+ "averageApexExecutionNano": 51630950,
+ "shortestApexExecutionNano": 7144805,
+ "longestApexExecutionNano": 126322661
+ },
+ {
+ "batchNumber": 7359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37558",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144298989,
+ "shortestRoundTripNano": 47343954,
+ "longestRoundTripNano": 171097388,
+ "averageApexExecutionNano": 61792398,
+ "shortestApexExecutionNano": 9723484,
+ "longestApexExecutionNano": 123183906
+ },
+ {
+ "batchNumber": 7360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139100687,
+ "shortestRoundTripNano": 68849733,
+ "longestRoundTripNano": 166691525,
+ "averageApexExecutionNano": 61344903,
+ "shortestApexExecutionNano": 11703709,
+ "longestApexExecutionNano": 119002287
+ },
+ {
+ "batchNumber": 7361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156217008,
+ "shortestRoundTripNano": 64988632,
+ "longestRoundTripNano": 184636674,
+ "averageApexExecutionNano": 51025939,
+ "shortestApexExecutionNano": 7097394,
+ "longestApexExecutionNano": 121324358
+ },
+ {
+ "batchNumber": 7362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164033367,
+ "shortestRoundTripNano": 80297786,
+ "longestRoundTripNano": 193114053,
+ "averageApexExecutionNano": 62378898,
+ "shortestApexExecutionNano": 10358379,
+ "longestApexExecutionNano": 142361991
+ },
+ {
+ "batchNumber": 7363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37560",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142455333,
+ "shortestRoundTripNano": 46911548,
+ "longestRoundTripNano": 178414802,
+ "averageApexExecutionNano": 67673089,
+ "shortestApexExecutionNano": 6835678,
+ "longestApexExecutionNano": 122792702
+ },
+ {
+ "batchNumber": 7364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127598828,
+ "shortestRoundTripNano": 74670960,
+ "longestRoundTripNano": 149456837,
+ "averageApexExecutionNano": 56268559,
+ "shortestApexExecutionNano": 10538161,
+ "longestApexExecutionNano": 97298278
+ },
+ {
+ "batchNumber": 7365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138394153,
+ "shortestRoundTripNano": 67337109,
+ "longestRoundTripNano": 164011919,
+ "averageApexExecutionNano": 60397532,
+ "shortestApexExecutionNano": 10236180,
+ "longestApexExecutionNano": 123882609
+ },
+ {
+ "batchNumber": 7366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156483394,
+ "shortestRoundTripNano": 61619653,
+ "longestRoundTripNano": 192235444,
+ "averageApexExecutionNano": 42417691,
+ "shortestApexExecutionNano": 6791559,
+ "longestApexExecutionNano": 105904334
+ },
+ {
+ "batchNumber": 7367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129154809,
+ "shortestRoundTripNano": 45566961,
+ "longestRoundTripNano": 155759580,
+ "averageApexExecutionNano": 51068474,
+ "shortestApexExecutionNano": 8779576,
+ "longestApexExecutionNano": 109135814
+ },
+ {
+ "batchNumber": 7368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129951803,
+ "shortestRoundTripNano": 71669773,
+ "longestRoundTripNano": 154727107,
+ "averageApexExecutionNano": 55306236,
+ "shortestApexExecutionNano": 6556239,
+ "longestApexExecutionNano": 115032624
+ },
+ {
+ "batchNumber": 7369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37562",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144244369,
+ "shortestRoundTripNano": 45929155,
+ "longestRoundTripNano": 180510291,
+ "averageApexExecutionNano": 61301968,
+ "shortestApexExecutionNano": 8900969,
+ "longestApexExecutionNano": 110030152
+ },
+ {
+ "batchNumber": 7370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153527190,
+ "shortestRoundTripNano": 72491566,
+ "longestRoundTripNano": 178762296,
+ "averageApexExecutionNano": 67434356,
+ "shortestApexExecutionNano": 14654805,
+ "longestApexExecutionNano": 126336450
+ },
+ {
+ "batchNumber": 7371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140415806,
+ "shortestRoundTripNano": 69910792,
+ "longestRoundTripNano": 168931003,
+ "averageApexExecutionNano": 66838997,
+ "shortestApexExecutionNano": 10269095,
+ "longestApexExecutionNano": 128955790
+ },
+ {
+ "batchNumber": 7372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143618607,
+ "shortestRoundTripNano": 79107211,
+ "longestRoundTripNano": 167637056,
+ "averageApexExecutionNano": 47988144,
+ "shortestApexExecutionNano": 7518556,
+ "longestApexExecutionNano": 121248601
+ },
+ {
+ "batchNumber": 7373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37564",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 233257722,
+ "shortestRoundTripNano": 48236534,
+ "longestRoundTripNano": 260291746,
+ "averageApexExecutionNano": 136523150,
+ "shortestApexExecutionNano": 4686819,
+ "longestApexExecutionNano": 221287512
+ },
+ {
+ "batchNumber": 7374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134590780,
+ "shortestRoundTripNano": 76833843,
+ "longestRoundTripNano": 161146526,
+ "averageApexExecutionNano": 41196236,
+ "shortestApexExecutionNano": 5970472,
+ "longestApexExecutionNano": 100208762
+ },
+ {
+ "batchNumber": 7375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141718209,
+ "shortestRoundTripNano": 63168318,
+ "longestRoundTripNano": 169731268,
+ "averageApexExecutionNano": 59404006,
+ "shortestApexExecutionNano": 8239918,
+ "longestApexExecutionNano": 109819153
+ },
+ {
+ "batchNumber": 7376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138665345,
+ "shortestRoundTripNano": 61041370,
+ "longestRoundTripNano": 170621989,
+ "averageApexExecutionNano": 53858096,
+ "shortestApexExecutionNano": 11586778,
+ "longestApexExecutionNano": 101506769
+ },
+ {
+ "batchNumber": 7377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151296394,
+ "shortestRoundTripNano": 55311318,
+ "longestRoundTripNano": 182047372,
+ "averageApexExecutionNano": 66721362,
+ "shortestApexExecutionNano": 15256999,
+ "longestApexExecutionNano": 129317712
+ },
+ {
+ "batchNumber": 7378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173685270,
+ "shortestRoundTripNano": 86182004,
+ "longestRoundTripNano": 196088425,
+ "averageApexExecutionNano": 78545266,
+ "shortestApexExecutionNano": 8903294,
+ "longestApexExecutionNano": 140553608
+ },
+ {
+ "batchNumber": 7379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131613383,
+ "shortestRoundTripNano": 55129162,
+ "longestRoundTripNano": 164823499,
+ "averageApexExecutionNano": 52996323,
+ "shortestApexExecutionNano": 7642898,
+ "longestApexExecutionNano": 114355118
+ },
+ {
+ "batchNumber": 7380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37566",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141867084,
+ "shortestRoundTripNano": 48530323,
+ "longestRoundTripNano": 177076496,
+ "averageApexExecutionNano": 72935317,
+ "shortestApexExecutionNano": 9034554,
+ "longestApexExecutionNano": 133962712
+ },
+ {
+ "batchNumber": 7381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146016464,
+ "shortestRoundTripNano": 78732946,
+ "longestRoundTripNano": 177751426,
+ "averageApexExecutionNano": 51733530,
+ "shortestApexExecutionNano": 6050611,
+ "longestApexExecutionNano": 121888318
+ },
+ {
+ "batchNumber": 7382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132181704,
+ "shortestRoundTripNano": 74471303,
+ "longestRoundTripNano": 167295151,
+ "averageApexExecutionNano": 74172298,
+ "shortestApexExecutionNano": 7384698,
+ "longestApexExecutionNano": 129015867
+ },
+ {
+ "batchNumber": 7383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37568",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147161970,
+ "shortestRoundTripNano": 96585433,
+ "longestRoundTripNano": 181641515,
+ "averageApexExecutionNano": 66824723,
+ "shortestApexExecutionNano": 9269187,
+ "longestApexExecutionNano": 127969616
+ },
+ {
+ "batchNumber": 7384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120847251,
+ "shortestRoundTripNano": 45565822,
+ "longestRoundTripNano": 152301458,
+ "averageApexExecutionNano": 53856324,
+ "shortestApexExecutionNano": 8777391,
+ "longestApexExecutionNano": 114434490
+ },
+ {
+ "batchNumber": 7385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171645529,
+ "shortestRoundTripNano": 67450716,
+ "longestRoundTripNano": 202044209,
+ "averageApexExecutionNano": 81646483,
+ "shortestApexExecutionNano": 11216387,
+ "longestApexExecutionNano": 158467780
+ },
+ {
+ "batchNumber": 7386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166965710,
+ "shortestRoundTripNano": 66057523,
+ "longestRoundTripNano": 200407999,
+ "averageApexExecutionNano": 70090915,
+ "shortestApexExecutionNano": 9539812,
+ "longestApexExecutionNano": 141017011
+ },
+ {
+ "batchNumber": 7387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37572",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151755714,
+ "shortestRoundTripNano": 60302358,
+ "longestRoundTripNano": 184322012,
+ "averageApexExecutionNano": 54649969,
+ "shortestApexExecutionNano": 15351535,
+ "longestApexExecutionNano": 138936015
+ },
+ {
+ "batchNumber": 7388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153459120,
+ "shortestRoundTripNano": 46714073,
+ "longestRoundTripNano": 186458078,
+ "averageApexExecutionNano": 67170719,
+ "shortestApexExecutionNano": 10977669,
+ "longestApexExecutionNano": 133453248
+ },
+ {
+ "batchNumber": 7389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146925047,
+ "shortestRoundTripNano": 46987498,
+ "longestRoundTripNano": 177502351,
+ "averageApexExecutionNano": 60581565,
+ "shortestApexExecutionNano": 10306692,
+ "longestApexExecutionNano": 132771863
+ },
+ {
+ "batchNumber": 7390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150253312,
+ "shortestRoundTripNano": 90360335,
+ "longestRoundTripNano": 178441545,
+ "averageApexExecutionNano": 59936840,
+ "shortestApexExecutionNano": 6075902,
+ "longestApexExecutionNano": 124505475
+ },
+ {
+ "batchNumber": 7391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148534574,
+ "shortestRoundTripNano": 79624854,
+ "longestRoundTripNano": 176015714,
+ "averageApexExecutionNano": 68389846,
+ "shortestApexExecutionNano": 7339640,
+ "longestApexExecutionNano": 129845159
+ },
+ {
+ "batchNumber": 7392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158427542,
+ "shortestRoundTripNano": 60981860,
+ "longestRoundTripNano": 187895191,
+ "averageApexExecutionNano": 60491642,
+ "shortestApexExecutionNano": 10991885,
+ "longestApexExecutionNano": 115177220
+ },
+ {
+ "batchNumber": 7393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147358111,
+ "shortestRoundTripNano": 63335775,
+ "longestRoundTripNano": 175033830,
+ "averageApexExecutionNano": 61875577,
+ "shortestApexExecutionNano": 11590603,
+ "longestApexExecutionNano": 109193277
+ },
+ {
+ "batchNumber": 7394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141204305,
+ "shortestRoundTripNano": 58580950,
+ "longestRoundTripNano": 175459512,
+ "averageApexExecutionNano": 57151282,
+ "shortestApexExecutionNano": 6773408,
+ "longestApexExecutionNano": 102824683
+ },
+ {
+ "batchNumber": 7395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131861547,
+ "shortestRoundTripNano": 53455339,
+ "longestRoundTripNano": 165509818,
+ "averageApexExecutionNano": 51756054,
+ "shortestApexExecutionNano": 5973684,
+ "longestApexExecutionNano": 121744667
+ },
+ {
+ "batchNumber": 7396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147588647,
+ "shortestRoundTripNano": 73749764,
+ "longestRoundTripNano": 172064460,
+ "averageApexExecutionNano": 65623095,
+ "shortestApexExecutionNano": 10615000,
+ "longestApexExecutionNano": 114022686
+ },
+ {
+ "batchNumber": 7397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148550101,
+ "shortestRoundTripNano": 57678805,
+ "longestRoundTripNano": 175103142,
+ "averageApexExecutionNano": 49748100,
+ "shortestApexExecutionNano": 8548117,
+ "longestApexExecutionNano": 114938643
+ },
+ {
+ "batchNumber": 7398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37570",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163470509,
+ "shortestRoundTripNano": 74712041,
+ "longestRoundTripNano": 196585756,
+ "averageApexExecutionNano": 77547146,
+ "shortestApexExecutionNano": 16288488,
+ "longestApexExecutionNano": 155222926
+ },
+ {
+ "batchNumber": 7399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157846066,
+ "shortestRoundTripNano": 57687029,
+ "longestRoundTripNano": 187121810,
+ "averageApexExecutionNano": 61291003,
+ "shortestApexExecutionNano": 8978611,
+ "longestApexExecutionNano": 116244832
+ },
+ {
+ "batchNumber": 7400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135640826,
+ "shortestRoundTripNano": 64894275,
+ "longestRoundTripNano": 169545279,
+ "averageApexExecutionNano": 59142249,
+ "shortestApexExecutionNano": 8889350,
+ "longestApexExecutionNano": 111641570
+ },
+ {
+ "batchNumber": 7401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143268827,
+ "shortestRoundTripNano": 61456959,
+ "longestRoundTripNano": 170480402,
+ "averageApexExecutionNano": 51427585,
+ "shortestApexExecutionNano": 7185752,
+ "longestApexExecutionNano": 105880483
+ },
+ {
+ "batchNumber": 7402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133037976,
+ "shortestRoundTripNano": 60918421,
+ "longestRoundTripNano": 159644099,
+ "averageApexExecutionNano": 60873600,
+ "shortestApexExecutionNano": 6869973,
+ "longestApexExecutionNano": 110668561
+ },
+ {
+ "batchNumber": 7403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152621708,
+ "shortestRoundTripNano": 72775268,
+ "longestRoundTripNano": 191610984,
+ "averageApexExecutionNano": 40933080,
+ "shortestApexExecutionNano": 9691145,
+ "longestApexExecutionNano": 112114831
+ },
+ {
+ "batchNumber": 7404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140500140,
+ "shortestRoundTripNano": 71594763,
+ "longestRoundTripNano": 169122698,
+ "averageApexExecutionNano": 49381703,
+ "shortestApexExecutionNano": 7405316,
+ "longestApexExecutionNano": 104925263
+ },
+ {
+ "batchNumber": 7405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168038659,
+ "shortestRoundTripNano": 57041753,
+ "longestRoundTripNano": 206067403,
+ "averageApexExecutionNano": 69139010,
+ "shortestApexExecutionNano": 13261737,
+ "longestApexExecutionNano": 147423931
+ },
+ {
+ "batchNumber": 7406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129923159,
+ "shortestRoundTripNano": 42144394,
+ "longestRoundTripNano": 157882685,
+ "averageApexExecutionNano": 43248799,
+ "shortestApexExecutionNano": 8890919,
+ "longestApexExecutionNano": 103165105
+ },
+ {
+ "batchNumber": 7407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142145624,
+ "shortestRoundTripNano": 53340311,
+ "longestRoundTripNano": 198398710,
+ "averageApexExecutionNano": 51054850,
+ "shortestApexExecutionNano": 7256390,
+ "longestApexExecutionNano": 97078359
+ },
+ {
+ "batchNumber": 7408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145475959,
+ "shortestRoundTripNano": 68107954,
+ "longestRoundTripNano": 172885419,
+ "averageApexExecutionNano": 57400377,
+ "shortestApexExecutionNano": 6263755,
+ "longestApexExecutionNano": 112950419
+ },
+ {
+ "batchNumber": 7409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151026577,
+ "shortestRoundTripNano": 42851611,
+ "longestRoundTripNano": 180983601,
+ "averageApexExecutionNano": 47844530,
+ "shortestApexExecutionNano": 5031721,
+ "longestApexExecutionNano": 127471700
+ },
+ {
+ "batchNumber": 7410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150313267,
+ "shortestRoundTripNano": 67845668,
+ "longestRoundTripNano": 178904219,
+ "averageApexExecutionNano": 56545461,
+ "shortestApexExecutionNano": 5768993,
+ "longestApexExecutionNano": 115865211
+ },
+ {
+ "batchNumber": 7411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37580",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146088372,
+ "shortestRoundTripNano": 44319719,
+ "longestRoundTripNano": 172367348,
+ "averageApexExecutionNano": 59520650,
+ "shortestApexExecutionNano": 8555929,
+ "longestApexExecutionNano": 131626900
+ },
+ {
+ "batchNumber": 7412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149959600,
+ "shortestRoundTripNano": 52565880,
+ "longestRoundTripNano": 180441235,
+ "averageApexExecutionNano": 60065143,
+ "shortestApexExecutionNano": 7692253,
+ "longestApexExecutionNano": 136566671
+ },
+ {
+ "batchNumber": 7413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146617615,
+ "shortestRoundTripNano": 82600387,
+ "longestRoundTripNano": 173664657,
+ "averageApexExecutionNano": 56641200,
+ "shortestApexExecutionNano": 5979256,
+ "longestApexExecutionNano": 112274571
+ },
+ {
+ "batchNumber": 7414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142008130,
+ "shortestRoundTripNano": 76370638,
+ "longestRoundTripNano": 167428357,
+ "averageApexExecutionNano": 69273124,
+ "shortestApexExecutionNano": 7685056,
+ "longestApexExecutionNano": 125917818
+ },
+ {
+ "batchNumber": 7415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143149467,
+ "shortestRoundTripNano": 64023343,
+ "longestRoundTripNano": 182297992,
+ "averageApexExecutionNano": 67539845,
+ "shortestApexExecutionNano": 11765355,
+ "longestApexExecutionNano": 124625217
+ },
+ {
+ "batchNumber": 7416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144149082,
+ "shortestRoundTripNano": 38987942,
+ "longestRoundTripNano": 173594695,
+ "averageApexExecutionNano": 63253018,
+ "shortestApexExecutionNano": 11810161,
+ "longestApexExecutionNano": 131073106
+ },
+ {
+ "batchNumber": 7417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136907740,
+ "shortestRoundTripNano": 61521980,
+ "longestRoundTripNano": 166247183,
+ "averageApexExecutionNano": 58148213,
+ "shortestApexExecutionNano": 8522073,
+ "longestApexExecutionNano": 118066753
+ },
+ {
+ "batchNumber": 7418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152341124,
+ "shortestRoundTripNano": 71555682,
+ "longestRoundTripNano": 180185359,
+ "averageApexExecutionNano": 46466780,
+ "shortestApexExecutionNano": 6848137,
+ "longestApexExecutionNano": 122933460
+ },
+ {
+ "batchNumber": 7419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37576",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128902917,
+ "shortestRoundTripNano": 57019078,
+ "longestRoundTripNano": 158847963,
+ "averageApexExecutionNano": 49729913,
+ "shortestApexExecutionNano": 6999874,
+ "longestApexExecutionNano": 96076415
+ },
+ {
+ "batchNumber": 7420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37586",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151233268,
+ "shortestRoundTripNano": 104983276,
+ "longestRoundTripNano": 180299812,
+ "averageApexExecutionNano": 77178245,
+ "shortestApexExecutionNano": 20975606,
+ "longestApexExecutionNano": 138245562
+ },
+ {
+ "batchNumber": 7421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135631897,
+ "shortestRoundTripNano": 56384702,
+ "longestRoundTripNano": 167023233,
+ "averageApexExecutionNano": 56884259,
+ "shortestApexExecutionNano": 8786307,
+ "longestApexExecutionNano": 116886160
+ },
+ {
+ "batchNumber": 7422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139371274,
+ "shortestRoundTripNano": 66534494,
+ "longestRoundTripNano": 168592605,
+ "averageApexExecutionNano": 65259263,
+ "shortestApexExecutionNano": 16149852,
+ "longestApexExecutionNano": 109915714
+ },
+ {
+ "batchNumber": 7423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154917147,
+ "shortestRoundTripNano": 87867749,
+ "longestRoundTripNano": 182214049,
+ "averageApexExecutionNano": 72208709,
+ "shortestApexExecutionNano": 29906863,
+ "longestApexExecutionNano": 123924540
+ },
+ {
+ "batchNumber": 7424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134391997,
+ "shortestRoundTripNano": 67638002,
+ "longestRoundTripNano": 160734980,
+ "averageApexExecutionNano": 41284961,
+ "shortestApexExecutionNano": 6023169,
+ "longestApexExecutionNano": 106041787
+ },
+ {
+ "batchNumber": 7425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128366480,
+ "shortestRoundTripNano": 60664938,
+ "longestRoundTripNano": 153234109,
+ "averageApexExecutionNano": 57772856,
+ "shortestApexExecutionNano": 8105705,
+ "longestApexExecutionNano": 108037750
+ },
+ {
+ "batchNumber": 7426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155340017,
+ "shortestRoundTripNano": 65023606,
+ "longestRoundTripNano": 181536952,
+ "averageApexExecutionNano": 64091129,
+ "shortestApexExecutionNano": 14066681,
+ "longestApexExecutionNano": 139490299
+ },
+ {
+ "batchNumber": 7427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37584",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139817375,
+ "shortestRoundTripNano": 67304914,
+ "longestRoundTripNano": 171346686,
+ "averageApexExecutionNano": 63860964,
+ "shortestApexExecutionNano": 11707906,
+ "longestApexExecutionNano": 116118698
+ },
+ {
+ "batchNumber": 7428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142949259,
+ "shortestRoundTripNano": 44932139,
+ "longestRoundTripNano": 168166906,
+ "averageApexExecutionNano": 63276529,
+ "shortestApexExecutionNano": 5713780,
+ "longestApexExecutionNano": 109007999
+ },
+ {
+ "batchNumber": 7429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151317161,
+ "shortestRoundTripNano": 92805496,
+ "longestRoundTripNano": 178743292,
+ "averageApexExecutionNano": 53133922,
+ "shortestApexExecutionNano": 8489400,
+ "longestApexExecutionNano": 131465088
+ },
+ {
+ "batchNumber": 7430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122501544,
+ "shortestRoundTripNano": 55370162,
+ "longestRoundTripNano": 147911739,
+ "averageApexExecutionNano": 55732959,
+ "shortestApexExecutionNano": 8698885,
+ "longestApexExecutionNano": 110268064
+ },
+ {
+ "batchNumber": 7431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142619572,
+ "shortestRoundTripNano": 74480450,
+ "longestRoundTripNano": 170124403,
+ "averageApexExecutionNano": 57579886,
+ "shortestApexExecutionNano": 9621106,
+ "longestApexExecutionNano": 113297095
+ },
+ {
+ "batchNumber": 7432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156355769,
+ "shortestRoundTripNano": 67566279,
+ "longestRoundTripNano": 189198353,
+ "averageApexExecutionNano": 80039247,
+ "shortestApexExecutionNano": 20333044,
+ "longestApexExecutionNano": 141063463
+ },
+ {
+ "batchNumber": 7433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122904106,
+ "shortestRoundTripNano": 68269967,
+ "longestRoundTripNano": 154706500,
+ "averageApexExecutionNano": 50751919,
+ "shortestApexExecutionNano": 5534508,
+ "longestApexExecutionNano": 121552872
+ },
+ {
+ "batchNumber": 7434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141744205,
+ "shortestRoundTripNano": 57905361,
+ "longestRoundTripNano": 173700504,
+ "averageApexExecutionNano": 50406655,
+ "shortestApexExecutionNano": 9764135,
+ "longestApexExecutionNano": 122841660
+ },
+ {
+ "batchNumber": 7435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37588",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145443767,
+ "shortestRoundTripNano": 59035362,
+ "longestRoundTripNano": 183531220,
+ "averageApexExecutionNano": 62147074,
+ "shortestApexExecutionNano": 11287789,
+ "longestApexExecutionNano": 129864785
+ },
+ {
+ "batchNumber": 7436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132889797,
+ "shortestRoundTripNano": 65790950,
+ "longestRoundTripNano": 161040770,
+ "averageApexExecutionNano": 60447791,
+ "shortestApexExecutionNano": 7069475,
+ "longestApexExecutionNano": 119174636
+ },
+ {
+ "batchNumber": 7437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159242060,
+ "shortestRoundTripNano": 66441721,
+ "longestRoundTripNano": 184516137,
+ "averageApexExecutionNano": 54264863,
+ "shortestApexExecutionNano": 12075755,
+ "longestApexExecutionNano": 131902261
+ },
+ {
+ "batchNumber": 7438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151666134,
+ "shortestRoundTripNano": 80209120,
+ "longestRoundTripNano": 180721202,
+ "averageApexExecutionNano": 51086015,
+ "shortestApexExecutionNano": 9819679,
+ "longestApexExecutionNano": 119083884
+ },
+ {
+ "batchNumber": 7439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131454081,
+ "shortestRoundTripNano": 25785646,
+ "longestRoundTripNano": 153686332,
+ "averageApexExecutionNano": 47997146,
+ "shortestApexExecutionNano": 6364944,
+ "longestApexExecutionNano": 105829795
+ },
+ {
+ "batchNumber": 7440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141389451,
+ "shortestRoundTripNano": 55652424,
+ "longestRoundTripNano": 178347780,
+ "averageApexExecutionNano": 49796311,
+ "shortestApexExecutionNano": 7190933,
+ "longestApexExecutionNano": 117814325
+ },
+ {
+ "batchNumber": 7441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37592",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146967893,
+ "shortestRoundTripNano": 67232374,
+ "longestRoundTripNano": 170754141,
+ "averageApexExecutionNano": 66296347,
+ "shortestApexExecutionNano": 6083166,
+ "longestApexExecutionNano": 121541581
+ },
+ {
+ "batchNumber": 7442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128751919,
+ "shortestRoundTripNano": 60336595,
+ "longestRoundTripNano": 156180206,
+ "averageApexExecutionNano": 48257171,
+ "shortestApexExecutionNano": 6783714,
+ "longestApexExecutionNano": 110730997
+ },
+ {
+ "batchNumber": 7443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142714417,
+ "shortestRoundTripNano": 47315650,
+ "longestRoundTripNano": 171809233,
+ "averageApexExecutionNano": 39508835,
+ "shortestApexExecutionNano": 5658406,
+ "longestApexExecutionNano": 112665945
+ },
+ {
+ "batchNumber": 7444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133290241,
+ "shortestRoundTripNano": 85421527,
+ "longestRoundTripNano": 155098148,
+ "averageApexExecutionNano": 57744503,
+ "shortestApexExecutionNano": 7300775,
+ "longestApexExecutionNano": 105211077
+ },
+ {
+ "batchNumber": 7445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124399730,
+ "shortestRoundTripNano": 54793438,
+ "longestRoundTripNano": 154441625,
+ "averageApexExecutionNano": 63063444,
+ "shortestApexExecutionNano": 7290685,
+ "longestApexExecutionNano": 113036802
+ },
+ {
+ "batchNumber": 7446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37594",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176263701,
+ "shortestRoundTripNano": 64204211,
+ "longestRoundTripNano": 206951357,
+ "averageApexExecutionNano": 52187566,
+ "shortestApexExecutionNano": 8173863,
+ "longestApexExecutionNano": 136552978
+ },
+ {
+ "batchNumber": 7447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127160659,
+ "shortestRoundTripNano": 55680253,
+ "longestRoundTripNano": 152283266,
+ "averageApexExecutionNano": 61481634,
+ "shortestApexExecutionNano": 8414256,
+ "longestApexExecutionNano": 114319548
+ },
+ {
+ "batchNumber": 7448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139516692,
+ "shortestRoundTripNano": 65278315,
+ "longestRoundTripNano": 162399106,
+ "averageApexExecutionNano": 40169525,
+ "shortestApexExecutionNano": 6435015,
+ "longestApexExecutionNano": 104356974
+ },
+ {
+ "batchNumber": 7449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149349680,
+ "shortestRoundTripNano": 71295772,
+ "longestRoundTripNano": 182579022,
+ "averageApexExecutionNano": 69324124,
+ "shortestApexExecutionNano": 8791946,
+ "longestApexExecutionNano": 126421161
+ },
+ {
+ "batchNumber": 7450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144973012,
+ "shortestRoundTripNano": 59510454,
+ "longestRoundTripNano": 172554936,
+ "averageApexExecutionNano": 58418376,
+ "shortestApexExecutionNano": 12625525,
+ "longestApexExecutionNano": 107842468
+ },
+ {
+ "batchNumber": 7451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142313482,
+ "shortestRoundTripNano": 74286911,
+ "longestRoundTripNano": 175644513,
+ "averageApexExecutionNano": 60507939,
+ "shortestApexExecutionNano": 10575476,
+ "longestApexExecutionNano": 121037709
+ },
+ {
+ "batchNumber": 7452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126976773,
+ "shortestRoundTripNano": 41204311,
+ "longestRoundTripNano": 156379177,
+ "averageApexExecutionNano": 59294305,
+ "shortestApexExecutionNano": 7036080,
+ "longestApexExecutionNano": 116135330
+ },
+ {
+ "batchNumber": 7453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178636894,
+ "shortestRoundTripNano": 60993571,
+ "longestRoundTripNano": 220766621,
+ "averageApexExecutionNano": 73058584,
+ "shortestApexExecutionNano": 17207718,
+ "longestApexExecutionNano": 152603855
+ },
+ {
+ "batchNumber": 7454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157503164,
+ "shortestRoundTripNano": 81033580,
+ "longestRoundTripNano": 186787248,
+ "averageApexExecutionNano": 66792004,
+ "shortestApexExecutionNano": 8615529,
+ "longestApexExecutionNano": 130705497
+ },
+ {
+ "batchNumber": 7455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167460465,
+ "shortestRoundTripNano": 63439958,
+ "longestRoundTripNano": 205247637,
+ "averageApexExecutionNano": 70852039,
+ "shortestApexExecutionNano": 6302160,
+ "longestApexExecutionNano": 153348210
+ },
+ {
+ "batchNumber": 7456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138942594,
+ "shortestRoundTripNano": 72778694,
+ "longestRoundTripNano": 168644132,
+ "averageApexExecutionNano": 60508296,
+ "shortestApexExecutionNano": 5224337,
+ "longestApexExecutionNano": 127552602
+ },
+ {
+ "batchNumber": 7457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127394039,
+ "shortestRoundTripNano": 56936736,
+ "longestRoundTripNano": 169003330,
+ "averageApexExecutionNano": 55578170,
+ "shortestApexExecutionNano": 6368455,
+ "longestApexExecutionNano": 122027939
+ },
+ {
+ "batchNumber": 7458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159186767,
+ "shortestRoundTripNano": 57128533,
+ "longestRoundTripNano": 193090358,
+ "averageApexExecutionNano": 45282944,
+ "shortestApexExecutionNano": 7153199,
+ "longestApexExecutionNano": 121046650
+ },
+ {
+ "batchNumber": 7459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159795163,
+ "shortestRoundTripNano": 97469706,
+ "longestRoundTripNano": 179156229,
+ "averageApexExecutionNano": 68805137,
+ "shortestApexExecutionNano": 6755069,
+ "longestApexExecutionNano": 125109807
+ },
+ {
+ "batchNumber": 7460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141162291,
+ "shortestRoundTripNano": 60627887,
+ "longestRoundTripNano": 169016893,
+ "averageApexExecutionNano": 58093377,
+ "shortestApexExecutionNano": 9640671,
+ "longestApexExecutionNano": 116295082
+ },
+ {
+ "batchNumber": 7461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37600",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140922009,
+ "shortestRoundTripNano": 45843467,
+ "longestRoundTripNano": 176376269,
+ "averageApexExecutionNano": 50803306,
+ "shortestApexExecutionNano": 7533331,
+ "longestApexExecutionNano": 121422179
+ },
+ {
+ "batchNumber": 7462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37596",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192827623,
+ "shortestRoundTripNano": 52062382,
+ "longestRoundTripNano": 235934892,
+ "averageApexExecutionNano": 105805634,
+ "shortestApexExecutionNano": 9646697,
+ "longestApexExecutionNano": 197981434
+ },
+ {
+ "batchNumber": 7463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132562058,
+ "shortestRoundTripNano": 64763572,
+ "longestRoundTripNano": 157890098,
+ "averageApexExecutionNano": 57681927,
+ "shortestApexExecutionNano": 8846889,
+ "longestApexExecutionNano": 106782333
+ },
+ {
+ "batchNumber": 7464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154603953,
+ "shortestRoundTripNano": 61730237,
+ "longestRoundTripNano": 187575607,
+ "averageApexExecutionNano": 58685414,
+ "shortestApexExecutionNano": 6575868,
+ "longestApexExecutionNano": 141055617
+ },
+ {
+ "batchNumber": 7465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160021974,
+ "shortestRoundTripNano": 78576265,
+ "longestRoundTripNano": 186595400,
+ "averageApexExecutionNano": 65422253,
+ "shortestApexExecutionNano": 9510506,
+ "longestApexExecutionNano": 128038614
+ },
+ {
+ "batchNumber": 7466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156165797,
+ "shortestRoundTripNano": 49198097,
+ "longestRoundTripNano": 199513410,
+ "averageApexExecutionNano": 66043109,
+ "shortestApexExecutionNano": 6461009,
+ "longestApexExecutionNano": 140547882
+ },
+ {
+ "batchNumber": 7467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168177930,
+ "shortestRoundTripNano": 48253323,
+ "longestRoundTripNano": 201491617,
+ "averageApexExecutionNano": 72689998,
+ "shortestApexExecutionNano": 5627217,
+ "longestApexExecutionNano": 150140107
+ },
+ {
+ "batchNumber": 7468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37604",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130271449,
+ "shortestRoundTripNano": 53320401,
+ "longestRoundTripNano": 155465872,
+ "averageApexExecutionNano": 63148950,
+ "shortestApexExecutionNano": 11649610,
+ "longestApexExecutionNano": 108026267
+ },
+ {
+ "batchNumber": 7469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178226659,
+ "shortestRoundTripNano": 50344606,
+ "longestRoundTripNano": 210473997,
+ "averageApexExecutionNano": 71908481,
+ "shortestApexExecutionNano": 7586175,
+ "longestApexExecutionNano": 152935893
+ },
+ {
+ "batchNumber": 7470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144731530,
+ "shortestRoundTripNano": 76411121,
+ "longestRoundTripNano": 180770481,
+ "averageApexExecutionNano": 65067925,
+ "shortestApexExecutionNano": 8371427,
+ "longestApexExecutionNano": 142909761
+ },
+ {
+ "batchNumber": 7471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152208143,
+ "shortestRoundTripNano": 60582593,
+ "longestRoundTripNano": 177269052,
+ "averageApexExecutionNano": 59370407,
+ "shortestApexExecutionNano": 9238589,
+ "longestApexExecutionNano": 120417358
+ },
+ {
+ "batchNumber": 7472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37602",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 209097566,
+ "shortestRoundTripNano": 90409533,
+ "longestRoundTripNano": 236750225,
+ "averageApexExecutionNano": 95459899,
+ "shortestApexExecutionNano": 14786652,
+ "longestApexExecutionNano": 182578272
+ },
+ {
+ "batchNumber": 7473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144271646,
+ "shortestRoundTripNano": 69765215,
+ "longestRoundTripNano": 172597763,
+ "averageApexExecutionNano": 55012907,
+ "shortestApexExecutionNano": 10341122,
+ "longestApexExecutionNano": 125371617
+ },
+ {
+ "batchNumber": 7474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137369832,
+ "shortestRoundTripNano": 81297981,
+ "longestRoundTripNano": 169151856,
+ "averageApexExecutionNano": 60224487,
+ "shortestApexExecutionNano": 7231553,
+ "longestApexExecutionNano": 122010850
+ },
+ {
+ "batchNumber": 7475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135615304,
+ "shortestRoundTripNano": 46071399,
+ "longestRoundTripNano": 164745761,
+ "averageApexExecutionNano": 49214633,
+ "shortestApexExecutionNano": 7128362,
+ "longestApexExecutionNano": 114133695
+ },
+ {
+ "batchNumber": 7476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139912118,
+ "shortestRoundTripNano": 49617147,
+ "longestRoundTripNano": 161968089,
+ "averageApexExecutionNano": 58035405,
+ "shortestApexExecutionNano": 6317581,
+ "longestApexExecutionNano": 122246661
+ },
+ {
+ "batchNumber": 7477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37606",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138748446,
+ "shortestRoundTripNano": 43979649,
+ "longestRoundTripNano": 167593573,
+ "averageApexExecutionNano": 61225652,
+ "shortestApexExecutionNano": 6549530,
+ "longestApexExecutionNano": 121936965
+ },
+ {
+ "batchNumber": 7478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140470138,
+ "shortestRoundTripNano": 55159074,
+ "longestRoundTripNano": 182094763,
+ "averageApexExecutionNano": 63332831,
+ "shortestApexExecutionNano": 6244559,
+ "longestApexExecutionNano": 136307504
+ },
+ {
+ "batchNumber": 7479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157741885,
+ "shortestRoundTripNano": 79700290,
+ "longestRoundTripNano": 188050271,
+ "averageApexExecutionNano": 70176714,
+ "shortestApexExecutionNano": 10351720,
+ "longestApexExecutionNano": 151047850
+ },
+ {
+ "batchNumber": 7480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170251689,
+ "shortestRoundTripNano": 67635100,
+ "longestRoundTripNano": 201451486,
+ "averageApexExecutionNano": 74474082,
+ "shortestApexExecutionNano": 14837863,
+ "longestApexExecutionNano": 131986496
+ },
+ {
+ "batchNumber": 7481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147256455,
+ "shortestRoundTripNano": 86438621,
+ "longestRoundTripNano": 169651935,
+ "averageApexExecutionNano": 68972874,
+ "shortestApexExecutionNano": 7085246,
+ "longestApexExecutionNano": 122225159
+ },
+ {
+ "batchNumber": 7482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138116962,
+ "shortestRoundTripNano": 64716039,
+ "longestRoundTripNano": 169368964,
+ "averageApexExecutionNano": 59851665,
+ "shortestApexExecutionNano": 6411242,
+ "longestApexExecutionNano": 123813891
+ },
+ {
+ "batchNumber": 7483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37610",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158798296,
+ "shortestRoundTripNano": 90426215,
+ "longestRoundTripNano": 202919386,
+ "averageApexExecutionNano": 49558099,
+ "shortestApexExecutionNano": 11457328,
+ "longestApexExecutionNano": 108889752
+ },
+ {
+ "batchNumber": 7484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37610",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136858201,
+ "shortestRoundTripNano": 60095880,
+ "longestRoundTripNano": 166825409,
+ "averageApexExecutionNano": 56418659,
+ "shortestApexExecutionNano": 7840516,
+ "longestApexExecutionNano": 126713112
+ },
+ {
+ "batchNumber": 7485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135640996,
+ "shortestRoundTripNano": 58410135,
+ "longestRoundTripNano": 174247692,
+ "averageApexExecutionNano": 59518922,
+ "shortestApexExecutionNano": 6674076,
+ "longestApexExecutionNano": 133230377
+ },
+ {
+ "batchNumber": 7486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151755882,
+ "shortestRoundTripNano": 62409377,
+ "longestRoundTripNano": 179903444,
+ "averageApexExecutionNano": 61610082,
+ "shortestApexExecutionNano": 8154995,
+ "longestApexExecutionNano": 121518753
+ },
+ {
+ "batchNumber": 7487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157141866,
+ "shortestRoundTripNano": 81407044,
+ "longestRoundTripNano": 182088710,
+ "averageApexExecutionNano": 76488419,
+ "shortestApexExecutionNano": 7099783,
+ "longestApexExecutionNano": 131615576
+ },
+ {
+ "batchNumber": 7488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155486324,
+ "shortestRoundTripNano": 56627564,
+ "longestRoundTripNano": 192154703,
+ "averageApexExecutionNano": 58837622,
+ "shortestApexExecutionNano": 7945575,
+ "longestApexExecutionNano": 153950609
+ },
+ {
+ "batchNumber": 7489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159264872,
+ "shortestRoundTripNano": 49675046,
+ "longestRoundTripNano": 195253056,
+ "averageApexExecutionNano": 72366748,
+ "shortestApexExecutionNano": 7451619,
+ "longestApexExecutionNano": 155403385
+ },
+ {
+ "batchNumber": 7490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136770561,
+ "shortestRoundTripNano": 56413928,
+ "longestRoundTripNano": 178472404,
+ "averageApexExecutionNano": 44798101,
+ "shortestApexExecutionNano": 5121029,
+ "longestApexExecutionNano": 140008188
+ },
+ {
+ "batchNumber": 7491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137870359,
+ "shortestRoundTripNano": 53405295,
+ "longestRoundTripNano": 166657120,
+ "averageApexExecutionNano": 51506626,
+ "shortestApexExecutionNano": 8886216,
+ "longestApexExecutionNano": 123682722
+ },
+ {
+ "batchNumber": 7492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138958159,
+ "shortestRoundTripNano": 57512700,
+ "longestRoundTripNano": 172234338,
+ "averageApexExecutionNano": 54622429,
+ "shortestApexExecutionNano": 6946722,
+ "longestApexExecutionNano": 109770840
+ },
+ {
+ "batchNumber": 7493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37608",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157045906,
+ "shortestRoundTripNano": 45324120,
+ "longestRoundTripNano": 186699020,
+ "averageApexExecutionNano": 85206731,
+ "shortestApexExecutionNano": 8593727,
+ "longestApexExecutionNano": 152779334
+ },
+ {
+ "batchNumber": 7494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163106930,
+ "shortestRoundTripNano": 80851049,
+ "longestRoundTripNano": 189306398,
+ "averageApexExecutionNano": 76668823,
+ "shortestApexExecutionNano": 9185066,
+ "longestApexExecutionNano": 142407016
+ },
+ {
+ "batchNumber": 7495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148530441,
+ "shortestRoundTripNano": 64298177,
+ "longestRoundTripNano": 178010457,
+ "averageApexExecutionNano": 63826403,
+ "shortestApexExecutionNano": 7214868,
+ "longestApexExecutionNano": 127729362
+ },
+ {
+ "batchNumber": 7496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166468840,
+ "shortestRoundTripNano": 68353532,
+ "longestRoundTripNano": 190717340,
+ "averageApexExecutionNano": 74888708,
+ "shortestApexExecutionNano": 7378618,
+ "longestApexExecutionNano": 139882315
+ },
+ {
+ "batchNumber": 7497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138174922,
+ "shortestRoundTripNano": 37236866,
+ "longestRoundTripNano": 168677030,
+ "averageApexExecutionNano": 47706313,
+ "shortestApexExecutionNano": 7257577,
+ "longestApexExecutionNano": 125959823
+ },
+ {
+ "batchNumber": 7498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145633328,
+ "shortestRoundTripNano": 82875806,
+ "longestRoundTripNano": 173128721,
+ "averageApexExecutionNano": 72942549,
+ "shortestApexExecutionNano": 7320474,
+ "longestApexExecutionNano": 129459405
+ },
+ {
+ "batchNumber": 7499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37616",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154869426,
+ "shortestRoundTripNano": 72745633,
+ "longestRoundTripNano": 182029951,
+ "averageApexExecutionNano": 58436194,
+ "shortestApexExecutionNano": 7040486,
+ "longestApexExecutionNano": 130021895
+ },
+ {
+ "batchNumber": 7500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172575059,
+ "shortestRoundTripNano": 82199762,
+ "longestRoundTripNano": 201566921,
+ "averageApexExecutionNano": 76079814,
+ "shortestApexExecutionNano": 10497492,
+ "longestApexExecutionNano": 147364495
+ },
+ {
+ "batchNumber": 7501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153700261,
+ "shortestRoundTripNano": 66604897,
+ "longestRoundTripNano": 183667688,
+ "averageApexExecutionNano": 56729002,
+ "shortestApexExecutionNano": 7783311,
+ "longestApexExecutionNano": 122734537
+ },
+ {
+ "batchNumber": 7502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145391081,
+ "shortestRoundTripNano": 70274175,
+ "longestRoundTripNano": 172568018,
+ "averageApexExecutionNano": 77642950,
+ "shortestApexExecutionNano": 13834350,
+ "longestApexExecutionNano": 125711379
+ },
+ {
+ "batchNumber": 7503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156312418,
+ "shortestRoundTripNano": 54401926,
+ "longestRoundTripNano": 190798581,
+ "averageApexExecutionNano": 67331874,
+ "shortestApexExecutionNano": 7291829,
+ "longestApexExecutionNano": 144821406
+ },
+ {
+ "batchNumber": 7504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144130505,
+ "shortestRoundTripNano": 67323480,
+ "longestRoundTripNano": 167959000,
+ "averageApexExecutionNano": 58247833,
+ "shortestApexExecutionNano": 8529482,
+ "longestApexExecutionNano": 126320514
+ },
+ {
+ "batchNumber": 7505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37614",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158092211,
+ "shortestRoundTripNano": 57090233,
+ "longestRoundTripNano": 191901660,
+ "averageApexExecutionNano": 62792266,
+ "shortestApexExecutionNano": 6389934,
+ "longestApexExecutionNano": 151797400
+ },
+ {
+ "batchNumber": 7506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179080509,
+ "shortestRoundTripNano": 74090801,
+ "longestRoundTripNano": 207048011,
+ "averageApexExecutionNano": 86474583,
+ "shortestApexExecutionNano": 7588684,
+ "longestApexExecutionNano": 162563968
+ },
+ {
+ "batchNumber": 7507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156110234,
+ "shortestRoundTripNano": 53664628,
+ "longestRoundTripNano": 202939104,
+ "averageApexExecutionNano": 59149310,
+ "shortestApexExecutionNano": 5510031,
+ "longestApexExecutionNano": 125907451
+ },
+ {
+ "batchNumber": 7508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165399123,
+ "shortestRoundTripNano": 74102548,
+ "longestRoundTripNano": 194680244,
+ "averageApexExecutionNano": 50259114,
+ "shortestApexExecutionNano": 7124250,
+ "longestApexExecutionNano": 114709729
+ },
+ {
+ "batchNumber": 7509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138305462,
+ "shortestRoundTripNano": 37999994,
+ "longestRoundTripNano": 170935912,
+ "averageApexExecutionNano": 56619152,
+ "shortestApexExecutionNano": 7242341,
+ "longestApexExecutionNano": 114501564
+ },
+ {
+ "batchNumber": 7510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150278549,
+ "shortestRoundTripNano": 73204649,
+ "longestRoundTripNano": 178360727,
+ "averageApexExecutionNano": 63418586,
+ "shortestApexExecutionNano": 7911418,
+ "longestApexExecutionNano": 126737313
+ },
+ {
+ "batchNumber": 7511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154810478,
+ "shortestRoundTripNano": 57670097,
+ "longestRoundTripNano": 192840225,
+ "averageApexExecutionNano": 73996516,
+ "shortestApexExecutionNano": 25089949,
+ "longestApexExecutionNano": 131592314
+ },
+ {
+ "batchNumber": 7512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147370224,
+ "shortestRoundTripNano": 78272973,
+ "longestRoundTripNano": 176358797,
+ "averageApexExecutionNano": 54552920,
+ "shortestApexExecutionNano": 8441042,
+ "longestApexExecutionNano": 116632977
+ },
+ {
+ "batchNumber": 7513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37618",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 226193740,
+ "shortestRoundTripNano": 65230008,
+ "longestRoundTripNano": 267770811,
+ "averageApexExecutionNano": 115180579,
+ "shortestApexExecutionNano": 8088452,
+ "longestApexExecutionNano": 220437478
+ },
+ {
+ "batchNumber": 7514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165425789,
+ "shortestRoundTripNano": 83669395,
+ "longestRoundTripNano": 206829716,
+ "averageApexExecutionNano": 62745382,
+ "shortestApexExecutionNano": 11956617,
+ "longestApexExecutionNano": 120172229
+ },
+ {
+ "batchNumber": 7515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138519606,
+ "shortestRoundTripNano": 66205476,
+ "longestRoundTripNano": 181777395,
+ "averageApexExecutionNano": 51164682,
+ "shortestApexExecutionNano": 14248454,
+ "longestApexExecutionNano": 103796807
+ },
+ {
+ "batchNumber": 7516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147717116,
+ "shortestRoundTripNano": 73105394,
+ "longestRoundTripNano": 175462667,
+ "averageApexExecutionNano": 67260986,
+ "shortestApexExecutionNano": 7168231,
+ "longestApexExecutionNano": 126690249
+ },
+ {
+ "batchNumber": 7517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133072695,
+ "shortestRoundTripNano": 42162519,
+ "longestRoundTripNano": 173307578,
+ "averageApexExecutionNano": 49885943,
+ "shortestApexExecutionNano": 6488262,
+ "longestApexExecutionNano": 105149896
+ },
+ {
+ "batchNumber": 7518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147112399,
+ "shortestRoundTripNano": 77776462,
+ "longestRoundTripNano": 171448311,
+ "averageApexExecutionNano": 58354388,
+ "shortestApexExecutionNano": 11713065,
+ "longestApexExecutionNano": 108044905
+ },
+ {
+ "batchNumber": 7519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156597079,
+ "shortestRoundTripNano": 60993038,
+ "longestRoundTripNano": 189961887,
+ "averageApexExecutionNano": 54256500,
+ "shortestApexExecutionNano": 6528049,
+ "longestApexExecutionNano": 127341438
+ },
+ {
+ "batchNumber": 7520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151273390,
+ "shortestRoundTripNano": 91295247,
+ "longestRoundTripNano": 180347551,
+ "averageApexExecutionNano": 73746587,
+ "shortestApexExecutionNano": 9694603,
+ "longestApexExecutionNano": 127421455
+ },
+ {
+ "batchNumber": 7521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145539633,
+ "shortestRoundTripNano": 70911297,
+ "longestRoundTripNano": 179522676,
+ "averageApexExecutionNano": 56993966,
+ "shortestApexExecutionNano": 9673714,
+ "longestApexExecutionNano": 119065548
+ },
+ {
+ "batchNumber": 7522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149102552,
+ "shortestRoundTripNano": 58499836,
+ "longestRoundTripNano": 179980379,
+ "averageApexExecutionNano": 62488153,
+ "shortestApexExecutionNano": 9381955,
+ "longestApexExecutionNano": 131398281
+ },
+ {
+ "batchNumber": 7523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165422201,
+ "shortestRoundTripNano": 87638543,
+ "longestRoundTripNano": 194703795,
+ "averageApexExecutionNano": 69263560,
+ "shortestApexExecutionNano": 7500170,
+ "longestApexExecutionNano": 150760091
+ },
+ {
+ "batchNumber": 7524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150864820,
+ "shortestRoundTripNano": 75934034,
+ "longestRoundTripNano": 186916124,
+ "averageApexExecutionNano": 47858495,
+ "shortestApexExecutionNano": 7120565,
+ "longestApexExecutionNano": 119484499
+ },
+ {
+ "batchNumber": 7525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147513416,
+ "shortestRoundTripNano": 56787147,
+ "longestRoundTripNano": 173387723,
+ "averageApexExecutionNano": 63294666,
+ "shortestApexExecutionNano": 9008567,
+ "longestApexExecutionNano": 126803827
+ },
+ {
+ "batchNumber": 7526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126283914,
+ "shortestRoundTripNano": 45422496,
+ "longestRoundTripNano": 146857838,
+ "averageApexExecutionNano": 50179136,
+ "shortestApexExecutionNano": 10325209,
+ "longestApexExecutionNano": 97139834
+ },
+ {
+ "batchNumber": 7527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140479788,
+ "shortestRoundTripNano": 64089776,
+ "longestRoundTripNano": 166056057,
+ "averageApexExecutionNano": 66634438,
+ "shortestApexExecutionNano": 10411558,
+ "longestApexExecutionNano": 107447565
+ },
+ {
+ "batchNumber": 7528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145440595,
+ "shortestRoundTripNano": 74820134,
+ "longestRoundTripNano": 179672721,
+ "averageApexExecutionNano": 74426673,
+ "shortestApexExecutionNano": 13543426,
+ "longestApexExecutionNano": 131794455
+ },
+ {
+ "batchNumber": 7529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172098887,
+ "shortestRoundTripNano": 74555365,
+ "longestRoundTripNano": 199490776,
+ "averageApexExecutionNano": 68001977,
+ "shortestApexExecutionNano": 13212478,
+ "longestApexExecutionNano": 137881563
+ },
+ {
+ "batchNumber": 7530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137895797,
+ "shortestRoundTripNano": 85168680,
+ "longestRoundTripNano": 168923409,
+ "averageApexExecutionNano": 71108581,
+ "shortestApexExecutionNano": 8448903,
+ "longestApexExecutionNano": 131605671
+ },
+ {
+ "batchNumber": 7531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133834074,
+ "shortestRoundTripNano": 60577822,
+ "longestRoundTripNano": 164242482,
+ "averageApexExecutionNano": 60269012,
+ "shortestApexExecutionNano": 14971037,
+ "longestApexExecutionNano": 111079415
+ },
+ {
+ "batchNumber": 7532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129137299,
+ "shortestRoundTripNano": 65196319,
+ "longestRoundTripNano": 164071269,
+ "averageApexExecutionNano": 56130939,
+ "shortestApexExecutionNano": 8334653,
+ "longestApexExecutionNano": 107014731
+ },
+ {
+ "batchNumber": 7533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144360197,
+ "shortestRoundTripNano": 58881435,
+ "longestRoundTripNano": 176256782,
+ "averageApexExecutionNano": 68818252,
+ "shortestApexExecutionNano": 8570408,
+ "longestApexExecutionNano": 132697823
+ },
+ {
+ "batchNumber": 7534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169395013,
+ "shortestRoundTripNano": 88659686,
+ "longestRoundTripNano": 201579944,
+ "averageApexExecutionNano": 72017479,
+ "shortestApexExecutionNano": 16128397,
+ "longestApexExecutionNano": 149040391
+ },
+ {
+ "batchNumber": 7535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136258812,
+ "shortestRoundTripNano": 78278009,
+ "longestRoundTripNano": 160566942,
+ "averageApexExecutionNano": 60902747,
+ "shortestApexExecutionNano": 6684390,
+ "longestApexExecutionNano": 123915327
+ },
+ {
+ "batchNumber": 7536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135335801,
+ "shortestRoundTripNano": 55021169,
+ "longestRoundTripNano": 168573683,
+ "averageApexExecutionNano": 68647222,
+ "shortestApexExecutionNano": 10765337,
+ "longestApexExecutionNano": 126312067
+ },
+ {
+ "batchNumber": 7537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151427667,
+ "shortestRoundTripNano": 69399219,
+ "longestRoundTripNano": 179962944,
+ "averageApexExecutionNano": 47277374,
+ "shortestApexExecutionNano": 6311536,
+ "longestApexExecutionNano": 104485287
+ },
+ {
+ "batchNumber": 7538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127636626,
+ "shortestRoundTripNano": 51732373,
+ "longestRoundTripNano": 154460356,
+ "averageApexExecutionNano": 59744718,
+ "shortestApexExecutionNano": 18044583,
+ "longestApexExecutionNano": 106931596
+ },
+ {
+ "batchNumber": 7539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130562583,
+ "shortestRoundTripNano": 66511184,
+ "longestRoundTripNano": 159777334,
+ "averageApexExecutionNano": 54422850,
+ "shortestApexExecutionNano": 6605730,
+ "longestApexExecutionNano": 109064366
+ },
+ {
+ "batchNumber": 7540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136461327,
+ "shortestRoundTripNano": 57277148,
+ "longestRoundTripNano": 162434473,
+ "averageApexExecutionNano": 52644972,
+ "shortestApexExecutionNano": 7290958,
+ "longestApexExecutionNano": 116471347
+ },
+ {
+ "batchNumber": 7541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145446324,
+ "shortestRoundTripNano": 64774615,
+ "longestRoundTripNano": 173326347,
+ "averageApexExecutionNano": 43962507,
+ "shortestApexExecutionNano": 9043551,
+ "longestApexExecutionNano": 126478929
+ },
+ {
+ "batchNumber": 7542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126911334,
+ "shortestRoundTripNano": 61951799,
+ "longestRoundTripNano": 159204312,
+ "averageApexExecutionNano": 50248383,
+ "shortestApexExecutionNano": 7033846,
+ "longestApexExecutionNano": 117021948
+ },
+ {
+ "batchNumber": 7543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129575376,
+ "shortestRoundTripNano": 33783365,
+ "longestRoundTripNano": 156687488,
+ "averageApexExecutionNano": 38428068,
+ "shortestApexExecutionNano": 7616129,
+ "longestApexExecutionNano": 106352385
+ },
+ {
+ "batchNumber": 7544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122000929,
+ "shortestRoundTripNano": 59255297,
+ "longestRoundTripNano": 153494496,
+ "averageApexExecutionNano": 50534473,
+ "shortestApexExecutionNano": 7508954,
+ "longestApexExecutionNano": 109218613
+ },
+ {
+ "batchNumber": 7545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124785254,
+ "shortestRoundTripNano": 31902310,
+ "longestRoundTripNano": 166711915,
+ "averageApexExecutionNano": 54814165,
+ "shortestApexExecutionNano": 9044425,
+ "longestApexExecutionNano": 116812024
+ },
+ {
+ "batchNumber": 7546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37622",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149770705,
+ "shortestRoundTripNano": 52837238,
+ "longestRoundTripNano": 180090239,
+ "averageApexExecutionNano": 76447302,
+ "shortestApexExecutionNano": 9690894,
+ "longestApexExecutionNano": 137516525
+ },
+ {
+ "batchNumber": 7547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146710671,
+ "shortestRoundTripNano": 72080300,
+ "longestRoundTripNano": 170515634,
+ "averageApexExecutionNano": 63717705,
+ "shortestApexExecutionNano": 9537823,
+ "longestApexExecutionNano": 111818524
+ },
+ {
+ "batchNumber": 7548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138749616,
+ "shortestRoundTripNano": 40235125,
+ "longestRoundTripNano": 164655541,
+ "averageApexExecutionNano": 60000962,
+ "shortestApexExecutionNano": 9682700,
+ "longestApexExecutionNano": 116774881
+ },
+ {
+ "batchNumber": 7549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132640028,
+ "shortestRoundTripNano": 54385620,
+ "longestRoundTripNano": 161870188,
+ "averageApexExecutionNano": 57491493,
+ "shortestApexExecutionNano": 11176378,
+ "longestApexExecutionNano": 122413126
+ },
+ {
+ "batchNumber": 7550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37634",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130361319,
+ "shortestRoundTripNano": 47760742,
+ "longestRoundTripNano": 169675159,
+ "averageApexExecutionNano": 43884419,
+ "shortestApexExecutionNano": 5515352,
+ "longestApexExecutionNano": 133260340
+ },
+ {
+ "batchNumber": 7551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161342129,
+ "shortestRoundTripNano": 65542840,
+ "longestRoundTripNano": 188018352,
+ "averageApexExecutionNano": 77244961,
+ "shortestApexExecutionNano": 10574512,
+ "longestApexExecutionNano": 136113444
+ },
+ {
+ "batchNumber": 7552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130665656,
+ "shortestRoundTripNano": 57655615,
+ "longestRoundTripNano": 161621635,
+ "averageApexExecutionNano": 50288464,
+ "shortestApexExecutionNano": 7282503,
+ "longestApexExecutionNano": 110143962
+ },
+ {
+ "batchNumber": 7553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37636",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132589405,
+ "shortestRoundTripNano": 40232305,
+ "longestRoundTripNano": 167217885,
+ "averageApexExecutionNano": 61701697,
+ "shortestApexExecutionNano": 6815547,
+ "longestApexExecutionNano": 120774070
+ },
+ {
+ "batchNumber": 7554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143671584,
+ "shortestRoundTripNano": 62756082,
+ "longestRoundTripNano": 171798346,
+ "averageApexExecutionNano": 65376454,
+ "shortestApexExecutionNano": 9658008,
+ "longestApexExecutionNano": 128798003
+ },
+ {
+ "batchNumber": 7555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143639034,
+ "shortestRoundTripNano": 80398872,
+ "longestRoundTripNano": 170442438,
+ "averageApexExecutionNano": 71262213,
+ "shortestApexExecutionNano": 9351215,
+ "longestApexExecutionNano": 119823246
+ },
+ {
+ "batchNumber": 7556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133734993,
+ "shortestRoundTripNano": 53077741,
+ "longestRoundTripNano": 162998631,
+ "averageApexExecutionNano": 63237485,
+ "shortestApexExecutionNano": 7210891,
+ "longestApexExecutionNano": 118501694
+ },
+ {
+ "batchNumber": 7557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167996299,
+ "shortestRoundTripNano": 79677568,
+ "longestRoundTripNano": 195606007,
+ "averageApexExecutionNano": 78053314,
+ "shortestApexExecutionNano": 30059930,
+ "longestApexExecutionNano": 139579338
+ },
+ {
+ "batchNumber": 7558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155244407,
+ "shortestRoundTripNano": 65964553,
+ "longestRoundTripNano": 191301933,
+ "averageApexExecutionNano": 58456617,
+ "shortestApexExecutionNano": 10261127,
+ "longestApexExecutionNano": 127855475
+ },
+ {
+ "batchNumber": 7559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147032239,
+ "shortestRoundTripNano": 57334927,
+ "longestRoundTripNano": 173032308,
+ "averageApexExecutionNano": 71488892,
+ "shortestApexExecutionNano": 12334965,
+ "longestApexExecutionNano": 122224203
+ },
+ {
+ "batchNumber": 7560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169566071,
+ "shortestRoundTripNano": 50776696,
+ "longestRoundTripNano": 202309473,
+ "averageApexExecutionNano": 62195119,
+ "shortestApexExecutionNano": 8529390,
+ "longestApexExecutionNano": 148945349
+ },
+ {
+ "batchNumber": 7561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37640",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159347443,
+ "shortestRoundTripNano": 65573109,
+ "longestRoundTripNano": 188020445,
+ "averageApexExecutionNano": 63357133,
+ "shortestApexExecutionNano": 14704712,
+ "longestApexExecutionNano": 128844763
+ },
+ {
+ "batchNumber": 7562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144673082,
+ "shortestRoundTripNano": 55155357,
+ "longestRoundTripNano": 177418582,
+ "averageApexExecutionNano": 58765600,
+ "shortestApexExecutionNano": 9019954,
+ "longestApexExecutionNano": 132497007
+ },
+ {
+ "batchNumber": 7563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162970362,
+ "shortestRoundTripNano": 72825027,
+ "longestRoundTripNano": 188054479,
+ "averageApexExecutionNano": 72739138,
+ "shortestApexExecutionNano": 15156645,
+ "longestApexExecutionNano": 124424901
+ },
+ {
+ "batchNumber": 7564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149814308,
+ "shortestRoundTripNano": 69299588,
+ "longestRoundTripNano": 179687884,
+ "averageApexExecutionNano": 50972640,
+ "shortestApexExecutionNano": 10582485,
+ "longestApexExecutionNano": 119705925
+ },
+ {
+ "batchNumber": 7565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37638",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165557622,
+ "shortestRoundTripNano": 48001914,
+ "longestRoundTripNano": 208502059,
+ "averageApexExecutionNano": 70458549,
+ "shortestApexExecutionNano": 10633446,
+ "longestApexExecutionNano": 142388887
+ },
+ {
+ "batchNumber": 7566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167451293,
+ "shortestRoundTripNano": 86153021,
+ "longestRoundTripNano": 197137274,
+ "averageApexExecutionNano": 70825784,
+ "shortestApexExecutionNano": 6652140,
+ "longestApexExecutionNano": 140246752
+ },
+ {
+ "batchNumber": 7567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159990332,
+ "shortestRoundTripNano": 71126278,
+ "longestRoundTripNano": 190337778,
+ "averageApexExecutionNano": 69676478,
+ "shortestApexExecutionNano": 11176120,
+ "longestApexExecutionNano": 132670584
+ },
+ {
+ "batchNumber": 7568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147559206,
+ "shortestRoundTripNano": 32738601,
+ "longestRoundTripNano": 186534683,
+ "averageApexExecutionNano": 67043457,
+ "shortestApexExecutionNano": 9957611,
+ "longestApexExecutionNano": 137303288
+ },
+ {
+ "batchNumber": 7569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130504359,
+ "shortestRoundTripNano": 58972836,
+ "longestRoundTripNano": 154512650,
+ "averageApexExecutionNano": 52858863,
+ "shortestApexExecutionNano": 5340066,
+ "longestApexExecutionNano": 106841600
+ },
+ {
+ "batchNumber": 7570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138131450,
+ "shortestRoundTripNano": 56086244,
+ "longestRoundTripNano": 169585485,
+ "averageApexExecutionNano": 43234065,
+ "shortestApexExecutionNano": 7090764,
+ "longestApexExecutionNano": 86484094
+ },
+ {
+ "batchNumber": 7571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141585742,
+ "shortestRoundTripNano": 71440058,
+ "longestRoundTripNano": 166705186,
+ "averageApexExecutionNano": 50526526,
+ "shortestApexExecutionNano": 15195387,
+ "longestApexExecutionNano": 107486940
+ },
+ {
+ "batchNumber": 7572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137142967,
+ "shortestRoundTripNano": 35386812,
+ "longestRoundTripNano": 174783696,
+ "averageApexExecutionNano": 61816294,
+ "shortestApexExecutionNano": 8297714,
+ "longestApexExecutionNano": 131629250
+ },
+ {
+ "batchNumber": 7573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37642",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152259143,
+ "shortestRoundTripNano": 51134336,
+ "longestRoundTripNano": 185326887,
+ "averageApexExecutionNano": 65492292,
+ "shortestApexExecutionNano": 6041965,
+ "longestApexExecutionNano": 148860984
+ },
+ {
+ "batchNumber": 7574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142777314,
+ "shortestRoundTripNano": 72228833,
+ "longestRoundTripNano": 174448719,
+ "averageApexExecutionNano": 55654701,
+ "shortestApexExecutionNano": 5752620,
+ "longestApexExecutionNano": 122837485
+ },
+ {
+ "batchNumber": 7575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167022900,
+ "shortestRoundTripNano": 86588710,
+ "longestRoundTripNano": 212724371,
+ "averageApexExecutionNano": 69541543,
+ "shortestApexExecutionNano": 6478950,
+ "longestApexExecutionNano": 123038603
+ },
+ {
+ "batchNumber": 7576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138081534,
+ "shortestRoundTripNano": 57235707,
+ "longestRoundTripNano": 164827685,
+ "averageApexExecutionNano": 53910727,
+ "shortestApexExecutionNano": 6884086,
+ "longestApexExecutionNano": 112430779
+ },
+ {
+ "batchNumber": 7577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145477214,
+ "shortestRoundTripNano": 62687956,
+ "longestRoundTripNano": 171677093,
+ "averageApexExecutionNano": 73706703,
+ "shortestApexExecutionNano": 8696691,
+ "longestApexExecutionNano": 132405551
+ },
+ {
+ "batchNumber": 7578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137648920,
+ "shortestRoundTripNano": 57623888,
+ "longestRoundTripNano": 167728947,
+ "averageApexExecutionNano": 52045219,
+ "shortestApexExecutionNano": 9155498,
+ "longestApexExecutionNano": 116554011
+ },
+ {
+ "batchNumber": 7579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123670321,
+ "shortestRoundTripNano": 73608345,
+ "longestRoundTripNano": 145170606,
+ "averageApexExecutionNano": 53010346,
+ "shortestApexExecutionNano": 8688505,
+ "longestApexExecutionNano": 100912359
+ },
+ {
+ "batchNumber": 7580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140700868,
+ "shortestRoundTripNano": 67402663,
+ "longestRoundTripNano": 170541327,
+ "averageApexExecutionNano": 67392764,
+ "shortestApexExecutionNano": 6991315,
+ "longestApexExecutionNano": 126640033
+ },
+ {
+ "batchNumber": 7581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149506375,
+ "shortestRoundTripNano": 60741439,
+ "longestRoundTripNano": 174690235,
+ "averageApexExecutionNano": 50281418,
+ "shortestApexExecutionNano": 6674685,
+ "longestApexExecutionNano": 99213655
+ },
+ {
+ "batchNumber": 7582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37646",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131411423,
+ "shortestRoundTripNano": 64717679,
+ "longestRoundTripNano": 167676298,
+ "averageApexExecutionNano": 60613461,
+ "shortestApexExecutionNano": 7434991,
+ "longestApexExecutionNano": 117781900
+ },
+ {
+ "batchNumber": 7583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37648",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138853265,
+ "shortestRoundTripNano": 43288376,
+ "longestRoundTripNano": 173278947,
+ "averageApexExecutionNano": 64996252,
+ "shortestApexExecutionNano": 6126995,
+ "longestApexExecutionNano": 130575014
+ },
+ {
+ "batchNumber": 7584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139339661,
+ "shortestRoundTripNano": 49789314,
+ "longestRoundTripNano": 176814063,
+ "averageApexExecutionNano": 57021088,
+ "shortestApexExecutionNano": 7083048,
+ "longestApexExecutionNano": 112847943
+ },
+ {
+ "batchNumber": 7585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37650",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152886592,
+ "shortestRoundTripNano": 43244365,
+ "longestRoundTripNano": 186535095,
+ "averageApexExecutionNano": 68392556,
+ "shortestApexExecutionNano": 8037454,
+ "longestApexExecutionNano": 142944008
+ },
+ {
+ "batchNumber": 7586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148619111,
+ "shortestRoundTripNano": 72305857,
+ "longestRoundTripNano": 177499774,
+ "averageApexExecutionNano": 53111768,
+ "shortestApexExecutionNano": 9080773,
+ "longestApexExecutionNano": 103434774
+ },
+ {
+ "batchNumber": 7587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142750256,
+ "shortestRoundTripNano": 94208603,
+ "longestRoundTripNano": 165676127,
+ "averageApexExecutionNano": 75042112,
+ "shortestApexExecutionNano": 37034699,
+ "longestApexExecutionNano": 121421236
+ },
+ {
+ "batchNumber": 7588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144185994,
+ "shortestRoundTripNano": 65274791,
+ "longestRoundTripNano": 175569095,
+ "averageApexExecutionNano": 52325250,
+ "shortestApexExecutionNano": 7573310,
+ "longestApexExecutionNano": 117860139
+ },
+ {
+ "batchNumber": 7589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161597029,
+ "shortestRoundTripNano": 95002842,
+ "longestRoundTripNano": 188179519,
+ "averageApexExecutionNano": 55974766,
+ "shortestApexExecutionNano": 5716838,
+ "longestApexExecutionNano": 103881756
+ },
+ {
+ "batchNumber": 7590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132391561,
+ "shortestRoundTripNano": 60815394,
+ "longestRoundTripNano": 161424719,
+ "averageApexExecutionNano": 48132662,
+ "shortestApexExecutionNano": 4817762,
+ "longestApexExecutionNano": 100425077
+ },
+ {
+ "batchNumber": 7591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37652",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154936294,
+ "shortestRoundTripNano": 73970334,
+ "longestRoundTripNano": 182727043,
+ "averageApexExecutionNano": 82066400,
+ "shortestApexExecutionNano": 29823067,
+ "longestApexExecutionNano": 131802564
+ },
+ {
+ "batchNumber": 7592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140565027,
+ "shortestRoundTripNano": 52584507,
+ "longestRoundTripNano": 172696213,
+ "averageApexExecutionNano": 55344885,
+ "shortestApexExecutionNano": 8838650,
+ "longestApexExecutionNano": 120039888
+ },
+ {
+ "batchNumber": 7593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150236514,
+ "shortestRoundTripNano": 71404218,
+ "longestRoundTripNano": 181563519,
+ "averageApexExecutionNano": 80031796,
+ "shortestApexExecutionNano": 7602812,
+ "longestApexExecutionNano": 144215584
+ },
+ {
+ "batchNumber": 7594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142333992,
+ "shortestRoundTripNano": 51406347,
+ "longestRoundTripNano": 177032449,
+ "averageApexExecutionNano": 51203250,
+ "shortestApexExecutionNano": 8167778,
+ "longestApexExecutionNano": 131017201
+ },
+ {
+ "batchNumber": 7595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128353627,
+ "shortestRoundTripNano": 58049417,
+ "longestRoundTripNano": 155941468,
+ "averageApexExecutionNano": 58451001,
+ "shortestApexExecutionNano": 11291442,
+ "longestApexExecutionNano": 113105031
+ },
+ {
+ "batchNumber": 7596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149230775,
+ "shortestRoundTripNano": 78600122,
+ "longestRoundTripNano": 178727903,
+ "averageApexExecutionNano": 65960533,
+ "shortestApexExecutionNano": 10060487,
+ "longestApexExecutionNano": 107095511
+ },
+ {
+ "batchNumber": 7597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37654",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178183649,
+ "shortestRoundTripNano": 66332435,
+ "longestRoundTripNano": 210318382,
+ "averageApexExecutionNano": 71245111,
+ "shortestApexExecutionNano": 10400144,
+ "longestApexExecutionNano": 162807024
+ },
+ {
+ "batchNumber": 7598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128903346,
+ "shortestRoundTripNano": 55221982,
+ "longestRoundTripNano": 161070570,
+ "averageApexExecutionNano": 57069883,
+ "shortestApexExecutionNano": 6000781,
+ "longestApexExecutionNano": 106576962
+ },
+ {
+ "batchNumber": 7599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118677421,
+ "shortestRoundTripNano": 56087030,
+ "longestRoundTripNano": 154234638,
+ "averageApexExecutionNano": 47085183,
+ "shortestApexExecutionNano": 7214715,
+ "longestApexExecutionNano": 111120006
+ },
+ {
+ "batchNumber": 7600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158131511,
+ "shortestRoundTripNano": 69288033,
+ "longestRoundTripNano": 187560469,
+ "averageApexExecutionNano": 56520697,
+ "shortestApexExecutionNano": 5718471,
+ "longestApexExecutionNano": 136869923
+ },
+ {
+ "batchNumber": 7601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160427096,
+ "shortestRoundTripNano": 51887416,
+ "longestRoundTripNano": 189721358,
+ "averageApexExecutionNano": 80475537,
+ "shortestApexExecutionNano": 15915384,
+ "longestApexExecutionNano": 147640684
+ },
+ {
+ "batchNumber": 7602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150907420,
+ "shortestRoundTripNano": 33954093,
+ "longestRoundTripNano": 188266682,
+ "averageApexExecutionNano": 62472087,
+ "shortestApexExecutionNano": 9628728,
+ "longestApexExecutionNano": 133905256
+ },
+ {
+ "batchNumber": 7603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136101054,
+ "shortestRoundTripNano": 66898257,
+ "longestRoundTripNano": 160481336,
+ "averageApexExecutionNano": 51001321,
+ "shortestApexExecutionNano": 6736509,
+ "longestApexExecutionNano": 107486618
+ },
+ {
+ "batchNumber": 7604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129064106,
+ "shortestRoundTripNano": 52665165,
+ "longestRoundTripNano": 160734213,
+ "averageApexExecutionNano": 54974574,
+ "shortestApexExecutionNano": 5137592,
+ "longestApexExecutionNano": 115291534
+ },
+ {
+ "batchNumber": 7605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158171467,
+ "shortestRoundTripNano": 43695806,
+ "longestRoundTripNano": 206991174,
+ "averageApexExecutionNano": 77704149,
+ "shortestApexExecutionNano": 8943723,
+ "longestApexExecutionNano": 153709285
+ },
+ {
+ "batchNumber": 7606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153804808,
+ "shortestRoundTripNano": 65564259,
+ "longestRoundTripNano": 181144573,
+ "averageApexExecutionNano": 55402347,
+ "shortestApexExecutionNano": 8121493,
+ "longestApexExecutionNano": 124431624
+ },
+ {
+ "batchNumber": 7607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37658",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168670060,
+ "shortestRoundTripNano": 72237820,
+ "longestRoundTripNano": 222043448,
+ "averageApexExecutionNano": 56242786,
+ "shortestApexExecutionNano": 9285372,
+ "longestApexExecutionNano": 127638661
+ },
+ {
+ "batchNumber": 7608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155597003,
+ "shortestRoundTripNano": 73706743,
+ "longestRoundTripNano": 191364316,
+ "averageApexExecutionNano": 69564649,
+ "shortestApexExecutionNano": 9664017,
+ "longestApexExecutionNano": 134154553
+ },
+ {
+ "batchNumber": 7609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146982424,
+ "shortestRoundTripNano": 54712712,
+ "longestRoundTripNano": 181143076,
+ "averageApexExecutionNano": 61319768,
+ "shortestApexExecutionNano": 7971277,
+ "longestApexExecutionNano": 134727848
+ },
+ {
+ "batchNumber": 7610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146614638,
+ "shortestRoundTripNano": 76464777,
+ "longestRoundTripNano": 169742810,
+ "averageApexExecutionNano": 69381280,
+ "shortestApexExecutionNano": 8323712,
+ "longestApexExecutionNano": 129603743
+ },
+ {
+ "batchNumber": 7611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133290123,
+ "shortestRoundTripNano": 41714960,
+ "longestRoundTripNano": 163802770,
+ "averageApexExecutionNano": 44315802,
+ "shortestApexExecutionNano": 9213615,
+ "longestApexExecutionNano": 116276378
+ },
+ {
+ "batchNumber": 7612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146192753,
+ "shortestRoundTripNano": 64046645,
+ "longestRoundTripNano": 193306562,
+ "averageApexExecutionNano": 59581009,
+ "shortestApexExecutionNano": 13348290,
+ "longestApexExecutionNano": 109514047
+ },
+ {
+ "batchNumber": 7613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145046340,
+ "shortestRoundTripNano": 70054941,
+ "longestRoundTripNano": 170298976,
+ "averageApexExecutionNano": 50020747,
+ "shortestApexExecutionNano": 7664761,
+ "longestApexExecutionNano": 115306667
+ },
+ {
+ "batchNumber": 7614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157809136,
+ "shortestRoundTripNano": 53568467,
+ "longestRoundTripNano": 185782504,
+ "averageApexExecutionNano": 57958405,
+ "shortestApexExecutionNano": 7455550,
+ "longestApexExecutionNano": 144311319
+ },
+ {
+ "batchNumber": 7615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140368038,
+ "shortestRoundTripNano": 42039123,
+ "longestRoundTripNano": 169340602,
+ "averageApexExecutionNano": 67848815,
+ "shortestApexExecutionNano": 8773356,
+ "longestApexExecutionNano": 128044859
+ },
+ {
+ "batchNumber": 7616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37656",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146473116,
+ "shortestRoundTripNano": 59206518,
+ "longestRoundTripNano": 182264858,
+ "averageApexExecutionNano": 66456294,
+ "shortestApexExecutionNano": 7555013,
+ "longestApexExecutionNano": 141068507
+ },
+ {
+ "batchNumber": 7617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135811976,
+ "shortestRoundTripNano": 53923107,
+ "longestRoundTripNano": 166152636,
+ "averageApexExecutionNano": 46757860,
+ "shortestApexExecutionNano": 5051311,
+ "longestApexExecutionNano": 110590290
+ },
+ {
+ "batchNumber": 7618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148898030,
+ "shortestRoundTripNano": 78591408,
+ "longestRoundTripNano": 174380335,
+ "averageApexExecutionNano": 62233763,
+ "shortestApexExecutionNano": 9250130,
+ "longestApexExecutionNano": 129296678
+ },
+ {
+ "batchNumber": 7619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 188581867,
+ "shortestRoundTripNano": 51426678,
+ "longestRoundTripNano": 238145434,
+ "averageApexExecutionNano": 73869923,
+ "shortestApexExecutionNano": 9166621,
+ "longestApexExecutionNano": 187773956
+ },
+ {
+ "batchNumber": 7620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168023612,
+ "shortestRoundTripNano": 51379037,
+ "longestRoundTripNano": 200757287,
+ "averageApexExecutionNano": 66220959,
+ "shortestApexExecutionNano": 11860269,
+ "longestApexExecutionNano": 144261347
+ },
+ {
+ "batchNumber": 7621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37662",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129712724,
+ "shortestRoundTripNano": 52608624,
+ "longestRoundTripNano": 175340591,
+ "averageApexExecutionNano": 45191535,
+ "shortestApexExecutionNano": 4963881,
+ "longestApexExecutionNano": 129487239
+ },
+ {
+ "batchNumber": 7622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37664",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140503658,
+ "shortestRoundTripNano": 56353308,
+ "longestRoundTripNano": 173929808,
+ "averageApexExecutionNano": 63778029,
+ "shortestApexExecutionNano": 10178928,
+ "longestApexExecutionNano": 128874902
+ },
+ {
+ "batchNumber": 7623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133083021,
+ "shortestRoundTripNano": 56373542,
+ "longestRoundTripNano": 160182520,
+ "averageApexExecutionNano": 56617018,
+ "shortestApexExecutionNano": 14890325,
+ "longestApexExecutionNano": 112547273
+ },
+ {
+ "batchNumber": 7624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143753929,
+ "shortestRoundTripNano": 67859302,
+ "longestRoundTripNano": 175615768,
+ "averageApexExecutionNano": 57577387,
+ "shortestApexExecutionNano": 6157636,
+ "longestApexExecutionNano": 119699849
+ },
+ {
+ "batchNumber": 7625,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169139110,
+ "shortestRoundTripNano": 53016948,
+ "longestRoundTripNano": 197663436,
+ "averageApexExecutionNano": 72731869,
+ "shortestApexExecutionNano": 13641158,
+ "longestApexExecutionNano": 143827813
+ },
+ {
+ "batchNumber": 7626,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187891690,
+ "shortestRoundTripNano": 111172100,
+ "longestRoundTripNano": 215115044,
+ "averageApexExecutionNano": 76129825,
+ "shortestApexExecutionNano": 9929672,
+ "longestApexExecutionNano": 161134286
+ },
+ {
+ "batchNumber": 7627,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37666",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167699634,
+ "shortestRoundTripNano": 54687821,
+ "longestRoundTripNano": 210066270,
+ "averageApexExecutionNano": 71078250,
+ "shortestApexExecutionNano": 10255947,
+ "longestApexExecutionNano": 136810540
+ },
+ {
+ "batchNumber": 7628,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153954228,
+ "shortestRoundTripNano": 49248930,
+ "longestRoundTripNano": 187439583,
+ "averageApexExecutionNano": 69756740,
+ "shortestApexExecutionNano": 9752462,
+ "longestApexExecutionNano": 134863533
+ },
+ {
+ "batchNumber": 7629,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142482984,
+ "shortestRoundTripNano": 57983834,
+ "longestRoundTripNano": 168537295,
+ "averageApexExecutionNano": 57396088,
+ "shortestApexExecutionNano": 7538200,
+ "longestApexExecutionNano": 104576092
+ },
+ {
+ "batchNumber": 7630,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136299933,
+ "shortestRoundTripNano": 62569297,
+ "longestRoundTripNano": 159457571,
+ "averageApexExecutionNano": 62774067,
+ "shortestApexExecutionNano": 6290785,
+ "longestApexExecutionNano": 123162149
+ },
+ {
+ "batchNumber": 7631,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168455210,
+ "shortestRoundTripNano": 54023725,
+ "longestRoundTripNano": 201497574,
+ "averageApexExecutionNano": 63976651,
+ "shortestApexExecutionNano": 6724857,
+ "longestApexExecutionNano": 132795805
+ },
+ {
+ "batchNumber": 7632,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37668",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165278535,
+ "shortestRoundTripNano": 48467161,
+ "longestRoundTripNano": 196952934,
+ "averageApexExecutionNano": 75921603,
+ "shortestApexExecutionNano": 6857485,
+ "longestApexExecutionNano": 156236861
+ },
+ {
+ "batchNumber": 7633,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167045598,
+ "shortestRoundTripNano": 66373659,
+ "longestRoundTripNano": 195955608,
+ "averageApexExecutionNano": 56959248,
+ "shortestApexExecutionNano": 6896444,
+ "longestApexExecutionNano": 142031396
+ },
+ {
+ "batchNumber": 7634,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168313959,
+ "shortestRoundTripNano": 81340994,
+ "longestRoundTripNano": 197741223,
+ "averageApexExecutionNano": 74500231,
+ "shortestApexExecutionNano": 6140785,
+ "longestApexExecutionNano": 138197181
+ },
+ {
+ "batchNumber": 7635,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37670",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152997956,
+ "shortestRoundTripNano": 60944078,
+ "longestRoundTripNano": 187219684,
+ "averageApexExecutionNano": 67939578,
+ "shortestApexExecutionNano": 12007339,
+ "longestApexExecutionNano": 139828078
+ },
+ {
+ "batchNumber": 7636,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140425744,
+ "shortestRoundTripNano": 54966942,
+ "longestRoundTripNano": 167456785,
+ "averageApexExecutionNano": 50510327,
+ "shortestApexExecutionNano": 11030546,
+ "longestApexExecutionNano": 126384444
+ },
+ {
+ "batchNumber": 7637,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164276877,
+ "shortestRoundTripNano": 71826568,
+ "longestRoundTripNano": 198857166,
+ "averageApexExecutionNano": 61216147,
+ "shortestApexExecutionNano": 8475372,
+ "longestApexExecutionNano": 132350420
+ },
+ {
+ "batchNumber": 7638,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157696955,
+ "shortestRoundTripNano": 94973398,
+ "longestRoundTripNano": 182298929,
+ "averageApexExecutionNano": 80181158,
+ "shortestApexExecutionNano": 7384975,
+ "longestApexExecutionNano": 148802824
+ },
+ {
+ "batchNumber": 7639,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150482097,
+ "shortestRoundTripNano": 83498903,
+ "longestRoundTripNano": 178088349,
+ "averageApexExecutionNano": 64008139,
+ "shortestApexExecutionNano": 25883504,
+ "longestApexExecutionNano": 130936281
+ },
+ {
+ "batchNumber": 7640,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152679549,
+ "shortestRoundTripNano": 78898574,
+ "longestRoundTripNano": 176861933,
+ "averageApexExecutionNano": 70361716,
+ "shortestApexExecutionNano": 13184988,
+ "longestApexExecutionNano": 126371634
+ },
+ {
+ "batchNumber": 7641,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142947980,
+ "shortestRoundTripNano": 48731588,
+ "longestRoundTripNano": 178234733,
+ "averageApexExecutionNano": 60516309,
+ "shortestApexExecutionNano": 11121920,
+ "longestApexExecutionNano": 120323307
+ },
+ {
+ "batchNumber": 7642,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153205893,
+ "shortestRoundTripNano": 82148938,
+ "longestRoundTripNano": 184294436,
+ "averageApexExecutionNano": 57725615,
+ "shortestApexExecutionNano": 4630180,
+ "longestApexExecutionNano": 130653589
+ },
+ {
+ "batchNumber": 7643,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150724185,
+ "shortestRoundTripNano": 68797231,
+ "longestRoundTripNano": 178626157,
+ "averageApexExecutionNano": 51017185,
+ "shortestApexExecutionNano": 5504965,
+ "longestApexExecutionNano": 128050123
+ },
+ {
+ "batchNumber": 7644,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153048635,
+ "shortestRoundTripNano": 43292513,
+ "longestRoundTripNano": 183422219,
+ "averageApexExecutionNano": 71063810,
+ "shortestApexExecutionNano": 10506171,
+ "longestApexExecutionNano": 136947119
+ },
+ {
+ "batchNumber": 7645,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137349754,
+ "shortestRoundTripNano": 56031910,
+ "longestRoundTripNano": 171480622,
+ "averageApexExecutionNano": 54604280,
+ "shortestApexExecutionNano": 6871103,
+ "longestApexExecutionNano": 131356405
+ },
+ {
+ "batchNumber": 7646,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37674",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141536747,
+ "shortestRoundTripNano": 65740433,
+ "longestRoundTripNano": 172508389,
+ "averageApexExecutionNano": 67941937,
+ "shortestApexExecutionNano": 6495833,
+ "longestApexExecutionNano": 141441279
+ },
+ {
+ "batchNumber": 7647,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130157149,
+ "shortestRoundTripNano": 73161846,
+ "longestRoundTripNano": 166832451,
+ "averageApexExecutionNano": 57902387,
+ "shortestApexExecutionNano": 6005540,
+ "longestApexExecutionNano": 121705115
+ },
+ {
+ "batchNumber": 7648,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136387697,
+ "shortestRoundTripNano": 67223320,
+ "longestRoundTripNano": 175343778,
+ "averageApexExecutionNano": 58141189,
+ "shortestApexExecutionNano": 5384776,
+ "longestApexExecutionNano": 108272183
+ },
+ {
+ "batchNumber": 7649,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37672",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 249641721,
+ "shortestRoundTripNano": 64125545,
+ "longestRoundTripNano": 279697081,
+ "averageApexExecutionNano": 111038626,
+ "shortestApexExecutionNano": 7900634,
+ "longestApexExecutionNano": 224128492
+ },
+ {
+ "batchNumber": 7650,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149644123,
+ "shortestRoundTripNano": 57170948,
+ "longestRoundTripNano": 173948446,
+ "averageApexExecutionNano": 62820499,
+ "shortestApexExecutionNano": 9943544,
+ "longestApexExecutionNano": 127684396
+ },
+ {
+ "batchNumber": 7651,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139504629,
+ "shortestRoundTripNano": 60480577,
+ "longestRoundTripNano": 172275583,
+ "averageApexExecutionNano": 39886318,
+ "shortestApexExecutionNano": 6448920,
+ "longestApexExecutionNano": 110809053
+ },
+ {
+ "batchNumber": 7652,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154320752,
+ "shortestRoundTripNano": 74281353,
+ "longestRoundTripNano": 197300500,
+ "averageApexExecutionNano": 58287377,
+ "shortestApexExecutionNano": 7586777,
+ "longestApexExecutionNano": 138995889
+ },
+ {
+ "batchNumber": 7653,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37676",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165882803,
+ "shortestRoundTripNano": 114063246,
+ "longestRoundTripNano": 186917454,
+ "averageApexExecutionNano": 80301626,
+ "shortestApexExecutionNano": 21479387,
+ "longestApexExecutionNano": 139735345
+ },
+ {
+ "batchNumber": 7654,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172159898,
+ "shortestRoundTripNano": 84946178,
+ "longestRoundTripNano": 198390229,
+ "averageApexExecutionNano": 58693860,
+ "shortestApexExecutionNano": 7046333,
+ "longestApexExecutionNano": 140419870
+ },
+ {
+ "batchNumber": 7655,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138762586,
+ "shortestRoundTripNano": 73593788,
+ "longestRoundTripNano": 170087924,
+ "averageApexExecutionNano": 45851108,
+ "shortestApexExecutionNano": 6800394,
+ "longestApexExecutionNano": 127625224
+ },
+ {
+ "batchNumber": 7656,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155799250,
+ "shortestRoundTripNano": 47199871,
+ "longestRoundTripNano": 190314187,
+ "averageApexExecutionNano": 71473298,
+ "shortestApexExecutionNano": 8045046,
+ "longestApexExecutionNano": 131154519
+ },
+ {
+ "batchNumber": 7657,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160674644,
+ "shortestRoundTripNano": 85279256,
+ "longestRoundTripNano": 190677666,
+ "averageApexExecutionNano": 72708618,
+ "shortestApexExecutionNano": 11437596,
+ "longestApexExecutionNano": 144257361
+ },
+ {
+ "batchNumber": 7658,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145027351,
+ "shortestRoundTripNano": 58485600,
+ "longestRoundTripNano": 185088445,
+ "averageApexExecutionNano": 61768912,
+ "shortestApexExecutionNano": 9520882,
+ "longestApexExecutionNano": 127167246
+ },
+ {
+ "batchNumber": 7659,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37678",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135322243,
+ "shortestRoundTripNano": 42570356,
+ "longestRoundTripNano": 178508935,
+ "averageApexExecutionNano": 49119659,
+ "shortestApexExecutionNano": 11159227,
+ "longestApexExecutionNano": 99630646
+ },
+ {
+ "batchNumber": 7660,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146501516,
+ "shortestRoundTripNano": 69321394,
+ "longestRoundTripNano": 175793576,
+ "averageApexExecutionNano": 64446572,
+ "shortestApexExecutionNano": 6657232,
+ "longestApexExecutionNano": 128134835
+ },
+ {
+ "batchNumber": 7661,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163171405,
+ "shortestRoundTripNano": 72456046,
+ "longestRoundTripNano": 194122566,
+ "averageApexExecutionNano": 64043810,
+ "shortestApexExecutionNano": 6792924,
+ "longestApexExecutionNano": 137380206
+ },
+ {
+ "batchNumber": 7662,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166077195,
+ "shortestRoundTripNano": 74272958,
+ "longestRoundTripNano": 208224935,
+ "averageApexExecutionNano": 73755930,
+ "shortestApexExecutionNano": 7392418,
+ "longestApexExecutionNano": 133274463
+ },
+ {
+ "batchNumber": 7663,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135506829,
+ "shortestRoundTripNano": 66049511,
+ "longestRoundTripNano": 168932724,
+ "averageApexExecutionNano": 53502039,
+ "shortestApexExecutionNano": 6376127,
+ "longestApexExecutionNano": 124597694
+ },
+ {
+ "batchNumber": 7664,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164892273,
+ "shortestRoundTripNano": 55257479,
+ "longestRoundTripNano": 196219916,
+ "averageApexExecutionNano": 60813592,
+ "shortestApexExecutionNano": 6103364,
+ "longestApexExecutionNano": 154589500
+ },
+ {
+ "batchNumber": 7665,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37682",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141924379,
+ "shortestRoundTripNano": 42555115,
+ "longestRoundTripNano": 169862702,
+ "averageApexExecutionNano": 67072878,
+ "shortestApexExecutionNano": 23567044,
+ "longestApexExecutionNano": 118650098
+ },
+ {
+ "batchNumber": 7666,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136324275,
+ "shortestRoundTripNano": 62746855,
+ "longestRoundTripNano": 160710758,
+ "averageApexExecutionNano": 58569011,
+ "shortestApexExecutionNano": 6236497,
+ "longestApexExecutionNano": 110983215
+ },
+ {
+ "batchNumber": 7667,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37680",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149032682,
+ "shortestRoundTripNano": 57361511,
+ "longestRoundTripNano": 180836227,
+ "averageApexExecutionNano": 61842077,
+ "shortestApexExecutionNano": 8066819,
+ "longestApexExecutionNano": 126964785
+ },
+ {
+ "batchNumber": 7668,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152446456,
+ "shortestRoundTripNano": 60552493,
+ "longestRoundTripNano": 185754812,
+ "averageApexExecutionNano": 52004088,
+ "shortestApexExecutionNano": 5678515,
+ "longestApexExecutionNano": 126578739
+ },
+ {
+ "batchNumber": 7669,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140335523,
+ "shortestRoundTripNano": 79133020,
+ "longestRoundTripNano": 165480870,
+ "averageApexExecutionNano": 68202722,
+ "shortestApexExecutionNano": 12292601,
+ "longestApexExecutionNano": 120698936
+ },
+ {
+ "batchNumber": 7670,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143310453,
+ "shortestRoundTripNano": 62572598,
+ "longestRoundTripNano": 174810070,
+ "averageApexExecutionNano": 51775546,
+ "shortestApexExecutionNano": 6868684,
+ "longestApexExecutionNano": 112703234
+ },
+ {
+ "batchNumber": 7671,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138643999,
+ "shortestRoundTripNano": 47464132,
+ "longestRoundTripNano": 167364275,
+ "averageApexExecutionNano": 58183118,
+ "shortestApexExecutionNano": 6966500,
+ "longestApexExecutionNano": 123465608
+ },
+ {
+ "batchNumber": 7672,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136881252,
+ "shortestRoundTripNano": 51925192,
+ "longestRoundTripNano": 163193530,
+ "averageApexExecutionNano": 48679202,
+ "shortestApexExecutionNano": 7444946,
+ "longestApexExecutionNano": 109516629
+ },
+ {
+ "batchNumber": 7673,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150574644,
+ "shortestRoundTripNano": 79273354,
+ "longestRoundTripNano": 185440481,
+ "averageApexExecutionNano": 46276237,
+ "shortestApexExecutionNano": 6267406,
+ "longestApexExecutionNano": 133064047
+ },
+ {
+ "batchNumber": 7674,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135098407,
+ "shortestRoundTripNano": 44211528,
+ "longestRoundTripNano": 164647425,
+ "averageApexExecutionNano": 52095210,
+ "shortestApexExecutionNano": 6406286,
+ "longestApexExecutionNano": 109636605
+ },
+ {
+ "batchNumber": 7675,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147830606,
+ "shortestRoundTripNano": 78447618,
+ "longestRoundTripNano": 171727064,
+ "averageApexExecutionNano": 75056599,
+ "shortestApexExecutionNano": 12066791,
+ "longestApexExecutionNano": 134435972
+ },
+ {
+ "batchNumber": 7676,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148914023,
+ "shortestRoundTripNano": 69567453,
+ "longestRoundTripNano": 187702237,
+ "averageApexExecutionNano": 71506125,
+ "shortestApexExecutionNano": 7518615,
+ "longestApexExecutionNano": 129176675
+ },
+ {
+ "batchNumber": 7677,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136119529,
+ "shortestRoundTripNano": 61488076,
+ "longestRoundTripNano": 162865433,
+ "averageApexExecutionNano": 66935865,
+ "shortestApexExecutionNano": 15214238,
+ "longestApexExecutionNano": 113147321
+ },
+ {
+ "batchNumber": 7678,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149662259,
+ "shortestRoundTripNano": 57954160,
+ "longestRoundTripNano": 180075613,
+ "averageApexExecutionNano": 62709771,
+ "shortestApexExecutionNano": 9312505,
+ "longestApexExecutionNano": 119866034
+ },
+ {
+ "batchNumber": 7679,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37684",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128142296,
+ "shortestRoundTripNano": 33269138,
+ "longestRoundTripNano": 162587335,
+ "averageApexExecutionNano": 53096120,
+ "shortestApexExecutionNano": 8477808,
+ "longestApexExecutionNano": 101527267
+ },
+ {
+ "batchNumber": 7680,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135364343,
+ "shortestRoundTripNano": 57282348,
+ "longestRoundTripNano": 161435310,
+ "averageApexExecutionNano": 49203509,
+ "shortestApexExecutionNano": 9749163,
+ "longestApexExecutionNano": 101184868
+ },
+ {
+ "batchNumber": 7681,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140888088,
+ "shortestRoundTripNano": 66090591,
+ "longestRoundTripNano": 169179873,
+ "averageApexExecutionNano": 62901677,
+ "shortestApexExecutionNano": 26035805,
+ "longestApexExecutionNano": 121168351
+ },
+ {
+ "batchNumber": 7682,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144326798,
+ "shortestRoundTripNano": 70940871,
+ "longestRoundTripNano": 171997087,
+ "averageApexExecutionNano": 73664477,
+ "shortestApexExecutionNano": 6577783,
+ "longestApexExecutionNano": 123217101
+ },
+ {
+ "batchNumber": 7683,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160862668,
+ "shortestRoundTripNano": 67463696,
+ "longestRoundTripNano": 198986639,
+ "averageApexExecutionNano": 70290516,
+ "shortestApexExecutionNano": 8523131,
+ "longestApexExecutionNano": 149746061
+ },
+ {
+ "batchNumber": 7684,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140498602,
+ "shortestRoundTripNano": 31109236,
+ "longestRoundTripNano": 171545029,
+ "averageApexExecutionNano": 51698618,
+ "shortestApexExecutionNano": 7231985,
+ "longestApexExecutionNano": 127156508
+ },
+ {
+ "batchNumber": 7685,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130613868,
+ "shortestRoundTripNano": 59962813,
+ "longestRoundTripNano": 161535626,
+ "averageApexExecutionNano": 48859291,
+ "shortestApexExecutionNano": 8173199,
+ "longestApexExecutionNano": 113468493
+ },
+ {
+ "batchNumber": 7686,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138606291,
+ "shortestRoundTripNano": 72169794,
+ "longestRoundTripNano": 163915191,
+ "averageApexExecutionNano": 56664651,
+ "shortestApexExecutionNano": 9170815,
+ "longestApexExecutionNano": 110508006
+ },
+ {
+ "batchNumber": 7687,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162951639,
+ "shortestRoundTripNano": 65168234,
+ "longestRoundTripNano": 197093035,
+ "averageApexExecutionNano": 56022285,
+ "shortestApexExecutionNano": 7238532,
+ "longestApexExecutionNano": 140098705
+ },
+ {
+ "batchNumber": 7688,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155583929,
+ "shortestRoundTripNano": 72162528,
+ "longestRoundTripNano": 186157662,
+ "averageApexExecutionNano": 52835059,
+ "shortestApexExecutionNano": 6833385,
+ "longestApexExecutionNano": 127897188
+ },
+ {
+ "batchNumber": 7689,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137358652,
+ "shortestRoundTripNano": 39528129,
+ "longestRoundTripNano": 173263658,
+ "averageApexExecutionNano": 56737508,
+ "shortestApexExecutionNano": 6956367,
+ "longestApexExecutionNano": 123731709
+ },
+ {
+ "batchNumber": 7690,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148947896,
+ "shortestRoundTripNano": 82973494,
+ "longestRoundTripNano": 172755005,
+ "averageApexExecutionNano": 75325144,
+ "shortestApexExecutionNano": 6667399,
+ "longestApexExecutionNano": 127187154
+ },
+ {
+ "batchNumber": 7691,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159183960,
+ "shortestRoundTripNano": 69464733,
+ "longestRoundTripNano": 189176300,
+ "averageApexExecutionNano": 57993976,
+ "shortestApexExecutionNano": 8248512,
+ "longestApexExecutionNano": 130789025
+ },
+ {
+ "batchNumber": 7692,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141228270,
+ "shortestRoundTripNano": 68012459,
+ "longestRoundTripNano": 172775898,
+ "averageApexExecutionNano": 57189661,
+ "shortestApexExecutionNano": 13332435,
+ "longestApexExecutionNano": 118444783
+ },
+ {
+ "batchNumber": 7693,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37688",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152607402,
+ "shortestRoundTripNano": 57701207,
+ "longestRoundTripNano": 188318953,
+ "averageApexExecutionNano": 62362576,
+ "shortestApexExecutionNano": 7489845,
+ "longestApexExecutionNano": 130571170
+ },
+ {
+ "batchNumber": 7694,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 207088539,
+ "shortestRoundTripNano": 104397433,
+ "longestRoundTripNano": 236190287,
+ "averageApexExecutionNano": 77344556,
+ "shortestApexExecutionNano": 10878293,
+ "longestApexExecutionNano": 179309622
+ },
+ {
+ "batchNumber": 7695,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162461520,
+ "shortestRoundTripNano": 81718362,
+ "longestRoundTripNano": 188938460,
+ "averageApexExecutionNano": 38206908,
+ "shortestApexExecutionNano": 10284489,
+ "longestApexExecutionNano": 113887211
+ },
+ {
+ "batchNumber": 7696,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135320977,
+ "shortestRoundTripNano": 67050759,
+ "longestRoundTripNano": 164404954,
+ "averageApexExecutionNano": 55818171,
+ "shortestApexExecutionNano": 8398030,
+ "longestApexExecutionNano": 115173156
+ },
+ {
+ "batchNumber": 7697,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143117757,
+ "shortestRoundTripNano": 84491416,
+ "longestRoundTripNano": 172561693,
+ "averageApexExecutionNano": 52049511,
+ "shortestApexExecutionNano": 8293937,
+ "longestApexExecutionNano": 92109805
+ },
+ {
+ "batchNumber": 7698,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122838000,
+ "shortestRoundTripNano": 55809944,
+ "longestRoundTripNano": 149786229,
+ "averageApexExecutionNano": 61458203,
+ "shortestApexExecutionNano": 8642710,
+ "longestApexExecutionNano": 109145977
+ },
+ {
+ "batchNumber": 7699,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37692",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145272740,
+ "shortestRoundTripNano": 44787814,
+ "longestRoundTripNano": 173656067,
+ "averageApexExecutionNano": 67916571,
+ "shortestApexExecutionNano": 6897345,
+ "longestApexExecutionNano": 121878406
+ },
+ {
+ "batchNumber": 7700,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160185191,
+ "shortestRoundTripNano": 97356425,
+ "longestRoundTripNano": 181966869,
+ "averageApexExecutionNano": 71926789,
+ "shortestApexExecutionNano": 6871164,
+ "longestApexExecutionNano": 112038295
+ },
+ {
+ "batchNumber": 7701,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133720539,
+ "shortestRoundTripNano": 76600595,
+ "longestRoundTripNano": 160287614,
+ "averageApexExecutionNano": 60897317,
+ "shortestApexExecutionNano": 10263992,
+ "longestApexExecutionNano": 113050167
+ },
+ {
+ "batchNumber": 7702,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162791079,
+ "shortestRoundTripNano": 65946050,
+ "longestRoundTripNano": 200360668,
+ "averageApexExecutionNano": 62285668,
+ "shortestApexExecutionNano": 7399336,
+ "longestApexExecutionNano": 125404692
+ },
+ {
+ "batchNumber": 7703,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37694",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175086960,
+ "shortestRoundTripNano": 52052229,
+ "longestRoundTripNano": 207363708,
+ "averageApexExecutionNano": 57775050,
+ "shortestApexExecutionNano": 7632121,
+ "longestApexExecutionNano": 132190783
+ },
+ {
+ "batchNumber": 7704,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161373715,
+ "shortestRoundTripNano": 66739960,
+ "longestRoundTripNano": 188182122,
+ "averageApexExecutionNano": 77233175,
+ "shortestApexExecutionNano": 9507825,
+ "longestApexExecutionNano": 134339924
+ },
+ {
+ "batchNumber": 7705,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158123516,
+ "shortestRoundTripNano": 63092476,
+ "longestRoundTripNano": 186035012,
+ "averageApexExecutionNano": 59787693,
+ "shortestApexExecutionNano": 9988979,
+ "longestApexExecutionNano": 147343902
+ },
+ {
+ "batchNumber": 7706,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143556682,
+ "shortestRoundTripNano": 66245078,
+ "longestRoundTripNano": 169672115,
+ "averageApexExecutionNano": 61830375,
+ "shortestApexExecutionNano": 24206877,
+ "longestApexExecutionNano": 120093096
+ },
+ {
+ "batchNumber": 7707,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135312428,
+ "shortestRoundTripNano": 55587994,
+ "longestRoundTripNano": 159330631,
+ "averageApexExecutionNano": 52939740,
+ "shortestApexExecutionNano": 8691151,
+ "longestApexExecutionNano": 102315505
+ },
+ {
+ "batchNumber": 7708,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155532723,
+ "shortestRoundTripNano": 63791116,
+ "longestRoundTripNano": 190135865,
+ "averageApexExecutionNano": 63635950,
+ "shortestApexExecutionNano": 13806266,
+ "longestApexExecutionNano": 111906990
+ },
+ {
+ "batchNumber": 7709,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138528724,
+ "shortestRoundTripNano": 85386974,
+ "longestRoundTripNano": 164222904,
+ "averageApexExecutionNano": 59097225,
+ "shortestApexExecutionNano": 11266445,
+ "longestApexExecutionNano": 118064000
+ },
+ {
+ "batchNumber": 7710,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139034247,
+ "shortestRoundTripNano": 65489753,
+ "longestRoundTripNano": 163463366,
+ "averageApexExecutionNano": 52035125,
+ "shortestApexExecutionNano": 5973389,
+ "longestApexExecutionNano": 111049725
+ },
+ {
+ "batchNumber": 7711,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140122524,
+ "shortestRoundTripNano": 75005170,
+ "longestRoundTripNano": 167411842,
+ "averageApexExecutionNano": 46894909,
+ "shortestApexExecutionNano": 5579993,
+ "longestApexExecutionNano": 113882215
+ },
+ {
+ "batchNumber": 7712,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153698818,
+ "shortestRoundTripNano": 82339729,
+ "longestRoundTripNano": 182809821,
+ "averageApexExecutionNano": 67784415,
+ "shortestApexExecutionNano": 9744952,
+ "longestApexExecutionNano": 133138563
+ },
+ {
+ "batchNumber": 7713,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129867274,
+ "shortestRoundTripNano": 60970607,
+ "longestRoundTripNano": 157977333,
+ "averageApexExecutionNano": 65978850,
+ "shortestApexExecutionNano": 13686090,
+ "longestApexExecutionNano": 117526858
+ },
+ {
+ "batchNumber": 7714,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37696",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157484867,
+ "shortestRoundTripNano": 63875792,
+ "longestRoundTripNano": 181415092,
+ "averageApexExecutionNano": 70437376,
+ "shortestApexExecutionNano": 14087036,
+ "longestApexExecutionNano": 130947640
+ },
+ {
+ "batchNumber": 7715,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128739073,
+ "shortestRoundTripNano": 39636848,
+ "longestRoundTripNano": 154542231,
+ "averageApexExecutionNano": 50329911,
+ "shortestApexExecutionNano": 13746285,
+ "longestApexExecutionNano": 96882269
+ },
+ {
+ "batchNumber": 7716,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146091240,
+ "shortestRoundTripNano": 57366848,
+ "longestRoundTripNano": 178978857,
+ "averageApexExecutionNano": 54066591,
+ "shortestApexExecutionNano": 9750041,
+ "longestApexExecutionNano": 137094815
+ },
+ {
+ "batchNumber": 7717,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133676803,
+ "shortestRoundTripNano": 33383649,
+ "longestRoundTripNano": 160610823,
+ "averageApexExecutionNano": 57952144,
+ "shortestApexExecutionNano": 10715526,
+ "longestApexExecutionNano": 109648273
+ },
+ {
+ "batchNumber": 7718,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139516023,
+ "shortestRoundTripNano": 93085075,
+ "longestRoundTripNano": 163696325,
+ "averageApexExecutionNano": 61594181,
+ "shortestApexExecutionNano": 14869159,
+ "longestApexExecutionNano": 116936979
+ },
+ {
+ "batchNumber": 7719,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135406379,
+ "shortestRoundTripNano": 51108232,
+ "longestRoundTripNano": 166976847,
+ "averageApexExecutionNano": 58533882,
+ "shortestApexExecutionNano": 4694506,
+ "longestApexExecutionNano": 117890704
+ },
+ {
+ "batchNumber": 7720,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135741949,
+ "shortestRoundTripNano": 51682270,
+ "longestRoundTripNano": 170034598,
+ "averageApexExecutionNano": 54365779,
+ "shortestApexExecutionNano": 9182077,
+ "longestApexExecutionNano": 124520446
+ },
+ {
+ "batchNumber": 7721,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158009506,
+ "shortestRoundTripNano": 70611357,
+ "longestRoundTripNano": 190969612,
+ "averageApexExecutionNano": 68051784,
+ "shortestApexExecutionNano": 6398575,
+ "longestApexExecutionNano": 135873853
+ },
+ {
+ "batchNumber": 7722,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37704",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157514696,
+ "shortestRoundTripNano": 66827261,
+ "longestRoundTripNano": 189997848,
+ "averageApexExecutionNano": 69554266,
+ "shortestApexExecutionNano": 5579561,
+ "longestApexExecutionNano": 141580381
+ },
+ {
+ "batchNumber": 7723,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161528831,
+ "shortestRoundTripNano": 56831580,
+ "longestRoundTripNano": 195982489,
+ "averageApexExecutionNano": 71372654,
+ "shortestApexExecutionNano": 7904654,
+ "longestApexExecutionNano": 141349617
+ },
+ {
+ "batchNumber": 7724,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156132056,
+ "shortestRoundTripNano": 81702274,
+ "longestRoundTripNano": 182538004,
+ "averageApexExecutionNano": 73773010,
+ "shortestApexExecutionNano": 9834262,
+ "longestApexExecutionNano": 127262366
+ },
+ {
+ "batchNumber": 7725,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137163692,
+ "shortestRoundTripNano": 50964495,
+ "longestRoundTripNano": 165251088,
+ "averageApexExecutionNano": 52287072,
+ "shortestApexExecutionNano": 8900579,
+ "longestApexExecutionNano": 105685759
+ },
+ {
+ "batchNumber": 7726,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155943525,
+ "shortestRoundTripNano": 83385025,
+ "longestRoundTripNano": 184761918,
+ "averageApexExecutionNano": 68874795,
+ "shortestApexExecutionNano": 14801361,
+ "longestApexExecutionNano": 141107151
+ },
+ {
+ "batchNumber": 7727,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132280528,
+ "shortestRoundTripNano": 63957301,
+ "longestRoundTripNano": 172910510,
+ "averageApexExecutionNano": 56106737,
+ "shortestApexExecutionNano": 5744243,
+ "longestApexExecutionNano": 113227091
+ },
+ {
+ "batchNumber": 7728,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151196204,
+ "shortestRoundTripNano": 66338421,
+ "longestRoundTripNano": 179644714,
+ "averageApexExecutionNano": 77811066,
+ "shortestApexExecutionNano": 15644032,
+ "longestApexExecutionNano": 132791976
+ },
+ {
+ "batchNumber": 7729,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137083844,
+ "shortestRoundTripNano": 62107550,
+ "longestRoundTripNano": 173426259,
+ "averageApexExecutionNano": 66691233,
+ "shortestApexExecutionNano": 11352287,
+ "longestApexExecutionNano": 124076195
+ },
+ {
+ "batchNumber": 7730,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144267135,
+ "shortestRoundTripNano": 49661506,
+ "longestRoundTripNano": 195286095,
+ "averageApexExecutionNano": 59131713,
+ "shortestApexExecutionNano": 4978957,
+ "longestApexExecutionNano": 120534191
+ },
+ {
+ "batchNumber": 7731,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148303869,
+ "shortestRoundTripNano": 79673713,
+ "longestRoundTripNano": 183848996,
+ "averageApexExecutionNano": 60898219,
+ "shortestApexExecutionNano": 6583585,
+ "longestApexExecutionNano": 143101058
+ },
+ {
+ "batchNumber": 7732,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37702",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157735198,
+ "shortestRoundTripNano": 52755338,
+ "longestRoundTripNano": 188549333,
+ "averageApexExecutionNano": 71363875,
+ "shortestApexExecutionNano": 11553867,
+ "longestApexExecutionNano": 149341289
+ },
+ {
+ "batchNumber": 7733,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157335017,
+ "shortestRoundTripNano": 77683332,
+ "longestRoundTripNano": 184621773,
+ "averageApexExecutionNano": 55773842,
+ "shortestApexExecutionNano": 10285798,
+ "longestApexExecutionNano": 121881868
+ },
+ {
+ "batchNumber": 7734,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133461193,
+ "shortestRoundTripNano": 64098977,
+ "longestRoundTripNano": 155903048,
+ "averageApexExecutionNano": 42205892,
+ "shortestApexExecutionNano": 9634733,
+ "longestApexExecutionNano": 93221704
+ },
+ {
+ "batchNumber": 7735,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155266074,
+ "shortestRoundTripNano": 54962289,
+ "longestRoundTripNano": 187138711,
+ "averageApexExecutionNano": 72243854,
+ "shortestApexExecutionNano": 10714776,
+ "longestApexExecutionNano": 140540922
+ },
+ {
+ "batchNumber": 7736,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133182724,
+ "shortestRoundTripNano": 65492961,
+ "longestRoundTripNano": 165900560,
+ "averageApexExecutionNano": 60981623,
+ "shortestApexExecutionNano": 9067234,
+ "longestApexExecutionNano": 121646354
+ },
+ {
+ "batchNumber": 7737,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145393149,
+ "shortestRoundTripNano": 52805430,
+ "longestRoundTripNano": 178355296,
+ "averageApexExecutionNano": 64032327,
+ "shortestApexExecutionNano": 10913384,
+ "longestApexExecutionNano": 146462051
+ },
+ {
+ "batchNumber": 7738,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139926558,
+ "shortestRoundTripNano": 66427149,
+ "longestRoundTripNano": 165617846,
+ "averageApexExecutionNano": 58249586,
+ "shortestApexExecutionNano": 7224398,
+ "longestApexExecutionNano": 127949937
+ },
+ {
+ "batchNumber": 7739,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37710",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136397687,
+ "shortestRoundTripNano": 48912608,
+ "longestRoundTripNano": 166907965,
+ "averageApexExecutionNano": 50777647,
+ "shortestApexExecutionNano": 5639912,
+ "longestApexExecutionNano": 105637768
+ },
+ {
+ "batchNumber": 7740,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136948100,
+ "shortestRoundTripNano": 66572392,
+ "longestRoundTripNano": 162666967,
+ "averageApexExecutionNano": 63310958,
+ "shortestApexExecutionNano": 10951369,
+ "longestApexExecutionNano": 110841340
+ },
+ {
+ "batchNumber": 7741,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37708",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152975665,
+ "shortestRoundTripNano": 59392934,
+ "longestRoundTripNano": 185668315,
+ "averageApexExecutionNano": 61492669,
+ "shortestApexExecutionNano": 8431828,
+ "longestApexExecutionNano": 117477060
+ },
+ {
+ "batchNumber": 7742,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129126029,
+ "shortestRoundTripNano": 52862592,
+ "longestRoundTripNano": 159901170,
+ "averageApexExecutionNano": 56886409,
+ "shortestApexExecutionNano": 9936035,
+ "longestApexExecutionNano": 106538616
+ },
+ {
+ "batchNumber": 7743,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158307813,
+ "shortestRoundTripNano": 68285005,
+ "longestRoundTripNano": 189148586,
+ "averageApexExecutionNano": 64532283,
+ "shortestApexExecutionNano": 10226812,
+ "longestApexExecutionNano": 148633955
+ },
+ {
+ "batchNumber": 7744,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154089549,
+ "shortestRoundTripNano": 59958876,
+ "longestRoundTripNano": 184093397,
+ "averageApexExecutionNano": 70183938,
+ "shortestApexExecutionNano": 12589344,
+ "longestApexExecutionNano": 129780880
+ },
+ {
+ "batchNumber": 7745,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129320915,
+ "shortestRoundTripNano": 65497320,
+ "longestRoundTripNano": 162649671,
+ "averageApexExecutionNano": 62803712,
+ "shortestApexExecutionNano": 6899178,
+ "longestApexExecutionNano": 121998946
+ },
+ {
+ "batchNumber": 7746,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137625647,
+ "shortestRoundTripNano": 65294299,
+ "longestRoundTripNano": 172275782,
+ "averageApexExecutionNano": 48661593,
+ "shortestApexExecutionNano": 8596616,
+ "longestApexExecutionNano": 131459320
+ },
+ {
+ "batchNumber": 7747,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130345782,
+ "shortestRoundTripNano": 37568336,
+ "longestRoundTripNano": 157711865,
+ "averageApexExecutionNano": 53314414,
+ "shortestApexExecutionNano": 5494620,
+ "longestApexExecutionNano": 111135975
+ },
+ {
+ "batchNumber": 7748,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37714",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137981810,
+ "shortestRoundTripNano": 65952075,
+ "longestRoundTripNano": 170320359,
+ "averageApexExecutionNano": 62402727,
+ "shortestApexExecutionNano": 16603344,
+ "longestApexExecutionNano": 113900437
+ },
+ {
+ "batchNumber": 7749,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141316834,
+ "shortestRoundTripNano": 58799027,
+ "longestRoundTripNano": 164609480,
+ "averageApexExecutionNano": 48883783,
+ "shortestApexExecutionNano": 7610950,
+ "longestApexExecutionNano": 101733981
+ },
+ {
+ "batchNumber": 7750,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137680744,
+ "shortestRoundTripNano": 72560408,
+ "longestRoundTripNano": 157697965,
+ "averageApexExecutionNano": 63313689,
+ "shortestApexExecutionNano": 7103850,
+ "longestApexExecutionNano": 106696784
+ },
+ {
+ "batchNumber": 7751,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138310062,
+ "shortestRoundTripNano": 64138240,
+ "longestRoundTripNano": 164924072,
+ "averageApexExecutionNano": 56561621,
+ "shortestApexExecutionNano": 10735422,
+ "longestApexExecutionNano": 114885389
+ },
+ {
+ "batchNumber": 7752,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125555551,
+ "shortestRoundTripNano": 50722751,
+ "longestRoundTripNano": 159911509,
+ "averageApexExecutionNano": 60386608,
+ "shortestApexExecutionNano": 8830726,
+ "longestApexExecutionNano": 115700678
+ },
+ {
+ "batchNumber": 7753,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37712",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136611064,
+ "shortestRoundTripNano": 34088904,
+ "longestRoundTripNano": 170245471,
+ "averageApexExecutionNano": 68249829,
+ "shortestApexExecutionNano": 11279856,
+ "longestApexExecutionNano": 130513244
+ },
+ {
+ "batchNumber": 7754,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130531236,
+ "shortestRoundTripNano": 46551828,
+ "longestRoundTripNano": 174566112,
+ "averageApexExecutionNano": 63093870,
+ "shortestApexExecutionNano": 8769447,
+ "longestApexExecutionNano": 126847237
+ },
+ {
+ "batchNumber": 7755,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133988760,
+ "shortestRoundTripNano": 69090324,
+ "longestRoundTripNano": 158704033,
+ "averageApexExecutionNano": 64716891,
+ "shortestApexExecutionNano": 19396219,
+ "longestApexExecutionNano": 117648302
+ },
+ {
+ "batchNumber": 7756,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37716",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195311841,
+ "shortestRoundTripNano": 56748192,
+ "longestRoundTripNano": 229465696,
+ "averageApexExecutionNano": 96458072,
+ "shortestApexExecutionNano": 9347327,
+ "longestApexExecutionNano": 192930291
+ },
+ {
+ "batchNumber": 7757,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137210164,
+ "shortestRoundTripNano": 71796291,
+ "longestRoundTripNano": 162999462,
+ "averageApexExecutionNano": 62117645,
+ "shortestApexExecutionNano": 7635681,
+ "longestApexExecutionNano": 110561780
+ },
+ {
+ "batchNumber": 7758,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162293236,
+ "shortestRoundTripNano": 57134963,
+ "longestRoundTripNano": 192140749,
+ "averageApexExecutionNano": 54604878,
+ "shortestApexExecutionNano": 5470128,
+ "longestApexExecutionNano": 106639318
+ },
+ {
+ "batchNumber": 7759,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 116638303,
+ "shortestRoundTripNano": 57594988,
+ "longestRoundTripNano": 143791705,
+ "averageApexExecutionNano": 51355755,
+ "shortestApexExecutionNano": 4963176,
+ "longestApexExecutionNano": 107346848
+ },
+ {
+ "batchNumber": 7760,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145366375,
+ "shortestRoundTripNano": 62493178,
+ "longestRoundTripNano": 202343859,
+ "averageApexExecutionNano": 54730069,
+ "shortestApexExecutionNano": 5212473,
+ "longestApexExecutionNano": 132306380
+ },
+ {
+ "batchNumber": 7761,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167631296,
+ "shortestRoundTripNano": 83451270,
+ "longestRoundTripNano": 193491284,
+ "averageApexExecutionNano": 73316278,
+ "shortestApexExecutionNano": 6652832,
+ "longestApexExecutionNano": 155690470
+ },
+ {
+ "batchNumber": 7762,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145599680,
+ "shortestRoundTripNano": 59438022,
+ "longestRoundTripNano": 184648601,
+ "averageApexExecutionNano": 62126400,
+ "shortestApexExecutionNano": 7949032,
+ "longestApexExecutionNano": 149123172
+ },
+ {
+ "batchNumber": 7763,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137845848,
+ "shortestRoundTripNano": 64160971,
+ "longestRoundTripNano": 164414308,
+ "averageApexExecutionNano": 61215570,
+ "shortestApexExecutionNano": 8996473,
+ "longestApexExecutionNano": 118849525
+ },
+ {
+ "batchNumber": 7764,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150098989,
+ "shortestRoundTripNano": 85292072,
+ "longestRoundTripNano": 183507798,
+ "averageApexExecutionNano": 64510222,
+ "shortestApexExecutionNano": 10364712,
+ "longestApexExecutionNano": 140639108
+ },
+ {
+ "batchNumber": 7765,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133547567,
+ "shortestRoundTripNano": 70759227,
+ "longestRoundTripNano": 162026268,
+ "averageApexExecutionNano": 46651306,
+ "shortestApexExecutionNano": 5666321,
+ "longestApexExecutionNano": 112166052
+ },
+ {
+ "batchNumber": 7766,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158366734,
+ "shortestRoundTripNano": 81306829,
+ "longestRoundTripNano": 190011871,
+ "averageApexExecutionNano": 65721165,
+ "shortestApexExecutionNano": 5985626,
+ "longestApexExecutionNano": 132278913
+ },
+ {
+ "batchNumber": 7767,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37722",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159874383,
+ "shortestRoundTripNano": 74933508,
+ "longestRoundTripNano": 189327087,
+ "averageApexExecutionNano": 53180849,
+ "shortestApexExecutionNano": 9815029,
+ "longestApexExecutionNano": 101524605
+ },
+ {
+ "batchNumber": 7768,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143035610,
+ "shortestRoundTripNano": 46342048,
+ "longestRoundTripNano": 178821571,
+ "averageApexExecutionNano": 49890495,
+ "shortestApexExecutionNano": 7442685,
+ "longestApexExecutionNano": 108323515
+ },
+ {
+ "batchNumber": 7769,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153684612,
+ "shortestRoundTripNano": 78587540,
+ "longestRoundTripNano": 197124838,
+ "averageApexExecutionNano": 76029877,
+ "shortestApexExecutionNano": 10809984,
+ "longestApexExecutionNano": 146725315
+ },
+ {
+ "batchNumber": 7770,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118929280,
+ "shortestRoundTripNano": 56992180,
+ "longestRoundTripNano": 143226293,
+ "averageApexExecutionNano": 45810475,
+ "shortestApexExecutionNano": 5522567,
+ "longestApexExecutionNano": 102946447
+ },
+ {
+ "batchNumber": 7771,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37718",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172073277,
+ "shortestRoundTripNano": 59358349,
+ "longestRoundTripNano": 202615083,
+ "averageApexExecutionNano": 74849068,
+ "shortestApexExecutionNano": 8959351,
+ "longestApexExecutionNano": 146187974
+ },
+ {
+ "batchNumber": 7772,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172127997,
+ "shortestRoundTripNano": 89879143,
+ "longestRoundTripNano": 210835657,
+ "averageApexExecutionNano": 70887879,
+ "shortestApexExecutionNano": 12807622,
+ "longestApexExecutionNano": 139043947
+ },
+ {
+ "batchNumber": 7773,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155690103,
+ "shortestRoundTripNano": 62844457,
+ "longestRoundTripNano": 196007321,
+ "averageApexExecutionNano": 56634596,
+ "shortestApexExecutionNano": 6071973,
+ "longestApexExecutionNano": 143276658
+ },
+ {
+ "batchNumber": 7774,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150925401,
+ "shortestRoundTripNano": 70547569,
+ "longestRoundTripNano": 179678766,
+ "averageApexExecutionNano": 73916678,
+ "shortestApexExecutionNano": 14427578,
+ "longestApexExecutionNano": 131390295
+ },
+ {
+ "batchNumber": 7775,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138842746,
+ "shortestRoundTripNano": 75085425,
+ "longestRoundTripNano": 166042008,
+ "averageApexExecutionNano": 50683095,
+ "shortestApexExecutionNano": 8747292,
+ "longestApexExecutionNano": 110495152
+ },
+ {
+ "batchNumber": 7776,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129577091,
+ "shortestRoundTripNano": 72910440,
+ "longestRoundTripNano": 160891009,
+ "averageApexExecutionNano": 67306715,
+ "shortestApexExecutionNano": 14007983,
+ "longestApexExecutionNano": 112112317
+ },
+ {
+ "batchNumber": 7777,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154739108,
+ "shortestRoundTripNano": 97598767,
+ "longestRoundTripNano": 178375974,
+ "averageApexExecutionNano": 57315546,
+ "shortestApexExecutionNano": 12101838,
+ "longestApexExecutionNano": 110725172
+ },
+ {
+ "batchNumber": 7778,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149675624,
+ "shortestRoundTripNano": 82616651,
+ "longestRoundTripNano": 171876038,
+ "averageApexExecutionNano": 63488757,
+ "shortestApexExecutionNano": 7308296,
+ "longestApexExecutionNano": 120540445
+ },
+ {
+ "batchNumber": 7779,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165846762,
+ "shortestRoundTripNano": 64989397,
+ "longestRoundTripNano": 197951887,
+ "averageApexExecutionNano": 65203423,
+ "shortestApexExecutionNano": 15636357,
+ "longestApexExecutionNano": 155777423
+ },
+ {
+ "batchNumber": 7780,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152020896,
+ "shortestRoundTripNano": 77217693,
+ "longestRoundTripNano": 175227432,
+ "averageApexExecutionNano": 69076924,
+ "shortestApexExecutionNano": 8400570,
+ "longestApexExecutionNano": 130825453
+ },
+ {
+ "batchNumber": 7781,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144216011,
+ "shortestRoundTripNano": 91508392,
+ "longestRoundTripNano": 174931642,
+ "averageApexExecutionNano": 61133077,
+ "shortestApexExecutionNano": 7871062,
+ "longestApexExecutionNano": 144498597
+ },
+ {
+ "batchNumber": 7782,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142443870,
+ "shortestRoundTripNano": 71757566,
+ "longestRoundTripNano": 170545431,
+ "averageApexExecutionNano": 63628098,
+ "shortestApexExecutionNano": 7816509,
+ "longestApexExecutionNano": 129870073
+ },
+ {
+ "batchNumber": 7783,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146747604,
+ "shortestRoundTripNano": 52319590,
+ "longestRoundTripNano": 187284318,
+ "averageApexExecutionNano": 43919068,
+ "shortestApexExecutionNano": 8998901,
+ "longestApexExecutionNano": 103342568
+ },
+ {
+ "batchNumber": 7784,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141266568,
+ "shortestRoundTripNano": 51411018,
+ "longestRoundTripNano": 200625299,
+ "averageApexExecutionNano": 61977431,
+ "shortestApexExecutionNano": 9472576,
+ "longestApexExecutionNano": 131045156
+ },
+ {
+ "batchNumber": 7785,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 219772131,
+ "shortestRoundTripNano": 89744132,
+ "longestRoundTripNano": 253449997,
+ "averageApexExecutionNano": 107938752,
+ "shortestApexExecutionNano": 7707424,
+ "longestApexExecutionNano": 186892422
+ },
+ {
+ "batchNumber": 7786,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139192968,
+ "shortestRoundTripNano": 90279690,
+ "longestRoundTripNano": 162361760,
+ "averageApexExecutionNano": 49908287,
+ "shortestApexExecutionNano": 7967321,
+ "longestApexExecutionNano": 104305103
+ },
+ {
+ "batchNumber": 7787,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141900370,
+ "shortestRoundTripNano": 52670042,
+ "longestRoundTripNano": 176159045,
+ "averageApexExecutionNano": 53902920,
+ "shortestApexExecutionNano": 8476743,
+ "longestApexExecutionNano": 117848774
+ },
+ {
+ "batchNumber": 7788,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37724",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126656118,
+ "shortestRoundTripNano": 54306038,
+ "longestRoundTripNano": 154156491,
+ "averageApexExecutionNano": 46945495,
+ "shortestApexExecutionNano": 7921210,
+ "longestApexExecutionNano": 108321648
+ },
+ {
+ "batchNumber": 7789,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152176035,
+ "shortestRoundTripNano": 70437629,
+ "longestRoundTripNano": 181077162,
+ "averageApexExecutionNano": 62414117,
+ "shortestApexExecutionNano": 8203945,
+ "longestApexExecutionNano": 131622330
+ },
+ {
+ "batchNumber": 7790,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37730",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162351628,
+ "shortestRoundTripNano": 52864224,
+ "longestRoundTripNano": 212242582,
+ "averageApexExecutionNano": 67004156,
+ "shortestApexExecutionNano": 9356967,
+ "longestApexExecutionNano": 131800254
+ },
+ {
+ "batchNumber": 7791,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185806778,
+ "shortestRoundTripNano": 94114323,
+ "longestRoundTripNano": 213130816,
+ "averageApexExecutionNano": 91871015,
+ "shortestApexExecutionNano": 16883332,
+ "longestApexExecutionNano": 156662274
+ },
+ {
+ "batchNumber": 7792,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153405073,
+ "shortestRoundTripNano": 55083490,
+ "longestRoundTripNano": 187341282,
+ "averageApexExecutionNano": 62614359,
+ "shortestApexExecutionNano": 10968655,
+ "longestApexExecutionNano": 144658801
+ },
+ {
+ "batchNumber": 7793,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141047352,
+ "shortestRoundTripNano": 72318627,
+ "longestRoundTripNano": 166150720,
+ "averageApexExecutionNano": 67383826,
+ "shortestApexExecutionNano": 12562813,
+ "longestApexExecutionNano": 124268827
+ },
+ {
+ "batchNumber": 7794,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171992925,
+ "shortestRoundTripNano": 70975138,
+ "longestRoundTripNano": 197593559,
+ "averageApexExecutionNano": 79303480,
+ "shortestApexExecutionNano": 14182158,
+ "longestApexExecutionNano": 145377773
+ },
+ {
+ "batchNumber": 7795,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137062980,
+ "shortestRoundTripNano": 65052162,
+ "longestRoundTripNano": 169416709,
+ "averageApexExecutionNano": 53939449,
+ "shortestApexExecutionNano": 10280455,
+ "longestApexExecutionNano": 126245477
+ },
+ {
+ "batchNumber": 7796,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157763662,
+ "shortestRoundTripNano": 46856862,
+ "longestRoundTripNano": 187872572,
+ "averageApexExecutionNano": 69131453,
+ "shortestApexExecutionNano": 9577265,
+ "longestApexExecutionNano": 142051788
+ },
+ {
+ "batchNumber": 7797,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146083957,
+ "shortestRoundTripNano": 74254576,
+ "longestRoundTripNano": 172404806,
+ "averageApexExecutionNano": 54976891,
+ "shortestApexExecutionNano": 7800039,
+ "longestApexExecutionNano": 117961244
+ },
+ {
+ "batchNumber": 7798,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150697691,
+ "shortestRoundTripNano": 80875124,
+ "longestRoundTripNano": 177520640,
+ "averageApexExecutionNano": 65392286,
+ "shortestApexExecutionNano": 10618104,
+ "longestApexExecutionNano": 132017693
+ },
+ {
+ "batchNumber": 7799,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150723249,
+ "shortestRoundTripNano": 67062684,
+ "longestRoundTripNano": 178344753,
+ "averageApexExecutionNano": 51995671,
+ "shortestApexExecutionNano": 5342646,
+ "longestApexExecutionNano": 106258465
+ },
+ {
+ "batchNumber": 7800,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143796987,
+ "shortestRoundTripNano": 35076310,
+ "longestRoundTripNano": 179265852,
+ "averageApexExecutionNano": 71669240,
+ "shortestApexExecutionNano": 7094888,
+ "longestApexExecutionNano": 129779930
+ },
+ {
+ "batchNumber": 7801,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125036873,
+ "shortestRoundTripNano": 58548029,
+ "longestRoundTripNano": 150700392,
+ "averageApexExecutionNano": 49680572,
+ "shortestApexExecutionNano": 6693522,
+ "longestApexExecutionNano": 112560869
+ },
+ {
+ "batchNumber": 7802,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37736",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140751428,
+ "shortestRoundTripNano": 56406753,
+ "longestRoundTripNano": 166771070,
+ "averageApexExecutionNano": 53227088,
+ "shortestApexExecutionNano": 6921855,
+ "longestApexExecutionNano": 111860006
+ },
+ {
+ "batchNumber": 7803,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154906694,
+ "shortestRoundTripNano": 75319131,
+ "longestRoundTripNano": 182273089,
+ "averageApexExecutionNano": 63424446,
+ "shortestApexExecutionNano": 11199716,
+ "longestApexExecutionNano": 117268990
+ },
+ {
+ "batchNumber": 7804,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148819705,
+ "shortestRoundTripNano": 71517140,
+ "longestRoundTripNano": 175056162,
+ "averageApexExecutionNano": 58309996,
+ "shortestApexExecutionNano": 8892435,
+ "longestApexExecutionNano": 132197033
+ },
+ {
+ "batchNumber": 7805,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148988121,
+ "shortestRoundTripNano": 81525732,
+ "longestRoundTripNano": 175403776,
+ "averageApexExecutionNano": 62621649,
+ "shortestApexExecutionNano": 9674590,
+ "longestApexExecutionNano": 113803898
+ },
+ {
+ "batchNumber": 7806,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129560837,
+ "shortestRoundTripNano": 66067241,
+ "longestRoundTripNano": 156643527,
+ "averageApexExecutionNano": 60342682,
+ "shortestApexExecutionNano": 7377251,
+ "longestApexExecutionNano": 111187169
+ },
+ {
+ "batchNumber": 7807,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135145555,
+ "shortestRoundTripNano": 52540531,
+ "longestRoundTripNano": 168614797,
+ "averageApexExecutionNano": 55868363,
+ "shortestApexExecutionNano": 9417754,
+ "longestApexExecutionNano": 133315549
+ },
+ {
+ "batchNumber": 7808,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 231136132,
+ "shortestRoundTripNano": 40585519,
+ "longestRoundTripNano": 265013873,
+ "averageApexExecutionNano": 123971498,
+ "shortestApexExecutionNano": 6472225,
+ "longestApexExecutionNano": 216346135
+ },
+ {
+ "batchNumber": 7809,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138585628,
+ "shortestRoundTripNano": 51738534,
+ "longestRoundTripNano": 164982117,
+ "averageApexExecutionNano": 51132593,
+ "shortestApexExecutionNano": 12121525,
+ "longestApexExecutionNano": 103755752
+ },
+ {
+ "batchNumber": 7810,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37738",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153934277,
+ "shortestRoundTripNano": 76490987,
+ "longestRoundTripNano": 184577091,
+ "averageApexExecutionNano": 67090453,
+ "shortestApexExecutionNano": 8455222,
+ "longestApexExecutionNano": 133871947
+ },
+ {
+ "batchNumber": 7811,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37732",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166789858,
+ "shortestRoundTripNano": 52071233,
+ "longestRoundTripNano": 194666999,
+ "averageApexExecutionNano": 71884594,
+ "shortestApexExecutionNano": 9069716,
+ "longestApexExecutionNano": 154916706
+ },
+ {
+ "batchNumber": 7812,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136587991,
+ "shortestRoundTripNano": 71912532,
+ "longestRoundTripNano": 166419095,
+ "averageApexExecutionNano": 52257121,
+ "shortestApexExecutionNano": 7222210,
+ "longestApexExecutionNano": 105043305
+ },
+ {
+ "batchNumber": 7813,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159938409,
+ "shortestRoundTripNano": 54140622,
+ "longestRoundTripNano": 186856118,
+ "averageApexExecutionNano": 65910142,
+ "shortestApexExecutionNano": 13320800,
+ "longestApexExecutionNano": 138272331
+ },
+ {
+ "batchNumber": 7814,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37742",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126526486,
+ "shortestRoundTripNano": 54957217,
+ "longestRoundTripNano": 152006691,
+ "averageApexExecutionNano": 55453498,
+ "shortestApexExecutionNano": 18586644,
+ "longestApexExecutionNano": 108477260
+ },
+ {
+ "batchNumber": 7815,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148161765,
+ "shortestRoundTripNano": 58565774,
+ "longestRoundTripNano": 179057372,
+ "averageApexExecutionNano": 55728621,
+ "shortestApexExecutionNano": 6803609,
+ "longestApexExecutionNano": 106930989
+ },
+ {
+ "batchNumber": 7816,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137337016,
+ "shortestRoundTripNano": 54857543,
+ "longestRoundTripNano": 167097163,
+ "averageApexExecutionNano": 57174328,
+ "shortestApexExecutionNano": 11447732,
+ "longestApexExecutionNano": 98599704
+ },
+ {
+ "batchNumber": 7817,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135425976,
+ "shortestRoundTripNano": 33543158,
+ "longestRoundTripNano": 168929077,
+ "averageApexExecutionNano": 59433381,
+ "shortestApexExecutionNano": 8508365,
+ "longestApexExecutionNano": 122730306
+ },
+ {
+ "batchNumber": 7818,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150814280,
+ "shortestRoundTripNano": 65683831,
+ "longestRoundTripNano": 185156665,
+ "averageApexExecutionNano": 60175404,
+ "shortestApexExecutionNano": 6450244,
+ "longestApexExecutionNano": 110806193
+ },
+ {
+ "batchNumber": 7819,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145123205,
+ "shortestRoundTripNano": 71300870,
+ "longestRoundTripNano": 173698834,
+ "averageApexExecutionNano": 54065520,
+ "shortestApexExecutionNano": 9527390,
+ "longestApexExecutionNano": 125167314
+ },
+ {
+ "batchNumber": 7820,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131432859,
+ "shortestRoundTripNano": 65647736,
+ "longestRoundTripNano": 158372337,
+ "averageApexExecutionNano": 58495993,
+ "shortestApexExecutionNano": 8336497,
+ "longestApexExecutionNano": 115907397
+ },
+ {
+ "batchNumber": 7821,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162909365,
+ "shortestRoundTripNano": 89912188,
+ "longestRoundTripNano": 188433970,
+ "averageApexExecutionNano": 71242802,
+ "shortestApexExecutionNano": 7655331,
+ "longestApexExecutionNano": 135683028
+ },
+ {
+ "batchNumber": 7822,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138816579,
+ "shortestRoundTripNano": 56861195,
+ "longestRoundTripNano": 166659236,
+ "averageApexExecutionNano": 57501502,
+ "shortestApexExecutionNano": 8877666,
+ "longestApexExecutionNano": 126754020
+ },
+ {
+ "batchNumber": 7823,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135988136,
+ "shortestRoundTripNano": 71335174,
+ "longestRoundTripNano": 164896575,
+ "averageApexExecutionNano": 69096629,
+ "shortestApexExecutionNano": 7813712,
+ "longestApexExecutionNano": 127226428
+ },
+ {
+ "batchNumber": 7824,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152643194,
+ "shortestRoundTripNano": 65419208,
+ "longestRoundTripNano": 185596236,
+ "averageApexExecutionNano": 64351176,
+ "shortestApexExecutionNano": 11519493,
+ "longestApexExecutionNano": 133869384
+ },
+ {
+ "batchNumber": 7825,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147000640,
+ "shortestRoundTripNano": 76219241,
+ "longestRoundTripNano": 176407700,
+ "averageApexExecutionNano": 72210082,
+ "shortestApexExecutionNano": 8802462,
+ "longestApexExecutionNano": 125397657
+ },
+ {
+ "batchNumber": 7826,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149774385,
+ "shortestRoundTripNano": 57383154,
+ "longestRoundTripNano": 182992759,
+ "averageApexExecutionNano": 76681077,
+ "shortestApexExecutionNano": 10593847,
+ "longestApexExecutionNano": 127424911
+ },
+ {
+ "batchNumber": 7827,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147824541,
+ "shortestRoundTripNano": 30247058,
+ "longestRoundTripNano": 178321183,
+ "averageApexExecutionNano": 69912675,
+ "shortestApexExecutionNano": 10882951,
+ "longestApexExecutionNano": 130100833
+ },
+ {
+ "batchNumber": 7828,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138177403,
+ "shortestRoundTripNano": 65038652,
+ "longestRoundTripNano": 165961954,
+ "averageApexExecutionNano": 53613568,
+ "shortestApexExecutionNano": 14717125,
+ "longestApexExecutionNano": 109696112
+ },
+ {
+ "batchNumber": 7829,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136229619,
+ "shortestRoundTripNano": 53184178,
+ "longestRoundTripNano": 165518151,
+ "averageApexExecutionNano": 52638474,
+ "shortestApexExecutionNano": 9387479,
+ "longestApexExecutionNano": 106645264
+ },
+ {
+ "batchNumber": 7830,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37746",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153432791,
+ "shortestRoundTripNano": 55349063,
+ "longestRoundTripNano": 184399283,
+ "averageApexExecutionNano": 54045131,
+ "shortestApexExecutionNano": 6249212,
+ "longestApexExecutionNano": 113251385
+ },
+ {
+ "batchNumber": 7831,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130413120,
+ "shortestRoundTripNano": 47533732,
+ "longestRoundTripNano": 162286365,
+ "averageApexExecutionNano": 59679703,
+ "shortestApexExecutionNano": 11030764,
+ "longestApexExecutionNano": 102114664
+ },
+ {
+ "batchNumber": 7832,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37740",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150134744,
+ "shortestRoundTripNano": 66481789,
+ "longestRoundTripNano": 185119616,
+ "averageApexExecutionNano": 81416878,
+ "shortestApexExecutionNano": 7900001,
+ "longestApexExecutionNano": 135497829
+ },
+ {
+ "batchNumber": 7833,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142711048,
+ "shortestRoundTripNano": 64209858,
+ "longestRoundTripNano": 172093334,
+ "averageApexExecutionNano": 49364359,
+ "shortestApexExecutionNano": 9189485,
+ "longestApexExecutionNano": 129603478
+ },
+ {
+ "batchNumber": 7834,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147681052,
+ "shortestRoundTripNano": 59204762,
+ "longestRoundTripNano": 175167223,
+ "averageApexExecutionNano": 66036894,
+ "shortestApexExecutionNano": 9784065,
+ "longestApexExecutionNano": 131751190
+ },
+ {
+ "batchNumber": 7835,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143911665,
+ "shortestRoundTripNano": 56720530,
+ "longestRoundTripNano": 171898499,
+ "averageApexExecutionNano": 68459007,
+ "shortestApexExecutionNano": 16990071,
+ "longestApexExecutionNano": 120809009
+ },
+ {
+ "batchNumber": 7836,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37750",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142808545,
+ "shortestRoundTripNano": 52110274,
+ "longestRoundTripNano": 179296631,
+ "averageApexExecutionNano": 65436473,
+ "shortestApexExecutionNano": 6894158,
+ "longestApexExecutionNano": 145254707
+ },
+ {
+ "batchNumber": 7837,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128961212,
+ "shortestRoundTripNano": 65123313,
+ "longestRoundTripNano": 159318457,
+ "averageApexExecutionNano": 55482388,
+ "shortestApexExecutionNano": 9271070,
+ "longestApexExecutionNano": 116376726
+ },
+ {
+ "batchNumber": 7838,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148689827,
+ "shortestRoundTripNano": 78978615,
+ "longestRoundTripNano": 179581390,
+ "averageApexExecutionNano": 78240182,
+ "shortestApexExecutionNano": 11534376,
+ "longestApexExecutionNano": 135915078
+ },
+ {
+ "batchNumber": 7839,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146287214,
+ "shortestRoundTripNano": 68508561,
+ "longestRoundTripNano": 184426617,
+ "averageApexExecutionNano": 59375169,
+ "shortestApexExecutionNano": 7407554,
+ "longestApexExecutionNano": 130904636
+ },
+ {
+ "batchNumber": 7840,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151567413,
+ "shortestRoundTripNano": 53234459,
+ "longestRoundTripNano": 179928143,
+ "averageApexExecutionNano": 66999701,
+ "shortestApexExecutionNano": 18833458,
+ "longestApexExecutionNano": 137070720
+ },
+ {
+ "batchNumber": 7841,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144368073,
+ "shortestRoundTripNano": 56993207,
+ "longestRoundTripNano": 170367742,
+ "averageApexExecutionNano": 65213065,
+ "shortestApexExecutionNano": 7828050,
+ "longestApexExecutionNano": 117624840
+ },
+ {
+ "batchNumber": 7842,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148407017,
+ "shortestRoundTripNano": 67896464,
+ "longestRoundTripNano": 190349414,
+ "averageApexExecutionNano": 63172784,
+ "shortestApexExecutionNano": 7511967,
+ "longestApexExecutionNano": 141376746
+ },
+ {
+ "batchNumber": 7843,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145055075,
+ "shortestRoundTripNano": 85756260,
+ "longestRoundTripNano": 172484012,
+ "averageApexExecutionNano": 63051120,
+ "shortestApexExecutionNano": 6995756,
+ "longestApexExecutionNano": 127498390
+ },
+ {
+ "batchNumber": 7844,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150479651,
+ "shortestRoundTripNano": 80151882,
+ "longestRoundTripNano": 179791384,
+ "averageApexExecutionNano": 63538373,
+ "shortestApexExecutionNano": 9822424,
+ "longestApexExecutionNano": 116327342
+ },
+ {
+ "batchNumber": 7845,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157633308,
+ "shortestRoundTripNano": 46415580,
+ "longestRoundTripNano": 191048077,
+ "averageApexExecutionNano": 75781180,
+ "shortestApexExecutionNano": 14034713,
+ "longestApexExecutionNano": 137780618
+ },
+ {
+ "batchNumber": 7846,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142512182,
+ "shortestRoundTripNano": 54300155,
+ "longestRoundTripNano": 179489018,
+ "averageApexExecutionNano": 60033361,
+ "shortestApexExecutionNano": 7612952,
+ "longestApexExecutionNano": 119986151
+ },
+ {
+ "batchNumber": 7847,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37748",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158103632,
+ "shortestRoundTripNano": 59514238,
+ "longestRoundTripNano": 191078080,
+ "averageApexExecutionNano": 64344182,
+ "shortestApexExecutionNano": 8716566,
+ "longestApexExecutionNano": 150662393
+ },
+ {
+ "batchNumber": 7848,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151267156,
+ "shortestRoundTripNano": 68078407,
+ "longestRoundTripNano": 179995766,
+ "averageApexExecutionNano": 66773915,
+ "shortestApexExecutionNano": 8960777,
+ "longestApexExecutionNano": 115289350
+ },
+ {
+ "batchNumber": 7849,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148847473,
+ "shortestRoundTripNano": 89034269,
+ "longestRoundTripNano": 172743561,
+ "averageApexExecutionNano": 74592425,
+ "shortestApexExecutionNano": 21017156,
+ "longestApexExecutionNano": 130584460
+ },
+ {
+ "batchNumber": 7850,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125726313,
+ "shortestRoundTripNano": 67281448,
+ "longestRoundTripNano": 153368407,
+ "averageApexExecutionNano": 59521374,
+ "shortestApexExecutionNano": 8070805,
+ "longestApexExecutionNano": 113084760
+ },
+ {
+ "batchNumber": 7851,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148008013,
+ "shortestRoundTripNano": 75741246,
+ "longestRoundTripNano": 180362343,
+ "averageApexExecutionNano": 59654189,
+ "shortestApexExecutionNano": 23918919,
+ "longestApexExecutionNano": 110607620
+ },
+ {
+ "batchNumber": 7852,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154982867,
+ "shortestRoundTripNano": 62969712,
+ "longestRoundTripNano": 185609362,
+ "averageApexExecutionNano": 78301359,
+ "shortestApexExecutionNano": 12046674,
+ "longestApexExecutionNano": 135507648
+ },
+ {
+ "batchNumber": 7853,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140120853,
+ "shortestRoundTripNano": 75121457,
+ "longestRoundTripNano": 169323380,
+ "averageApexExecutionNano": 61048738,
+ "shortestApexExecutionNano": 8985947,
+ "longestApexExecutionNano": 118970594
+ },
+ {
+ "batchNumber": 7854,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37756",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152479523,
+ "shortestRoundTripNano": 64233300,
+ "longestRoundTripNano": 183900360,
+ "averageApexExecutionNano": 78761603,
+ "shortestApexExecutionNano": 8966332,
+ "longestApexExecutionNano": 146803219
+ },
+ {
+ "batchNumber": 7855,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138183400,
+ "shortestRoundTripNano": 70787483,
+ "longestRoundTripNano": 165437391,
+ "averageApexExecutionNano": 63178538,
+ "shortestApexExecutionNano": 7834312,
+ "longestApexExecutionNano": 124467182
+ },
+ {
+ "batchNumber": 7856,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142867874,
+ "shortestRoundTripNano": 59114671,
+ "longestRoundTripNano": 168836518,
+ "averageApexExecutionNano": 58074043,
+ "shortestApexExecutionNano": 14850722,
+ "longestApexExecutionNano": 102852307
+ },
+ {
+ "batchNumber": 7857,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128650658,
+ "shortestRoundTripNano": 52192147,
+ "longestRoundTripNano": 159233705,
+ "averageApexExecutionNano": 53639941,
+ "shortestApexExecutionNano": 11910596,
+ "longestApexExecutionNano": 94873010
+ },
+ {
+ "batchNumber": 7858,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124425565,
+ "shortestRoundTripNano": 51497777,
+ "longestRoundTripNano": 150929037,
+ "averageApexExecutionNano": 46006924,
+ "shortestApexExecutionNano": 7194370,
+ "longestApexExecutionNano": 104215777
+ },
+ {
+ "batchNumber": 7859,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37754",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161189992,
+ "shortestRoundTripNano": 54781780,
+ "longestRoundTripNano": 196848024,
+ "averageApexExecutionNano": 68977005,
+ "shortestApexExecutionNano": 8480525,
+ "longestApexExecutionNano": 132188572
+ },
+ {
+ "batchNumber": 7860,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127281338,
+ "shortestRoundTripNano": 33222071,
+ "longestRoundTripNano": 166574577,
+ "averageApexExecutionNano": 48043673,
+ "shortestApexExecutionNano": 7613332,
+ "longestApexExecutionNano": 82643143
+ },
+ {
+ "batchNumber": 7861,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136692330,
+ "shortestRoundTripNano": 68601972,
+ "longestRoundTripNano": 160083169,
+ "averageApexExecutionNano": 57916747,
+ "shortestApexExecutionNano": 10098599,
+ "longestApexExecutionNano": 111239857
+ },
+ {
+ "batchNumber": 7862,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37758",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149787291,
+ "shortestRoundTripNano": 50368156,
+ "longestRoundTripNano": 181153477,
+ "averageApexExecutionNano": 55026892,
+ "shortestApexExecutionNano": 6154295,
+ "longestApexExecutionNano": 134181487
+ },
+ {
+ "batchNumber": 7863,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128053898,
+ "shortestRoundTripNano": 69063314,
+ "longestRoundTripNano": 158932638,
+ "averageApexExecutionNano": 56946304,
+ "shortestApexExecutionNano": 10732709,
+ "longestApexExecutionNano": 111107957
+ },
+ {
+ "batchNumber": 7864,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154184188,
+ "shortestRoundTripNano": 78313948,
+ "longestRoundTripNano": 179370273,
+ "averageApexExecutionNano": 63384774,
+ "shortestApexExecutionNano": 12008995,
+ "longestApexExecutionNano": 128675935
+ },
+ {
+ "batchNumber": 7865,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141359171,
+ "shortestRoundTripNano": 67647245,
+ "longestRoundTripNano": 169311103,
+ "averageApexExecutionNano": 56755191,
+ "shortestApexExecutionNano": 6758602,
+ "longestApexExecutionNano": 113469881
+ },
+ {
+ "batchNumber": 7866,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 115395690,
+ "shortestRoundTripNano": 58349058,
+ "longestRoundTripNano": 148385817,
+ "averageApexExecutionNano": 56505759,
+ "shortestApexExecutionNano": 9606387,
+ "longestApexExecutionNano": 102110103
+ },
+ {
+ "batchNumber": 7867,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148578027,
+ "shortestRoundTripNano": 74471580,
+ "longestRoundTripNano": 178084490,
+ "averageApexExecutionNano": 56042794,
+ "shortestApexExecutionNano": 9981066,
+ "longestApexExecutionNano": 112333191
+ },
+ {
+ "batchNumber": 7868,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37760",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148535492,
+ "shortestRoundTripNano": 44501442,
+ "longestRoundTripNano": 178439514,
+ "averageApexExecutionNano": 78983548,
+ "shortestApexExecutionNano": 13569903,
+ "longestApexExecutionNano": 133776033
+ },
+ {
+ "batchNumber": 7869,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132597407,
+ "shortestRoundTripNano": 48765893,
+ "longestRoundTripNano": 161928602,
+ "averageApexExecutionNano": 41812241,
+ "shortestApexExecutionNano": 7677848,
+ "longestApexExecutionNano": 106163051
+ },
+ {
+ "batchNumber": 7870,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162181227,
+ "shortestRoundTripNano": 68903628,
+ "longestRoundTripNano": 192858580,
+ "averageApexExecutionNano": 63378025,
+ "shortestApexExecutionNano": 7999074,
+ "longestApexExecutionNano": 132713427
+ },
+ {
+ "batchNumber": 7871,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137737057,
+ "shortestRoundTripNano": 67775853,
+ "longestRoundTripNano": 161909252,
+ "averageApexExecutionNano": 60381765,
+ "shortestApexExecutionNano": 8208648,
+ "longestApexExecutionNano": 116217639
+ },
+ {
+ "batchNumber": 7872,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139715410,
+ "shortestRoundTripNano": 50243121,
+ "longestRoundTripNano": 165771372,
+ "averageApexExecutionNano": 47233415,
+ "shortestApexExecutionNano": 7405579,
+ "longestApexExecutionNano": 105875201
+ },
+ {
+ "batchNumber": 7873,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148215882,
+ "shortestRoundTripNano": 62854106,
+ "longestRoundTripNano": 186399789,
+ "averageApexExecutionNano": 66001541,
+ "shortestApexExecutionNano": 7750268,
+ "longestApexExecutionNano": 138049982
+ },
+ {
+ "batchNumber": 7874,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181115770,
+ "shortestRoundTripNano": 98624787,
+ "longestRoundTripNano": 209623257,
+ "averageApexExecutionNano": 85864332,
+ "shortestApexExecutionNano": 23004955,
+ "longestApexExecutionNano": 152363699
+ },
+ {
+ "batchNumber": 7875,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154522244,
+ "shortestRoundTripNano": 63720091,
+ "longestRoundTripNano": 181122711,
+ "averageApexExecutionNano": 68911908,
+ "shortestApexExecutionNano": 7783836,
+ "longestApexExecutionNano": 120659262
+ },
+ {
+ "batchNumber": 7876,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157550091,
+ "shortestRoundTripNano": 88269708,
+ "longestRoundTripNano": 189748190,
+ "averageApexExecutionNano": 85442624,
+ "shortestApexExecutionNano": 20504266,
+ "longestApexExecutionNano": 135776246
+ },
+ {
+ "batchNumber": 7877,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145609972,
+ "shortestRoundTripNano": 71073653,
+ "longestRoundTripNano": 169890188,
+ "averageApexExecutionNano": 54765034,
+ "shortestApexExecutionNano": 9472646,
+ "longestApexExecutionNano": 125527031
+ },
+ {
+ "batchNumber": 7878,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146860936,
+ "shortestRoundTripNano": 62269876,
+ "longestRoundTripNano": 178639599,
+ "averageApexExecutionNano": 59783421,
+ "shortestApexExecutionNano": 8355618,
+ "longestApexExecutionNano": 117856931
+ },
+ {
+ "batchNumber": 7879,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154196796,
+ "shortestRoundTripNano": 46202470,
+ "longestRoundTripNano": 184337770,
+ "averageApexExecutionNano": 67714639,
+ "shortestApexExecutionNano": 7964664,
+ "longestApexExecutionNano": 133932461
+ },
+ {
+ "batchNumber": 7880,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151328880,
+ "shortestRoundTripNano": 70888323,
+ "longestRoundTripNano": 186576428,
+ "averageApexExecutionNano": 66569213,
+ "shortestApexExecutionNano": 9598169,
+ "longestApexExecutionNano": 121472790
+ },
+ {
+ "batchNumber": 7881,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37762",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168099015,
+ "shortestRoundTripNano": 55095278,
+ "longestRoundTripNano": 202647256,
+ "averageApexExecutionNano": 79462742,
+ "shortestApexExecutionNano": 12873470,
+ "longestApexExecutionNano": 136708959
+ },
+ {
+ "batchNumber": 7882,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157078913,
+ "shortestRoundTripNano": 76914156,
+ "longestRoundTripNano": 182491891,
+ "averageApexExecutionNano": 63156751,
+ "shortestApexExecutionNano": 5914369,
+ "longestApexExecutionNano": 141766261
+ },
+ {
+ "batchNumber": 7883,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162445361,
+ "shortestRoundTripNano": 51153424,
+ "longestRoundTripNano": 203155186,
+ "averageApexExecutionNano": 63255881,
+ "shortestApexExecutionNano": 8434251,
+ "longestApexExecutionNano": 141861348
+ },
+ {
+ "batchNumber": 7884,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132491109,
+ "shortestRoundTripNano": 73806025,
+ "longestRoundTripNano": 162025194,
+ "averageApexExecutionNano": 55222409,
+ "shortestApexExecutionNano": 6575102,
+ "longestApexExecutionNano": 120312157
+ },
+ {
+ "batchNumber": 7885,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37770",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151158315,
+ "shortestRoundTripNano": 56422103,
+ "longestRoundTripNano": 175953844,
+ "averageApexExecutionNano": 67522367,
+ "shortestApexExecutionNano": 9134289,
+ "longestApexExecutionNano": 112429013
+ },
+ {
+ "batchNumber": 7886,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149572933,
+ "shortestRoundTripNano": 67890068,
+ "longestRoundTripNano": 176993841,
+ "averageApexExecutionNano": 66055526,
+ "shortestApexExecutionNano": 6770864,
+ "longestApexExecutionNano": 139254682
+ },
+ {
+ "batchNumber": 7887,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127582289,
+ "shortestRoundTripNano": 62335803,
+ "longestRoundTripNano": 155073482,
+ "averageApexExecutionNano": 52126242,
+ "shortestApexExecutionNano": 5228834,
+ "longestApexExecutionNano": 103222632
+ },
+ {
+ "batchNumber": 7888,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152433933,
+ "shortestRoundTripNano": 60158994,
+ "longestRoundTripNano": 180359155,
+ "averageApexExecutionNano": 54591657,
+ "shortestApexExecutionNano": 7068495,
+ "longestApexExecutionNano": 117632156
+ },
+ {
+ "batchNumber": 7889,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151365095,
+ "shortestRoundTripNano": 70971643,
+ "longestRoundTripNano": 177052037,
+ "averageApexExecutionNano": 78949400,
+ "shortestApexExecutionNano": 19835028,
+ "longestApexExecutionNano": 132653047
+ },
+ {
+ "batchNumber": 7890,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131901581,
+ "shortestRoundTripNano": 58948351,
+ "longestRoundTripNano": 162386992,
+ "averageApexExecutionNano": 40291527,
+ "shortestApexExecutionNano": 6659406,
+ "longestApexExecutionNano": 119915985
+ },
+ {
+ "batchNumber": 7891,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37768",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148134745,
+ "shortestRoundTripNano": 39146975,
+ "longestRoundTripNano": 182337297,
+ "averageApexExecutionNano": 65039979,
+ "shortestApexExecutionNano": 5367402,
+ "longestApexExecutionNano": 128343959
+ },
+ {
+ "batchNumber": 7892,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144086660,
+ "shortestRoundTripNano": 80548396,
+ "longestRoundTripNano": 171757446,
+ "averageApexExecutionNano": 68788631,
+ "shortestApexExecutionNano": 6436114,
+ "longestApexExecutionNano": 129382658
+ },
+ {
+ "batchNumber": 7893,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146915953,
+ "shortestRoundTripNano": 72589498,
+ "longestRoundTripNano": 177430156,
+ "averageApexExecutionNano": 67846082,
+ "shortestApexExecutionNano": 15086692,
+ "longestApexExecutionNano": 122843841
+ },
+ {
+ "batchNumber": 7894,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161175326,
+ "shortestRoundTripNano": 87856323,
+ "longestRoundTripNano": 196184531,
+ "averageApexExecutionNano": 72347798,
+ "shortestApexExecutionNano": 8568878,
+ "longestApexExecutionNano": 156931675
+ },
+ {
+ "batchNumber": 7895,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146532215,
+ "shortestRoundTripNano": 75136991,
+ "longestRoundTripNano": 169665319,
+ "averageApexExecutionNano": 65417549,
+ "shortestApexExecutionNano": 8605785,
+ "longestApexExecutionNano": 114906455
+ },
+ {
+ "batchNumber": 7896,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37772",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160116467,
+ "shortestRoundTripNano": 60293744,
+ "longestRoundTripNano": 191618546,
+ "averageApexExecutionNano": 64192149,
+ "shortestApexExecutionNano": 11239663,
+ "longestApexExecutionNano": 126001515
+ },
+ {
+ "batchNumber": 7897,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154509295,
+ "shortestRoundTripNano": 57545951,
+ "longestRoundTripNano": 190674267,
+ "averageApexExecutionNano": 77487889,
+ "shortestApexExecutionNano": 10278946,
+ "longestApexExecutionNano": 142030820
+ },
+ {
+ "batchNumber": 7898,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173390761,
+ "shortestRoundTripNano": 93560256,
+ "longestRoundTripNano": 202516635,
+ "averageApexExecutionNano": 76676472,
+ "shortestApexExecutionNano": 9681691,
+ "longestApexExecutionNano": 157466448
+ },
+ {
+ "batchNumber": 7899,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154779624,
+ "shortestRoundTripNano": 49878494,
+ "longestRoundTripNano": 188286251,
+ "averageApexExecutionNano": 65012752,
+ "shortestApexExecutionNano": 12700391,
+ "longestApexExecutionNano": 140641631
+ },
+ {
+ "batchNumber": 7900,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160300015,
+ "shortestRoundTripNano": 78269988,
+ "longestRoundTripNano": 189841320,
+ "averageApexExecutionNano": 73217530,
+ "shortestApexExecutionNano": 6955140,
+ "longestApexExecutionNano": 138310464
+ },
+ {
+ "batchNumber": 7901,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142520337,
+ "shortestRoundTripNano": 56940030,
+ "longestRoundTripNano": 168759815,
+ "averageApexExecutionNano": 61122969,
+ "shortestApexExecutionNano": 13256432,
+ "longestApexExecutionNano": 126537224
+ },
+ {
+ "batchNumber": 7902,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151133760,
+ "shortestRoundTripNano": 72091461,
+ "longestRoundTripNano": 179842619,
+ "averageApexExecutionNano": 71496184,
+ "shortestApexExecutionNano": 12885962,
+ "longestApexExecutionNano": 136927953
+ },
+ {
+ "batchNumber": 7903,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147449980,
+ "shortestRoundTripNano": 57579120,
+ "longestRoundTripNano": 186856715,
+ "averageApexExecutionNano": 63832729,
+ "shortestApexExecutionNano": 14119172,
+ "longestApexExecutionNano": 142182513
+ },
+ {
+ "batchNumber": 7904,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148317416,
+ "shortestRoundTripNano": 61051299,
+ "longestRoundTripNano": 186085708,
+ "averageApexExecutionNano": 62145007,
+ "shortestApexExecutionNano": 8203679,
+ "longestApexExecutionNano": 130439374
+ },
+ {
+ "batchNumber": 7905,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145227796,
+ "shortestRoundTripNano": 68540937,
+ "longestRoundTripNano": 174863003,
+ "averageApexExecutionNano": 62561114,
+ "shortestApexExecutionNano": 7648407,
+ "longestApexExecutionNano": 116518407
+ },
+ {
+ "batchNumber": 7906,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137932731,
+ "shortestRoundTripNano": 76440578,
+ "longestRoundTripNano": 168325997,
+ "averageApexExecutionNano": 69611986,
+ "shortestApexExecutionNano": 6853052,
+ "longestApexExecutionNano": 129544658
+ },
+ {
+ "batchNumber": 7907,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158234248,
+ "shortestRoundTripNano": 56430373,
+ "longestRoundTripNano": 216188645,
+ "averageApexExecutionNano": 70999281,
+ "shortestApexExecutionNano": 12829895,
+ "longestApexExecutionNano": 144535407
+ },
+ {
+ "batchNumber": 7908,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157684155,
+ "shortestRoundTripNano": 47653560,
+ "longestRoundTripNano": 185718959,
+ "averageApexExecutionNano": 75793196,
+ "shortestApexExecutionNano": 12338426,
+ "longestApexExecutionNano": 145829731
+ },
+ {
+ "batchNumber": 7909,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130810616,
+ "shortestRoundTripNano": 72566307,
+ "longestRoundTripNano": 158059740,
+ "averageApexExecutionNano": 51712360,
+ "shortestApexExecutionNano": 6312790,
+ "longestApexExecutionNano": 113708674
+ },
+ {
+ "batchNumber": 7910,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 213358983,
+ "shortestRoundTripNano": 58169670,
+ "longestRoundTripNano": 244051653,
+ "averageApexExecutionNano": 116407326,
+ "shortestApexExecutionNano": 10746660,
+ "longestApexExecutionNano": 191949484
+ },
+ {
+ "batchNumber": 7911,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132882466,
+ "shortestRoundTripNano": 73715187,
+ "longestRoundTripNano": 162501734,
+ "averageApexExecutionNano": 63660718,
+ "shortestApexExecutionNano": 5798536,
+ "longestApexExecutionNano": 126112191
+ },
+ {
+ "batchNumber": 7912,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144572582,
+ "shortestRoundTripNano": 75092395,
+ "longestRoundTripNano": 175486688,
+ "averageApexExecutionNano": 68556478,
+ "shortestApexExecutionNano": 10833284,
+ "longestApexExecutionNano": 120629864
+ },
+ {
+ "batchNumber": 7913,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169452287,
+ "shortestRoundTripNano": 70950578,
+ "longestRoundTripNano": 202062568,
+ "averageApexExecutionNano": 68697588,
+ "shortestApexExecutionNano": 8292362,
+ "longestApexExecutionNano": 133385612
+ },
+ {
+ "batchNumber": 7914,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37774",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128279601,
+ "shortestRoundTripNano": 48118492,
+ "longestRoundTripNano": 160159241,
+ "averageApexExecutionNano": 62639390,
+ "shortestApexExecutionNano": 7048885,
+ "longestApexExecutionNano": 119916240
+ },
+ {
+ "batchNumber": 7915,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37780",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157780569,
+ "shortestRoundTripNano": 56524405,
+ "longestRoundTripNano": 184198643,
+ "averageApexExecutionNano": 73564452,
+ "shortestApexExecutionNano": 6213454,
+ "longestApexExecutionNano": 146474660
+ },
+ {
+ "batchNumber": 7916,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117714676,
+ "shortestRoundTripNano": 52271655,
+ "longestRoundTripNano": 140242023,
+ "averageApexExecutionNano": 47519863,
+ "shortestApexExecutionNano": 7489811,
+ "longestApexExecutionNano": 97272436
+ },
+ {
+ "batchNumber": 7917,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133176749,
+ "shortestRoundTripNano": 60728240,
+ "longestRoundTripNano": 158429691,
+ "averageApexExecutionNano": 61449661,
+ "shortestApexExecutionNano": 5866638,
+ "longestApexExecutionNano": 108594331
+ },
+ {
+ "batchNumber": 7918,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122056100,
+ "shortestRoundTripNano": 33095357,
+ "longestRoundTripNano": 156988399,
+ "averageApexExecutionNano": 45512076,
+ "shortestApexExecutionNano": 6533081,
+ "longestApexExecutionNano": 94401128
+ },
+ {
+ "batchNumber": 7919,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137140937,
+ "shortestRoundTripNano": 55349613,
+ "longestRoundTripNano": 175418598,
+ "averageApexExecutionNano": 52267303,
+ "shortestApexExecutionNano": 6880801,
+ "longestApexExecutionNano": 117040680
+ },
+ {
+ "batchNumber": 7920,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144613693,
+ "shortestRoundTripNano": 59647888,
+ "longestRoundTripNano": 174776276,
+ "averageApexExecutionNano": 65370800,
+ "shortestApexExecutionNano": 6855024,
+ "longestApexExecutionNano": 132478892
+ },
+ {
+ "batchNumber": 7921,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146981007,
+ "shortestRoundTripNano": 68959789,
+ "longestRoundTripNano": 176224008,
+ "averageApexExecutionNano": 64395867,
+ "shortestApexExecutionNano": 8056523,
+ "longestApexExecutionNano": 117860487
+ },
+ {
+ "batchNumber": 7922,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161989906,
+ "shortestRoundTripNano": 81312170,
+ "longestRoundTripNano": 192114660,
+ "averageApexExecutionNano": 54059608,
+ "shortestApexExecutionNano": 8816120,
+ "longestApexExecutionNano": 114755994
+ },
+ {
+ "batchNumber": 7923,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163687589,
+ "shortestRoundTripNano": 78998722,
+ "longestRoundTripNano": 211558607,
+ "averageApexExecutionNano": 71939728,
+ "shortestApexExecutionNano": 20948584,
+ "longestApexExecutionNano": 144486963
+ },
+ {
+ "batchNumber": 7924,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176067998,
+ "shortestRoundTripNano": 90958339,
+ "longestRoundTripNano": 210081116,
+ "averageApexExecutionNano": 76979272,
+ "shortestApexExecutionNano": 11675082,
+ "longestApexExecutionNano": 152171831
+ },
+ {
+ "batchNumber": 7925,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144454125,
+ "shortestRoundTripNano": 55883170,
+ "longestRoundTripNano": 184372022,
+ "averageApexExecutionNano": 56897571,
+ "shortestApexExecutionNano": 8703524,
+ "longestApexExecutionNano": 111687894
+ },
+ {
+ "batchNumber": 7926,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141027308,
+ "shortestRoundTripNano": 75354326,
+ "longestRoundTripNano": 169545850,
+ "averageApexExecutionNano": 68274527,
+ "shortestApexExecutionNano": 7687115,
+ "longestApexExecutionNano": 124156218
+ },
+ {
+ "batchNumber": 7927,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139484899,
+ "shortestRoundTripNano": 79094287,
+ "longestRoundTripNano": 161391176,
+ "averageApexExecutionNano": 64711830,
+ "shortestApexExecutionNano": 11999697,
+ "longestApexExecutionNano": 114445316
+ },
+ {
+ "batchNumber": 7928,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143495173,
+ "shortestRoundTripNano": 62337065,
+ "longestRoundTripNano": 166633867,
+ "averageApexExecutionNano": 66782403,
+ "shortestApexExecutionNano": 9057843,
+ "longestApexExecutionNano": 110670095
+ },
+ {
+ "batchNumber": 7929,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139876294,
+ "shortestRoundTripNano": 76724265,
+ "longestRoundTripNano": 175451443,
+ "averageApexExecutionNano": 60791266,
+ "shortestApexExecutionNano": 12609366,
+ "longestApexExecutionNano": 116056735
+ },
+ {
+ "batchNumber": 7930,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152647428,
+ "shortestRoundTripNano": 47400044,
+ "longestRoundTripNano": 184336103,
+ "averageApexExecutionNano": 59472763,
+ "shortestApexExecutionNano": 5451882,
+ "longestApexExecutionNano": 115487560
+ },
+ {
+ "batchNumber": 7931,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 113395006,
+ "shortestRoundTripNano": 60390688,
+ "longestRoundTripNano": 143826564,
+ "averageApexExecutionNano": 51404440,
+ "shortestApexExecutionNano": 6121619,
+ "longestApexExecutionNano": 106025392
+ },
+ {
+ "batchNumber": 7932,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135063154,
+ "shortestRoundTripNano": 50056346,
+ "longestRoundTripNano": 167881485,
+ "averageApexExecutionNano": 53203560,
+ "shortestApexExecutionNano": 6309491,
+ "longestApexExecutionNano": 115847734
+ },
+ {
+ "batchNumber": 7933,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133048996,
+ "shortestRoundTripNano": 44604719,
+ "longestRoundTripNano": 161708463,
+ "averageApexExecutionNano": 54816995,
+ "shortestApexExecutionNano": 7128271,
+ "longestApexExecutionNano": 107032134
+ },
+ {
+ "batchNumber": 7934,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154784661,
+ "shortestRoundTripNano": 68429946,
+ "longestRoundTripNano": 187092781,
+ "averageApexExecutionNano": 71173868,
+ "shortestApexExecutionNano": 9231534,
+ "longestApexExecutionNano": 130907402
+ },
+ {
+ "batchNumber": 7935,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133060913,
+ "shortestRoundTripNano": 55416339,
+ "longestRoundTripNano": 162359519,
+ "averageApexExecutionNano": 60236213,
+ "shortestApexExecutionNano": 8179592,
+ "longestApexExecutionNano": 111273909
+ },
+ {
+ "batchNumber": 7936,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37782",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146961547,
+ "shortestRoundTripNano": 58788638,
+ "longestRoundTripNano": 172277114,
+ "averageApexExecutionNano": 52450359,
+ "shortestApexExecutionNano": 10915152,
+ "longestApexExecutionNano": 122785791
+ },
+ {
+ "batchNumber": 7937,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137619981,
+ "shortestRoundTripNano": 54901978,
+ "longestRoundTripNano": 162566823,
+ "averageApexExecutionNano": 61672089,
+ "shortestApexExecutionNano": 13856664,
+ "longestApexExecutionNano": 113908949
+ },
+ {
+ "batchNumber": 7938,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134704208,
+ "shortestRoundTripNano": 61026723,
+ "longestRoundTripNano": 166718905,
+ "averageApexExecutionNano": 47737107,
+ "shortestApexExecutionNano": 7965987,
+ "longestApexExecutionNano": 96451470
+ },
+ {
+ "batchNumber": 7939,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37788",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149614441,
+ "shortestRoundTripNano": 63911556,
+ "longestRoundTripNano": 177575955,
+ "averageApexExecutionNano": 67926107,
+ "shortestApexExecutionNano": 15210097,
+ "longestApexExecutionNano": 101823739
+ },
+ {
+ "batchNumber": 7940,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128434234,
+ "shortestRoundTripNano": 46255255,
+ "longestRoundTripNano": 163566785,
+ "averageApexExecutionNano": 60920777,
+ "shortestApexExecutionNano": 8755381,
+ "longestApexExecutionNano": 125882170
+ },
+ {
+ "batchNumber": 7941,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146214408,
+ "shortestRoundTripNano": 67340300,
+ "longestRoundTripNano": 170380709,
+ "averageApexExecutionNano": 68529283,
+ "shortestApexExecutionNano": 8190378,
+ "longestApexExecutionNano": 131363155
+ },
+ {
+ "batchNumber": 7942,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154272334,
+ "shortestRoundTripNano": 82056353,
+ "longestRoundTripNano": 210438194,
+ "averageApexExecutionNano": 63184240,
+ "shortestApexExecutionNano": 8884566,
+ "longestApexExecutionNano": 128307158
+ },
+ {
+ "batchNumber": 7943,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151102507,
+ "shortestRoundTripNano": 76536451,
+ "longestRoundTripNano": 180353975,
+ "averageApexExecutionNano": 59484001,
+ "shortestApexExecutionNano": 9969953,
+ "longestApexExecutionNano": 139578062
+ },
+ {
+ "batchNumber": 7944,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127754263,
+ "shortestRoundTripNano": 49715767,
+ "longestRoundTripNano": 152387522,
+ "averageApexExecutionNano": 55742561,
+ "shortestApexExecutionNano": 16905237,
+ "longestApexExecutionNano": 103222167
+ },
+ {
+ "batchNumber": 7945,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37790",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150947492,
+ "shortestRoundTripNano": 60824014,
+ "longestRoundTripNano": 180135555,
+ "averageApexExecutionNano": 59394965,
+ "shortestApexExecutionNano": 7744688,
+ "longestApexExecutionNano": 115414316
+ },
+ {
+ "batchNumber": 7946,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144715952,
+ "shortestRoundTripNano": 70746736,
+ "longestRoundTripNano": 168565446,
+ "averageApexExecutionNano": 59403141,
+ "shortestApexExecutionNano": 11465823,
+ "longestApexExecutionNano": 117896649
+ },
+ {
+ "batchNumber": 7947,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148811025,
+ "shortestRoundTripNano": 57468495,
+ "longestRoundTripNano": 180290659,
+ "averageApexExecutionNano": 63033256,
+ "shortestApexExecutionNano": 6086997,
+ "longestApexExecutionNano": 110339110
+ },
+ {
+ "batchNumber": 7948,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135199319,
+ "shortestRoundTripNano": 72623581,
+ "longestRoundTripNano": 172940823,
+ "averageApexExecutionNano": 63641529,
+ "shortestApexExecutionNano": 8964679,
+ "longestApexExecutionNano": 121451809
+ },
+ {
+ "batchNumber": 7949,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37794",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166453196,
+ "shortestRoundTripNano": 53870179,
+ "longestRoundTripNano": 197437752,
+ "averageApexExecutionNano": 68695177,
+ "shortestApexExecutionNano": 12652285,
+ "longestApexExecutionNano": 155084683
+ },
+ {
+ "batchNumber": 7950,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150269731,
+ "shortestRoundTripNano": 72712177,
+ "longestRoundTripNano": 177834363,
+ "averageApexExecutionNano": 67919437,
+ "shortestApexExecutionNano": 12631946,
+ "longestApexExecutionNano": 125429877
+ },
+ {
+ "batchNumber": 7951,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145417241,
+ "shortestRoundTripNano": 72598486,
+ "longestRoundTripNano": 182784589,
+ "averageApexExecutionNano": 59546737,
+ "shortestApexExecutionNano": 9105508,
+ "longestApexExecutionNano": 116765869
+ },
+ {
+ "batchNumber": 7952,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135367497,
+ "shortestRoundTripNano": 33838423,
+ "longestRoundTripNano": 181601001,
+ "averageApexExecutionNano": 64629507,
+ "shortestApexExecutionNano": 11515400,
+ "longestApexExecutionNano": 106823615
+ },
+ {
+ "batchNumber": 7953,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137593996,
+ "shortestRoundTripNano": 64159752,
+ "longestRoundTripNano": 177019812,
+ "averageApexExecutionNano": 48762779,
+ "shortestApexExecutionNano": 5707111,
+ "longestApexExecutionNano": 133571475
+ },
+ {
+ "batchNumber": 7954,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184134852,
+ "shortestRoundTripNano": 59814645,
+ "longestRoundTripNano": 222000921,
+ "averageApexExecutionNano": 66444456,
+ "shortestApexExecutionNano": 10714763,
+ "longestApexExecutionNano": 140540111
+ },
+ {
+ "batchNumber": 7955,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159663429,
+ "shortestRoundTripNano": 93360054,
+ "longestRoundTripNano": 182006952,
+ "averageApexExecutionNano": 76746751,
+ "shortestApexExecutionNano": 12638360,
+ "longestApexExecutionNano": 130781279
+ },
+ {
+ "batchNumber": 7956,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141968593,
+ "shortestRoundTripNano": 55341169,
+ "longestRoundTripNano": 175183743,
+ "averageApexExecutionNano": 62975624,
+ "shortestApexExecutionNano": 14645191,
+ "longestApexExecutionNano": 113328416
+ },
+ {
+ "batchNumber": 7957,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37798",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154580454,
+ "shortestRoundTripNano": 31077347,
+ "longestRoundTripNano": 184947756,
+ "averageApexExecutionNano": 74520364,
+ "shortestApexExecutionNano": 9347305,
+ "longestApexExecutionNano": 138964828
+ },
+ {
+ "batchNumber": 7958,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166166625,
+ "shortestRoundTripNano": 72902537,
+ "longestRoundTripNano": 203553533,
+ "averageApexExecutionNano": 67665486,
+ "shortestApexExecutionNano": 6645666,
+ "longestApexExecutionNano": 144073877
+ },
+ {
+ "batchNumber": 7959,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146793548,
+ "shortestRoundTripNano": 39059492,
+ "longestRoundTripNano": 179058432,
+ "averageApexExecutionNano": 64140525,
+ "shortestApexExecutionNano": 9412617,
+ "longestApexExecutionNano": 128248422
+ },
+ {
+ "batchNumber": 7960,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142016857,
+ "shortestRoundTripNano": 73632473,
+ "longestRoundTripNano": 168797593,
+ "averageApexExecutionNano": 44698704,
+ "shortestApexExecutionNano": 6416031,
+ "longestApexExecutionNano": 123552180
+ },
+ {
+ "batchNumber": 7961,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166544964,
+ "shortestRoundTripNano": 46859201,
+ "longestRoundTripNano": 202758536,
+ "averageApexExecutionNano": 75012105,
+ "shortestApexExecutionNano": 9609775,
+ "longestApexExecutionNano": 149176962
+ },
+ {
+ "batchNumber": 7962,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143155591,
+ "shortestRoundTripNano": 57585452,
+ "longestRoundTripNano": 177943691,
+ "averageApexExecutionNano": 49133780,
+ "shortestApexExecutionNano": 6808432,
+ "longestApexExecutionNano": 104812985
+ },
+ {
+ "batchNumber": 7963,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150560461,
+ "shortestRoundTripNano": 68150504,
+ "longestRoundTripNano": 173149806,
+ "averageApexExecutionNano": 66713757,
+ "shortestApexExecutionNano": 8471346,
+ "longestApexExecutionNano": 127749440
+ },
+ {
+ "batchNumber": 7964,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137603805,
+ "shortestRoundTripNano": 59878242,
+ "longestRoundTripNano": 168352195,
+ "averageApexExecutionNano": 51396044,
+ "shortestApexExecutionNano": 5978066,
+ "longestApexExecutionNano": 111308446
+ },
+ {
+ "batchNumber": 7965,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37796",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 236250658,
+ "shortestRoundTripNano": 56685310,
+ "longestRoundTripNano": 268354178,
+ "averageApexExecutionNano": 127768888,
+ "shortestApexExecutionNano": 7036838,
+ "longestApexExecutionNano": 236589261
+ },
+ {
+ "batchNumber": 7966,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145761548,
+ "shortestRoundTripNano": 65489337,
+ "longestRoundTripNano": 177660219,
+ "averageApexExecutionNano": 54076131,
+ "shortestApexExecutionNano": 13434035,
+ "longestApexExecutionNano": 116579730
+ },
+ {
+ "batchNumber": 7967,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 184199478,
+ "shortestRoundTripNano": 86393553,
+ "longestRoundTripNano": 214500562,
+ "averageApexExecutionNano": 73103479,
+ "shortestApexExecutionNano": 10629562,
+ "longestApexExecutionNano": 159430253
+ },
+ {
+ "batchNumber": 7968,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37802",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142547341,
+ "shortestRoundTripNano": 79505094,
+ "longestRoundTripNano": 167414099,
+ "averageApexExecutionNano": 57306947,
+ "shortestApexExecutionNano": 10504390,
+ "longestApexExecutionNano": 122300751
+ },
+ {
+ "batchNumber": 7969,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139810190,
+ "shortestRoundTripNano": 65030679,
+ "longestRoundTripNano": 173483670,
+ "averageApexExecutionNano": 54447569,
+ "shortestApexExecutionNano": 6899684,
+ "longestApexExecutionNano": 116644539
+ },
+ {
+ "batchNumber": 7970,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126716745,
+ "shortestRoundTripNano": 39785028,
+ "longestRoundTripNano": 155196093,
+ "averageApexExecutionNano": 46600183,
+ "shortestApexExecutionNano": 6383743,
+ "longestApexExecutionNano": 123208652
+ },
+ {
+ "batchNumber": 7971,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164215599,
+ "shortestRoundTripNano": 54921768,
+ "longestRoundTripNano": 200555019,
+ "averageApexExecutionNano": 74588781,
+ "shortestApexExecutionNano": 8994019,
+ "longestApexExecutionNano": 143730167
+ },
+ {
+ "batchNumber": 7972,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128237393,
+ "shortestRoundTripNano": 64515378,
+ "longestRoundTripNano": 166205966,
+ "averageApexExecutionNano": 54942818,
+ "shortestApexExecutionNano": 10648560,
+ "longestApexExecutionNano": 111102740
+ },
+ {
+ "batchNumber": 7973,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152078949,
+ "shortestRoundTripNano": 55529022,
+ "longestRoundTripNano": 180074724,
+ "averageApexExecutionNano": 66425231,
+ "shortestApexExecutionNano": 11130491,
+ "longestApexExecutionNano": 137295416
+ },
+ {
+ "batchNumber": 7974,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137764482,
+ "shortestRoundTripNano": 86197445,
+ "longestRoundTripNano": 170509390,
+ "averageApexExecutionNano": 64738787,
+ "shortestApexExecutionNano": 11566927,
+ "longestApexExecutionNano": 113813707
+ },
+ {
+ "batchNumber": 7975,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153696119,
+ "shortestRoundTripNano": 64799434,
+ "longestRoundTripNano": 191648147,
+ "averageApexExecutionNano": 68376540,
+ "shortestApexExecutionNano": 9651377,
+ "longestApexExecutionNano": 150003229
+ },
+ {
+ "batchNumber": 7976,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160294120,
+ "shortestRoundTripNano": 58754885,
+ "longestRoundTripNano": 187545500,
+ "averageApexExecutionNano": 68911440,
+ "shortestApexExecutionNano": 10925369,
+ "longestApexExecutionNano": 136303902
+ },
+ {
+ "batchNumber": 7977,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143692330,
+ "shortestRoundTripNano": 73916064,
+ "longestRoundTripNano": 170827666,
+ "averageApexExecutionNano": 48576374,
+ "shortestApexExecutionNano": 8091155,
+ "longestApexExecutionNano": 110449936
+ },
+ {
+ "batchNumber": 7978,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37800",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155537491,
+ "shortestRoundTripNano": 71880930,
+ "longestRoundTripNano": 191210114,
+ "averageApexExecutionNano": 61080092,
+ "shortestApexExecutionNano": 9044997,
+ "longestApexExecutionNano": 149307663
+ },
+ {
+ "batchNumber": 7979,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161761309,
+ "shortestRoundTripNano": 78459283,
+ "longestRoundTripNano": 190525658,
+ "averageApexExecutionNano": 64280788,
+ "shortestApexExecutionNano": 7399134,
+ "longestApexExecutionNano": 135721898
+ },
+ {
+ "batchNumber": 7980,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146009029,
+ "shortestRoundTripNano": 73367676,
+ "longestRoundTripNano": 174003300,
+ "averageApexExecutionNano": 64308479,
+ "shortestApexExecutionNano": 13116011,
+ "longestApexExecutionNano": 126086502
+ },
+ {
+ "batchNumber": 7981,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134903384,
+ "shortestRoundTripNano": 66321139,
+ "longestRoundTripNano": 171738896,
+ "averageApexExecutionNano": 41850374,
+ "shortestApexExecutionNano": 6299157,
+ "longestApexExecutionNano": 104907284
+ },
+ {
+ "batchNumber": 7982,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146490608,
+ "shortestRoundTripNano": 57900853,
+ "longestRoundTripNano": 175762655,
+ "averageApexExecutionNano": 52215439,
+ "shortestApexExecutionNano": 6155956,
+ "longestApexExecutionNano": 109940607
+ },
+ {
+ "batchNumber": 7983,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138346665,
+ "shortestRoundTripNano": 78407190,
+ "longestRoundTripNano": 163178215,
+ "averageApexExecutionNano": 63575250,
+ "shortestApexExecutionNano": 11040112,
+ "longestApexExecutionNano": 117840298
+ },
+ {
+ "batchNumber": 7984,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133558010,
+ "shortestRoundTripNano": 63214029,
+ "longestRoundTripNano": 170474602,
+ "averageApexExecutionNano": 65390440,
+ "shortestApexExecutionNano": 14491176,
+ "longestApexExecutionNano": 126743239
+ },
+ {
+ "batchNumber": 7985,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37806",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159089494,
+ "shortestRoundTripNano": 55664954,
+ "longestRoundTripNano": 194238162,
+ "averageApexExecutionNano": 48017684,
+ "shortestApexExecutionNano": 5616936,
+ "longestApexExecutionNano": 109368830
+ },
+ {
+ "batchNumber": 7986,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164631218,
+ "shortestRoundTripNano": 73941280,
+ "longestRoundTripNano": 196242333,
+ "averageApexExecutionNano": 76674919,
+ "shortestApexExecutionNano": 19792789,
+ "longestApexExecutionNano": 141762892
+ },
+ {
+ "batchNumber": 7987,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145395410,
+ "shortestRoundTripNano": 78132121,
+ "longestRoundTripNano": 172976137,
+ "averageApexExecutionNano": 59199249,
+ "shortestApexExecutionNano": 9591395,
+ "longestApexExecutionNano": 106386897
+ },
+ {
+ "batchNumber": 7988,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137395635,
+ "shortestRoundTripNano": 54032038,
+ "longestRoundTripNano": 181296212,
+ "averageApexExecutionNano": 56660185,
+ "shortestApexExecutionNano": 7188038,
+ "longestApexExecutionNano": 120261043
+ },
+ {
+ "batchNumber": 7989,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130832040,
+ "shortestRoundTripNano": 64114894,
+ "longestRoundTripNano": 153084837,
+ "averageApexExecutionNano": 43801513,
+ "shortestApexExecutionNano": 5231680,
+ "longestApexExecutionNano": 103227114
+ },
+ {
+ "batchNumber": 7990,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148549192,
+ "shortestRoundTripNano": 78021159,
+ "longestRoundTripNano": 177036005,
+ "averageApexExecutionNano": 67488038,
+ "shortestApexExecutionNano": 12859959,
+ "longestApexExecutionNano": 119901524
+ },
+ {
+ "batchNumber": 7991,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37810",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163725449,
+ "shortestRoundTripNano": 57776713,
+ "longestRoundTripNano": 202425188,
+ "averageApexExecutionNano": 60892185,
+ "shortestApexExecutionNano": 11737224,
+ "longestApexExecutionNano": 146491361
+ },
+ {
+ "batchNumber": 7992,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141146933,
+ "shortestRoundTripNano": 82725798,
+ "longestRoundTripNano": 167805792,
+ "averageApexExecutionNano": 59885899,
+ "shortestApexExecutionNano": 7032432,
+ "longestApexExecutionNano": 129119210
+ },
+ {
+ "batchNumber": 7993,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171400185,
+ "shortestRoundTripNano": 59911271,
+ "longestRoundTripNano": 214251611,
+ "averageApexExecutionNano": 58195786,
+ "shortestApexExecutionNano": 8679325,
+ "longestApexExecutionNano": 133213990
+ },
+ {
+ "batchNumber": 7994,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149985137,
+ "shortestRoundTripNano": 74677845,
+ "longestRoundTripNano": 180745237,
+ "averageApexExecutionNano": 73132855,
+ "shortestApexExecutionNano": 17121755,
+ "longestApexExecutionNano": 124337958
+ },
+ {
+ "batchNumber": 7995,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142719662,
+ "shortestRoundTripNano": 65198888,
+ "longestRoundTripNano": 176524339,
+ "averageApexExecutionNano": 55410692,
+ "shortestApexExecutionNano": 11181630,
+ "longestApexExecutionNano": 128389593
+ },
+ {
+ "batchNumber": 7996,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159094521,
+ "shortestRoundTripNano": 51225077,
+ "longestRoundTripNano": 194687905,
+ "averageApexExecutionNano": 89328613,
+ "shortestApexExecutionNano": 15635809,
+ "longestApexExecutionNano": 149973923
+ },
+ {
+ "batchNumber": 7997,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148836946,
+ "shortestRoundTripNano": 76414960,
+ "longestRoundTripNano": 176928388,
+ "averageApexExecutionNano": 57560346,
+ "shortestApexExecutionNano": 7158342,
+ "longestApexExecutionNano": 129633076
+ },
+ {
+ "batchNumber": 7998,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138643890,
+ "shortestRoundTripNano": 66191176,
+ "longestRoundTripNano": 171077123,
+ "averageApexExecutionNano": 49835919,
+ "shortestApexExecutionNano": 7598009,
+ "longestApexExecutionNano": 114777993
+ },
+ {
+ "batchNumber": 7999,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135213435,
+ "shortestRoundTripNano": 59776265,
+ "longestRoundTripNano": 161246756,
+ "averageApexExecutionNano": 67336618,
+ "shortestApexExecutionNano": 5779439,
+ "longestApexExecutionNano": 122247340
+ },
+ {
+ "batchNumber": 8000,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37812",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149826541,
+ "shortestRoundTripNano": 58304181,
+ "longestRoundTripNano": 183551803,
+ "averageApexExecutionNano": 60641925,
+ "shortestApexExecutionNano": 7670806,
+ "longestApexExecutionNano": 135101362
+ },
+ {
+ "batchNumber": 8001,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132226713,
+ "shortestRoundTripNano": 34175340,
+ "longestRoundTripNano": 156059353,
+ "averageApexExecutionNano": 50411546,
+ "shortestApexExecutionNano": 9368976,
+ "longestApexExecutionNano": 115671746
+ },
+ {
+ "batchNumber": 8002,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160229220,
+ "shortestRoundTripNano": 65425641,
+ "longestRoundTripNano": 194076974,
+ "averageApexExecutionNano": 61044277,
+ "shortestApexExecutionNano": 6740327,
+ "longestApexExecutionNano": 122453542
+ },
+ {
+ "batchNumber": 8003,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164723946,
+ "shortestRoundTripNano": 72567360,
+ "longestRoundTripNano": 196761138,
+ "averageApexExecutionNano": 71393665,
+ "shortestApexExecutionNano": 7319233,
+ "longestApexExecutionNano": 139036718
+ },
+ {
+ "batchNumber": 8004,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139621294,
+ "shortestRoundTripNano": 55634044,
+ "longestRoundTripNano": 168062447,
+ "averageApexExecutionNano": 45110879,
+ "shortestApexExecutionNano": 7685488,
+ "longestApexExecutionNano": 108327577
+ },
+ {
+ "batchNumber": 8005,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139290632,
+ "shortestRoundTripNano": 37461366,
+ "longestRoundTripNano": 168130351,
+ "averageApexExecutionNano": 63136734,
+ "shortestApexExecutionNano": 7943882,
+ "longestApexExecutionNano": 116226669
+ },
+ {
+ "batchNumber": 8006,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131835791,
+ "shortestRoundTripNano": 49794468,
+ "longestRoundTripNano": 169680667,
+ "averageApexExecutionNano": 46668860,
+ "shortestApexExecutionNano": 6169937,
+ "longestApexExecutionNano": 115631656
+ },
+ {
+ "batchNumber": 8007,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37814",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141487508,
+ "shortestRoundTripNano": 58075870,
+ "longestRoundTripNano": 168952525,
+ "averageApexExecutionNano": 71003051,
+ "shortestApexExecutionNano": 12076466,
+ "longestApexExecutionNano": 130405447
+ },
+ {
+ "batchNumber": 8008,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145075063,
+ "shortestRoundTripNano": 65955735,
+ "longestRoundTripNano": 168859153,
+ "averageApexExecutionNano": 56789241,
+ "shortestApexExecutionNano": 6350109,
+ "longestApexExecutionNano": 97042950
+ },
+ {
+ "batchNumber": 8009,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145664874,
+ "shortestRoundTripNano": 65299798,
+ "longestRoundTripNano": 178670622,
+ "averageApexExecutionNano": 57875702,
+ "shortestApexExecutionNano": 7447510,
+ "longestApexExecutionNano": 116867006
+ },
+ {
+ "batchNumber": 8010,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176743990,
+ "shortestRoundTripNano": 93875094,
+ "longestRoundTripNano": 204946797,
+ "averageApexExecutionNano": 79096181,
+ "shortestApexExecutionNano": 11186918,
+ "longestApexExecutionNano": 153136000
+ },
+ {
+ "batchNumber": 8011,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156237741,
+ "shortestRoundTripNano": 65694326,
+ "longestRoundTripNano": 192020272,
+ "averageApexExecutionNano": 63204222,
+ "shortestApexExecutionNano": 5909566,
+ "longestApexExecutionNano": 130793398
+ },
+ {
+ "batchNumber": 8012,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155786131,
+ "shortestRoundTripNano": 75583873,
+ "longestRoundTripNano": 187987155,
+ "averageApexExecutionNano": 68924315,
+ "shortestApexExecutionNano": 8632117,
+ "longestApexExecutionNano": 127414036
+ },
+ {
+ "batchNumber": 8013,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149279452,
+ "shortestRoundTripNano": 62729843,
+ "longestRoundTripNano": 177359078,
+ "averageApexExecutionNano": 65167706,
+ "shortestApexExecutionNano": 7847968,
+ "longestApexExecutionNano": 134027238
+ },
+ {
+ "batchNumber": 8014,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144992876,
+ "shortestRoundTripNano": 58942187,
+ "longestRoundTripNano": 172240574,
+ "averageApexExecutionNano": 64166687,
+ "shortestApexExecutionNano": 8045808,
+ "longestApexExecutionNano": 133598464
+ },
+ {
+ "batchNumber": 8015,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147101732,
+ "shortestRoundTripNano": 61820307,
+ "longestRoundTripNano": 181864254,
+ "averageApexExecutionNano": 48495037,
+ "shortestApexExecutionNano": 6798292,
+ "longestApexExecutionNano": 114907393
+ },
+ {
+ "batchNumber": 8016,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141523547,
+ "shortestRoundTripNano": 83084694,
+ "longestRoundTripNano": 166706488,
+ "averageApexExecutionNano": 62820361,
+ "shortestApexExecutionNano": 9917298,
+ "longestApexExecutionNano": 111155941
+ },
+ {
+ "batchNumber": 8017,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140426451,
+ "shortestRoundTripNano": 37349726,
+ "longestRoundTripNano": 170440306,
+ "averageApexExecutionNano": 61701578,
+ "shortestApexExecutionNano": 6064849,
+ "longestApexExecutionNano": 127742476
+ },
+ {
+ "batchNumber": 8018,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136105059,
+ "shortestRoundTripNano": 68351908,
+ "longestRoundTripNano": 161446958,
+ "averageApexExecutionNano": 62390556,
+ "shortestApexExecutionNano": 14656277,
+ "longestApexExecutionNano": 103169359
+ },
+ {
+ "batchNumber": 8019,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161278599,
+ "shortestRoundTripNano": 70659265,
+ "longestRoundTripNano": 186119792,
+ "averageApexExecutionNano": 61312762,
+ "shortestApexExecutionNano": 7205137,
+ "longestApexExecutionNano": 141520243
+ },
+ {
+ "batchNumber": 8020,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173458951,
+ "shortestRoundTripNano": 65287402,
+ "longestRoundTripNano": 197933977,
+ "averageApexExecutionNano": 59373517,
+ "shortestApexExecutionNano": 8744311,
+ "longestApexExecutionNano": 112844764
+ },
+ {
+ "batchNumber": 8021,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144542162,
+ "shortestRoundTripNano": 79336860,
+ "longestRoundTripNano": 182549139,
+ "averageApexExecutionNano": 70575716,
+ "shortestApexExecutionNano": 6976838,
+ "longestApexExecutionNano": 130244745
+ },
+ {
+ "batchNumber": 8022,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132442412,
+ "shortestRoundTripNano": 49841340,
+ "longestRoundTripNano": 166704561,
+ "averageApexExecutionNano": 54168430,
+ "shortestApexExecutionNano": 7861992,
+ "longestApexExecutionNano": 118028165
+ },
+ {
+ "batchNumber": 8023,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153830435,
+ "shortestRoundTripNano": 94222826,
+ "longestRoundTripNano": 183762791,
+ "averageApexExecutionNano": 90854254,
+ "shortestApexExecutionNano": 15029067,
+ "longestApexExecutionNano": 139206514
+ },
+ {
+ "batchNumber": 8024,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145426796,
+ "shortestRoundTripNano": 78196477,
+ "longestRoundTripNano": 173979707,
+ "averageApexExecutionNano": 70876736,
+ "shortestApexExecutionNano": 7481940,
+ "longestApexExecutionNano": 126505626
+ },
+ {
+ "batchNumber": 8025,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145075216,
+ "shortestRoundTripNano": 64025797,
+ "longestRoundTripNano": 179963810,
+ "averageApexExecutionNano": 55661158,
+ "shortestApexExecutionNano": 8732008,
+ "longestApexExecutionNano": 120174452
+ },
+ {
+ "batchNumber": 8026,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151958316,
+ "shortestRoundTripNano": 80792686,
+ "longestRoundTripNano": 174792270,
+ "averageApexExecutionNano": 78367748,
+ "shortestApexExecutionNano": 17027613,
+ "longestApexExecutionNano": 133201960
+ },
+ {
+ "batchNumber": 8027,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163666285,
+ "shortestRoundTripNano": 53538931,
+ "longestRoundTripNano": 204422596,
+ "averageApexExecutionNano": 63325369,
+ "shortestApexExecutionNano": 10148406,
+ "longestApexExecutionNano": 127420045
+ },
+ {
+ "batchNumber": 8028,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37826",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152887433,
+ "shortestRoundTripNano": 76675676,
+ "longestRoundTripNano": 177466094,
+ "averageApexExecutionNano": 74517631,
+ "shortestApexExecutionNano": 15701786,
+ "longestApexExecutionNano": 134955919
+ },
+ {
+ "batchNumber": 8029,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151095135,
+ "shortestRoundTripNano": 79952856,
+ "longestRoundTripNano": 177133951,
+ "averageApexExecutionNano": 62613795,
+ "shortestApexExecutionNano": 10627688,
+ "longestApexExecutionNano": 113866311
+ },
+ {
+ "batchNumber": 8030,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137276425,
+ "shortestRoundTripNano": 59370102,
+ "longestRoundTripNano": 173690349,
+ "averageApexExecutionNano": 53432609,
+ "shortestApexExecutionNano": 8289798,
+ "longestApexExecutionNano": 106543395
+ },
+ {
+ "batchNumber": 8031,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37818",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180398712,
+ "shortestRoundTripNano": 45085108,
+ "longestRoundTripNano": 223264853,
+ "averageApexExecutionNano": 97851629,
+ "shortestApexExecutionNano": 21105892,
+ "longestApexExecutionNano": 161223560
+ },
+ {
+ "batchNumber": 8032,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137096366,
+ "shortestRoundTripNano": 40544078,
+ "longestRoundTripNano": 173342400,
+ "averageApexExecutionNano": 67121314,
+ "shortestApexExecutionNano": 6242221,
+ "longestApexExecutionNano": 134393188
+ },
+ {
+ "batchNumber": 8033,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141145702,
+ "shortestRoundTripNano": 59451573,
+ "longestRoundTripNano": 183677708,
+ "averageApexExecutionNano": 72692424,
+ "shortestApexExecutionNano": 12179625,
+ "longestApexExecutionNano": 134872641
+ },
+ {
+ "batchNumber": 8034,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142846762,
+ "shortestRoundTripNano": 59203462,
+ "longestRoundTripNano": 179027667,
+ "averageApexExecutionNano": 57565398,
+ "shortestApexExecutionNano": 9476240,
+ "longestApexExecutionNano": 107299265
+ },
+ {
+ "batchNumber": 8035,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134658198,
+ "shortestRoundTripNano": 58989474,
+ "longestRoundTripNano": 166516038,
+ "averageApexExecutionNano": 57933936,
+ "shortestApexExecutionNano": 16507841,
+ "longestApexExecutionNano": 117914212
+ },
+ {
+ "batchNumber": 8036,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149881306,
+ "shortestRoundTripNano": 69265383,
+ "longestRoundTripNano": 180184797,
+ "averageApexExecutionNano": 61007208,
+ "shortestApexExecutionNano": 11683355,
+ "longestApexExecutionNano": 113928743
+ },
+ {
+ "batchNumber": 8037,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143909348,
+ "shortestRoundTripNano": 70525828,
+ "longestRoundTripNano": 190957507,
+ "averageApexExecutionNano": 64962713,
+ "shortestApexExecutionNano": 25548208,
+ "longestApexExecutionNano": 121538153
+ },
+ {
+ "batchNumber": 8038,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160717612,
+ "shortestRoundTripNano": 59619815,
+ "longestRoundTripNano": 195445676,
+ "averageApexExecutionNano": 48691783,
+ "shortestApexExecutionNano": 6970929,
+ "longestApexExecutionNano": 122254466
+ },
+ {
+ "batchNumber": 8039,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37830",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164928968,
+ "shortestRoundTripNano": 66946829,
+ "longestRoundTripNano": 233704696,
+ "averageApexExecutionNano": 75932402,
+ "shortestApexExecutionNano": 14497867,
+ "longestApexExecutionNano": 138585641
+ },
+ {
+ "batchNumber": 8040,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135408985,
+ "shortestRoundTripNano": 76524976,
+ "longestRoundTripNano": 164823158,
+ "averageApexExecutionNano": 62826919,
+ "shortestApexExecutionNano": 8438981,
+ "longestApexExecutionNano": 123283012
+ },
+ {
+ "batchNumber": 8041,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146867397,
+ "shortestRoundTripNano": 90866831,
+ "longestRoundTripNano": 168577823,
+ "averageApexExecutionNano": 71396534,
+ "shortestApexExecutionNano": 14741395,
+ "longestApexExecutionNano": 125807538
+ },
+ {
+ "batchNumber": 8042,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150953237,
+ "shortestRoundTripNano": 68736109,
+ "longestRoundTripNano": 183691318,
+ "averageApexExecutionNano": 48674071,
+ "shortestApexExecutionNano": 10192057,
+ "longestApexExecutionNano": 127288632
+ },
+ {
+ "batchNumber": 8043,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37828",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149315590,
+ "shortestRoundTripNano": 40280011,
+ "longestRoundTripNano": 195377516,
+ "averageApexExecutionNano": 78670813,
+ "shortestApexExecutionNano": 10738246,
+ "longestApexExecutionNano": 149282578
+ },
+ {
+ "batchNumber": 8044,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153150373,
+ "shortestRoundTripNano": 75538066,
+ "longestRoundTripNano": 177024948,
+ "averageApexExecutionNano": 76120440,
+ "shortestApexExecutionNano": 6557005,
+ "longestApexExecutionNano": 131571267
+ },
+ {
+ "batchNumber": 8045,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140929564,
+ "shortestRoundTripNano": 57528190,
+ "longestRoundTripNano": 169539018,
+ "averageApexExecutionNano": 45220370,
+ "shortestApexExecutionNano": 8324579,
+ "longestApexExecutionNano": 111931931
+ },
+ {
+ "batchNumber": 8046,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140353441,
+ "shortestRoundTripNano": 51352867,
+ "longestRoundTripNano": 170471205,
+ "averageApexExecutionNano": 54503451,
+ "shortestApexExecutionNano": 7972733,
+ "longestApexExecutionNano": 117040206
+ },
+ {
+ "batchNumber": 8047,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37832",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163369885,
+ "shortestRoundTripNano": 44603463,
+ "longestRoundTripNano": 194446805,
+ "averageApexExecutionNano": 64397895,
+ "shortestApexExecutionNano": 9240894,
+ "longestApexExecutionNano": 118941678
+ },
+ {
+ "batchNumber": 8048,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143576420,
+ "shortestRoundTripNano": 70503816,
+ "longestRoundTripNano": 170250493,
+ "averageApexExecutionNano": 67687192,
+ "shortestApexExecutionNano": 23049488,
+ "longestApexExecutionNano": 109886034
+ },
+ {
+ "batchNumber": 8049,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130585549,
+ "shortestRoundTripNano": 67322308,
+ "longestRoundTripNano": 155283665,
+ "averageApexExecutionNano": 63235786,
+ "shortestApexExecutionNano": 6121495,
+ "longestApexExecutionNano": 118220029
+ },
+ {
+ "batchNumber": 8050,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136405722,
+ "shortestRoundTripNano": 62140665,
+ "longestRoundTripNano": 177822290,
+ "averageApexExecutionNano": 72488984,
+ "shortestApexExecutionNano": 6613760,
+ "longestApexExecutionNano": 121870190
+ },
+ {
+ "batchNumber": 8051,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138173052,
+ "shortestRoundTripNano": 66813588,
+ "longestRoundTripNano": 166461098,
+ "averageApexExecutionNano": 72363751,
+ "shortestApexExecutionNano": 7247548,
+ "longestApexExecutionNano": 121685390
+ },
+ {
+ "batchNumber": 8052,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139724381,
+ "shortestRoundTripNano": 45059734,
+ "longestRoundTripNano": 166793828,
+ "averageApexExecutionNano": 48634120,
+ "shortestApexExecutionNano": 5667335,
+ "longestApexExecutionNano": 103730448
+ },
+ {
+ "batchNumber": 8053,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123485443,
+ "shortestRoundTripNano": 53331464,
+ "longestRoundTripNano": 149856975,
+ "averageApexExecutionNano": 50018518,
+ "shortestApexExecutionNano": 5926487,
+ "longestApexExecutionNano": 107759261
+ },
+ {
+ "batchNumber": 8054,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147500287,
+ "shortestRoundTripNano": 50744748,
+ "longestRoundTripNano": 176285611,
+ "averageApexExecutionNano": 69648553,
+ "shortestApexExecutionNano": 10492585,
+ "longestApexExecutionNano": 124083556
+ },
+ {
+ "batchNumber": 8055,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37834",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151069488,
+ "shortestRoundTripNano": 55407091,
+ "longestRoundTripNano": 185280875,
+ "averageApexExecutionNano": 64889739,
+ "shortestApexExecutionNano": 9659994,
+ "longestApexExecutionNano": 129627347
+ },
+ {
+ "batchNumber": 8056,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147708912,
+ "shortestRoundTripNano": 56316324,
+ "longestRoundTripNano": 178228972,
+ "averageApexExecutionNano": 54939199,
+ "shortestApexExecutionNano": 5553270,
+ "longestApexExecutionNano": 107692859
+ },
+ {
+ "batchNumber": 8057,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129021945,
+ "shortestRoundTripNano": 63618161,
+ "longestRoundTripNano": 153906904,
+ "averageApexExecutionNano": 58131203,
+ "shortestApexExecutionNano": 7163473,
+ "longestApexExecutionNano": 114932414
+ },
+ {
+ "batchNumber": 8058,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139854325,
+ "shortestRoundTripNano": 69637174,
+ "longestRoundTripNano": 166909832,
+ "averageApexExecutionNano": 57668323,
+ "shortestApexExecutionNano": 11730029,
+ "longestApexExecutionNano": 121259269
+ },
+ {
+ "batchNumber": 8059,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145406642,
+ "shortestRoundTripNano": 71484671,
+ "longestRoundTripNano": 175454012,
+ "averageApexExecutionNano": 50426723,
+ "shortestApexExecutionNano": 7265439,
+ "longestApexExecutionNano": 96499463
+ },
+ {
+ "batchNumber": 8060,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129593922,
+ "shortestRoundTripNano": 71861934,
+ "longestRoundTripNano": 149045176,
+ "averageApexExecutionNano": 63362747,
+ "shortestApexExecutionNano": 13797005,
+ "longestApexExecutionNano": 105299735
+ },
+ {
+ "batchNumber": 8061,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134883058,
+ "shortestRoundTripNano": 61961102,
+ "longestRoundTripNano": 162314778,
+ "averageApexExecutionNano": 59811292,
+ "shortestApexExecutionNano": 12425880,
+ "longestApexExecutionNano": 114435792
+ },
+ {
+ "batchNumber": 8062,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122860417,
+ "shortestRoundTripNano": 51655615,
+ "longestRoundTripNano": 149533072,
+ "averageApexExecutionNano": 48343686,
+ "shortestApexExecutionNano": 9754267,
+ "longestApexExecutionNano": 101892551
+ },
+ {
+ "batchNumber": 8063,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37836",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162662677,
+ "shortestRoundTripNano": 66299002,
+ "longestRoundTripNano": 199458245,
+ "averageApexExecutionNano": 66574462,
+ "shortestApexExecutionNano": 5392262,
+ "longestApexExecutionNano": 141800573
+ },
+ {
+ "batchNumber": 8064,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140548153,
+ "shortestRoundTripNano": 62913026,
+ "longestRoundTripNano": 167567397,
+ "averageApexExecutionNano": 53000948,
+ "shortestApexExecutionNano": 6791883,
+ "longestApexExecutionNano": 104156936
+ },
+ {
+ "batchNumber": 8065,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139878558,
+ "shortestRoundTripNano": 57252623,
+ "longestRoundTripNano": 166830551,
+ "averageApexExecutionNano": 57954403,
+ "shortestApexExecutionNano": 9535318,
+ "longestApexExecutionNano": 99759272
+ },
+ {
+ "batchNumber": 8066,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138603525,
+ "shortestRoundTripNano": 59554392,
+ "longestRoundTripNano": 166988876,
+ "averageApexExecutionNano": 52015473,
+ "shortestApexExecutionNano": 5813723,
+ "longestApexExecutionNano": 110565449
+ },
+ {
+ "batchNumber": 8067,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144799557,
+ "shortestRoundTripNano": 72080081,
+ "longestRoundTripNano": 170854918,
+ "averageApexExecutionNano": 65283998,
+ "shortestApexExecutionNano": 15898713,
+ "longestApexExecutionNano": 131305572
+ },
+ {
+ "batchNumber": 8068,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139533881,
+ "shortestRoundTripNano": 54824350,
+ "longestRoundTripNano": 171945856,
+ "averageApexExecutionNano": 60796351,
+ "shortestApexExecutionNano": 12970312,
+ "longestApexExecutionNano": 123859325
+ },
+ {
+ "batchNumber": 8069,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37840",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 181306386,
+ "shortestRoundTripNano": 58289709,
+ "longestRoundTripNano": 215227723,
+ "averageApexExecutionNano": 85646955,
+ "shortestApexExecutionNano": 12031988,
+ "longestApexExecutionNano": 166862127
+ },
+ {
+ "batchNumber": 8070,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140406117,
+ "shortestRoundTripNano": 56525221,
+ "longestRoundTripNano": 172859531,
+ "averageApexExecutionNano": 68262024,
+ "shortestApexExecutionNano": 13207898,
+ "longestApexExecutionNano": 120680429
+ },
+ {
+ "batchNumber": 8071,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139889054,
+ "shortestRoundTripNano": 61446029,
+ "longestRoundTripNano": 166049257,
+ "averageApexExecutionNano": 61892397,
+ "shortestApexExecutionNano": 5743922,
+ "longestApexExecutionNano": 113107859
+ },
+ {
+ "batchNumber": 8072,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142699382,
+ "shortestRoundTripNano": 58275470,
+ "longestRoundTripNano": 178487542,
+ "averageApexExecutionNano": 50349231,
+ "shortestApexExecutionNano": 10314801,
+ "longestApexExecutionNano": 112573817
+ },
+ {
+ "batchNumber": 8073,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37842",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164482620,
+ "shortestRoundTripNano": 77539868,
+ "longestRoundTripNano": 193639121,
+ "averageApexExecutionNano": 87603587,
+ "shortestApexExecutionNano": 9439555,
+ "longestApexExecutionNano": 145369076
+ },
+ {
+ "batchNumber": 8074,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145958854,
+ "shortestRoundTripNano": 62653256,
+ "longestRoundTripNano": 169870977,
+ "averageApexExecutionNano": 59428344,
+ "shortestApexExecutionNano": 8058214,
+ "longestApexExecutionNano": 119152034
+ },
+ {
+ "batchNumber": 8075,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37844",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141320001,
+ "shortestRoundTripNano": 61550980,
+ "longestRoundTripNano": 174978219,
+ "averageApexExecutionNano": 55356825,
+ "shortestApexExecutionNano": 8148661,
+ "longestApexExecutionNano": 139795413
+ },
+ {
+ "batchNumber": 8076,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129169632,
+ "shortestRoundTripNano": 41781436,
+ "longestRoundTripNano": 158837548,
+ "averageApexExecutionNano": 51378360,
+ "shortestApexExecutionNano": 6891003,
+ "longestApexExecutionNano": 107518124
+ },
+ {
+ "batchNumber": 8077,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168305451,
+ "shortestRoundTripNano": 73601192,
+ "longestRoundTripNano": 199277224,
+ "averageApexExecutionNano": 63446530,
+ "shortestApexExecutionNano": 9892500,
+ "longestApexExecutionNano": 119618987
+ },
+ {
+ "batchNumber": 8078,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144347029,
+ "shortestRoundTripNano": 66325020,
+ "longestRoundTripNano": 164426111,
+ "averageApexExecutionNano": 65721797,
+ "shortestApexExecutionNano": 11940835,
+ "longestApexExecutionNano": 119319832
+ },
+ {
+ "batchNumber": 8079,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147373528,
+ "shortestRoundTripNano": 57819293,
+ "longestRoundTripNano": 184674126,
+ "averageApexExecutionNano": 61407428,
+ "shortestApexExecutionNano": 7591624,
+ "longestApexExecutionNano": 151683213
+ },
+ {
+ "batchNumber": 8080,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144294088,
+ "shortestRoundTripNano": 71586211,
+ "longestRoundTripNano": 167466408,
+ "averageApexExecutionNano": 73270224,
+ "shortestApexExecutionNano": 14733487,
+ "longestApexExecutionNano": 128326798
+ },
+ {
+ "batchNumber": 8081,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153422890,
+ "shortestRoundTripNano": 62856768,
+ "longestRoundTripNano": 186939272,
+ "averageApexExecutionNano": 61878601,
+ "shortestApexExecutionNano": 10585100,
+ "longestApexExecutionNano": 126904750
+ },
+ {
+ "batchNumber": 8082,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147071476,
+ "shortestRoundTripNano": 70309900,
+ "longestRoundTripNano": 174541876,
+ "averageApexExecutionNano": 59635811,
+ "shortestApexExecutionNano": 8193835,
+ "longestApexExecutionNano": 121012962
+ },
+ {
+ "batchNumber": 8083,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145724206,
+ "shortestRoundTripNano": 46332257,
+ "longestRoundTripNano": 182760729,
+ "averageApexExecutionNano": 47392615,
+ "shortestApexExecutionNano": 6979490,
+ "longestApexExecutionNano": 118761516
+ },
+ {
+ "batchNumber": 8084,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136627639,
+ "shortestRoundTripNano": 62384082,
+ "longestRoundTripNano": 168540742,
+ "averageApexExecutionNano": 51932901,
+ "shortestApexExecutionNano": 9727522,
+ "longestApexExecutionNano": 97288098
+ },
+ {
+ "batchNumber": 8085,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157334249,
+ "shortestRoundTripNano": 40493775,
+ "longestRoundTripNano": 183218026,
+ "averageApexExecutionNano": 62106576,
+ "shortestApexExecutionNano": 5902280,
+ "longestApexExecutionNano": 133440500
+ },
+ {
+ "batchNumber": 8086,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151964098,
+ "shortestRoundTripNano": 64165735,
+ "longestRoundTripNano": 179877549,
+ "averageApexExecutionNano": 66852945,
+ "shortestApexExecutionNano": 8770933,
+ "longestApexExecutionNano": 130534192
+ },
+ {
+ "batchNumber": 8087,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130537244,
+ "shortestRoundTripNano": 40835727,
+ "longestRoundTripNano": 160032284,
+ "averageApexExecutionNano": 55982705,
+ "shortestApexExecutionNano": 9608703,
+ "longestApexExecutionNano": 102549408
+ },
+ {
+ "batchNumber": 8088,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37850",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177233202,
+ "shortestRoundTripNano": 56184661,
+ "longestRoundTripNano": 222626567,
+ "averageApexExecutionNano": 74271836,
+ "shortestApexExecutionNano": 10458950,
+ "longestApexExecutionNano": 141397181
+ },
+ {
+ "batchNumber": 8089,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144498482,
+ "shortestRoundTripNano": 68544922,
+ "longestRoundTripNano": 185760167,
+ "averageApexExecutionNano": 51615221,
+ "shortestApexExecutionNano": 7776021,
+ "longestApexExecutionNano": 129612071
+ },
+ {
+ "batchNumber": 8090,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134854310,
+ "shortestRoundTripNano": 74947061,
+ "longestRoundTripNano": 161606234,
+ "averageApexExecutionNano": 49383317,
+ "shortestApexExecutionNano": 7417825,
+ "longestApexExecutionNano": 118065828
+ },
+ {
+ "batchNumber": 8091,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142626231,
+ "shortestRoundTripNano": 71605658,
+ "longestRoundTripNano": 170971905,
+ "averageApexExecutionNano": 56733077,
+ "shortestApexExecutionNano": 6762096,
+ "longestApexExecutionNano": 116693897
+ },
+ {
+ "batchNumber": 8092,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37846",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183282592,
+ "shortestRoundTripNano": 63924735,
+ "longestRoundTripNano": 220662790,
+ "averageApexExecutionNano": 71065786,
+ "shortestApexExecutionNano": 9891659,
+ "longestApexExecutionNano": 176441078
+ },
+ {
+ "batchNumber": 8093,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137611957,
+ "shortestRoundTripNano": 49740118,
+ "longestRoundTripNano": 170298195,
+ "averageApexExecutionNano": 63052820,
+ "shortestApexExecutionNano": 6986212,
+ "longestApexExecutionNano": 121350297
+ },
+ {
+ "batchNumber": 8094,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142471236,
+ "shortestRoundTripNano": 68558118,
+ "longestRoundTripNano": 174449344,
+ "averageApexExecutionNano": 68506658,
+ "shortestApexExecutionNano": 8638753,
+ "longestApexExecutionNano": 121764454
+ },
+ {
+ "batchNumber": 8095,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135840445,
+ "shortestRoundTripNano": 69455680,
+ "longestRoundTripNano": 167023546,
+ "averageApexExecutionNano": 44595507,
+ "shortestApexExecutionNano": 7355954,
+ "longestApexExecutionNano": 107483199
+ },
+ {
+ "batchNumber": 8096,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141910170,
+ "shortestRoundTripNano": 67170035,
+ "longestRoundTripNano": 190981384,
+ "averageApexExecutionNano": 69981606,
+ "shortestApexExecutionNano": 14741597,
+ "longestApexExecutionNano": 133463282
+ },
+ {
+ "batchNumber": 8097,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163508665,
+ "shortestRoundTripNano": 86233615,
+ "longestRoundTripNano": 185744120,
+ "averageApexExecutionNano": 67429797,
+ "shortestApexExecutionNano": 9163755,
+ "longestApexExecutionNano": 138890277
+ },
+ {
+ "batchNumber": 8098,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136898190,
+ "shortestRoundTripNano": 54255007,
+ "longestRoundTripNano": 165755202,
+ "averageApexExecutionNano": 53478481,
+ "shortestApexExecutionNano": 6385665,
+ "longestApexExecutionNano": 108471247
+ },
+ {
+ "batchNumber": 8099,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37852",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162355803,
+ "shortestRoundTripNano": 68295347,
+ "longestRoundTripNano": 191432422,
+ "averageApexExecutionNano": 77547779,
+ "shortestApexExecutionNano": 9448362,
+ "longestApexExecutionNano": 139018034
+ },
+ {
+ "batchNumber": 8100,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141111258,
+ "shortestRoundTripNano": 65982011,
+ "longestRoundTripNano": 173750546,
+ "averageApexExecutionNano": 53796875,
+ "shortestApexExecutionNano": 7930953,
+ "longestApexExecutionNano": 98802372
+ },
+ {
+ "batchNumber": 8101,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121514725,
+ "shortestRoundTripNano": 65808127,
+ "longestRoundTripNano": 147040909,
+ "averageApexExecutionNano": 63809053,
+ "shortestApexExecutionNano": 17330546,
+ "longestApexExecutionNano": 104128064
+ },
+ {
+ "batchNumber": 8102,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144761726,
+ "shortestRoundTripNano": 45798002,
+ "longestRoundTripNano": 170466670,
+ "averageApexExecutionNano": 60466517,
+ "shortestApexExecutionNano": 7556297,
+ "longestApexExecutionNano": 120946857
+ },
+ {
+ "batchNumber": 8103,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156193098,
+ "shortestRoundTripNano": 79699021,
+ "longestRoundTripNano": 198683859,
+ "averageApexExecutionNano": 84842279,
+ "shortestApexExecutionNano": 8420988,
+ "longestApexExecutionNano": 142913665
+ },
+ {
+ "batchNumber": 8104,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156624632,
+ "shortestRoundTripNano": 54218591,
+ "longestRoundTripNano": 191877191,
+ "averageApexExecutionNano": 72518338,
+ "shortestApexExecutionNano": 8558520,
+ "longestApexExecutionNano": 141876582
+ },
+ {
+ "batchNumber": 8105,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145743350,
+ "shortestRoundTripNano": 46879686,
+ "longestRoundTripNano": 173936741,
+ "averageApexExecutionNano": 69243816,
+ "shortestApexExecutionNano": 8393637,
+ "longestApexExecutionNano": 138166413
+ },
+ {
+ "batchNumber": 8106,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37858",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149132826,
+ "shortestRoundTripNano": 46860346,
+ "longestRoundTripNano": 189208862,
+ "averageApexExecutionNano": 56837378,
+ "shortestApexExecutionNano": 10074307,
+ "longestApexExecutionNano": 126342484
+ },
+ {
+ "batchNumber": 8107,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154875285,
+ "shortestRoundTripNano": 72539254,
+ "longestRoundTripNano": 176808015,
+ "averageApexExecutionNano": 71400339,
+ "shortestApexExecutionNano": 10770168,
+ "longestApexExecutionNano": 131801528
+ },
+ {
+ "batchNumber": 8108,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146137657,
+ "shortestRoundTripNano": 79505223,
+ "longestRoundTripNano": 178571838,
+ "averageApexExecutionNano": 76283275,
+ "shortestApexExecutionNano": 6349837,
+ "longestApexExecutionNano": 126705640
+ },
+ {
+ "batchNumber": 8109,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143709586,
+ "shortestRoundTripNano": 72223588,
+ "longestRoundTripNano": 171739002,
+ "averageApexExecutionNano": 52294982,
+ "shortestApexExecutionNano": 9540524,
+ "longestApexExecutionNano": 117792648
+ },
+ {
+ "batchNumber": 8110,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147048577,
+ "shortestRoundTripNano": 67051423,
+ "longestRoundTripNano": 178669503,
+ "averageApexExecutionNano": 62924312,
+ "shortestApexExecutionNano": 6357013,
+ "longestApexExecutionNano": 127058038
+ },
+ {
+ "batchNumber": 8111,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170390770,
+ "shortestRoundTripNano": 36077358,
+ "longestRoundTripNano": 202313548,
+ "averageApexExecutionNano": 74035624,
+ "shortestApexExecutionNano": 15767677,
+ "longestApexExecutionNano": 153630907
+ },
+ {
+ "batchNumber": 8112,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 248806834,
+ "shortestRoundTripNano": 59809235,
+ "longestRoundTripNano": 293534536,
+ "averageApexExecutionNano": 114771649,
+ "shortestApexExecutionNano": 10333511,
+ "longestApexExecutionNano": 233335885
+ },
+ {
+ "batchNumber": 8113,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157724018,
+ "shortestRoundTripNano": 91963288,
+ "longestRoundTripNano": 185293781,
+ "averageApexExecutionNano": 66753177,
+ "shortestApexExecutionNano": 11318602,
+ "longestApexExecutionNano": 121061599
+ },
+ {
+ "batchNumber": 8114,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135537054,
+ "shortestRoundTripNano": 61826561,
+ "longestRoundTripNano": 160024130,
+ "averageApexExecutionNano": 61729601,
+ "shortestApexExecutionNano": 6374697,
+ "longestApexExecutionNano": 115197074
+ },
+ {
+ "batchNumber": 8115,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37856",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125737279,
+ "shortestRoundTripNano": 57415860,
+ "longestRoundTripNano": 164263580,
+ "averageApexExecutionNano": 49111800,
+ "shortestApexExecutionNano": 6412936,
+ "longestApexExecutionNano": 116337218
+ },
+ {
+ "batchNumber": 8116,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126849811,
+ "shortestRoundTripNano": 61832115,
+ "longestRoundTripNano": 155648246,
+ "averageApexExecutionNano": 64402240,
+ "shortestApexExecutionNano": 9920799,
+ "longestApexExecutionNano": 117495697
+ },
+ {
+ "batchNumber": 8117,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143111161,
+ "shortestRoundTripNano": 69269875,
+ "longestRoundTripNano": 169911784,
+ "averageApexExecutionNano": 55317793,
+ "shortestApexExecutionNano": 8983880,
+ "longestApexExecutionNano": 108905444
+ },
+ {
+ "batchNumber": 8118,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37860",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162335427,
+ "shortestRoundTripNano": 60905061,
+ "longestRoundTripNano": 201613749,
+ "averageApexExecutionNano": 83101430,
+ "shortestApexExecutionNano": 7789902,
+ "longestApexExecutionNano": 139796814
+ },
+ {
+ "batchNumber": 8119,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168520166,
+ "shortestRoundTripNano": 71921836,
+ "longestRoundTripNano": 193192623,
+ "averageApexExecutionNano": 61399050,
+ "shortestApexExecutionNano": 7243154,
+ "longestApexExecutionNano": 143832873
+ },
+ {
+ "batchNumber": 8120,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138478600,
+ "shortestRoundTripNano": 70207818,
+ "longestRoundTripNano": 160484448,
+ "averageApexExecutionNano": 61557423,
+ "shortestApexExecutionNano": 15400619,
+ "longestApexExecutionNano": 117160554
+ },
+ {
+ "batchNumber": 8121,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144588575,
+ "shortestRoundTripNano": 53904720,
+ "longestRoundTripNano": 185220599,
+ "averageApexExecutionNano": 61691919,
+ "shortestApexExecutionNano": 7792624,
+ "longestApexExecutionNano": 120843148
+ },
+ {
+ "batchNumber": 8122,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152525855,
+ "shortestRoundTripNano": 58990560,
+ "longestRoundTripNano": 181377027,
+ "averageApexExecutionNano": 57450931,
+ "shortestApexExecutionNano": 9116534,
+ "longestApexExecutionNano": 125095668
+ },
+ {
+ "batchNumber": 8123,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143860578,
+ "shortestRoundTripNano": 70315253,
+ "longestRoundTripNano": 168526971,
+ "averageApexExecutionNano": 64223460,
+ "shortestApexExecutionNano": 8780399,
+ "longestApexExecutionNano": 135070776
+ },
+ {
+ "batchNumber": 8124,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37862",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144123350,
+ "shortestRoundTripNano": 54219580,
+ "longestRoundTripNano": 185148425,
+ "averageApexExecutionNano": 59935275,
+ "shortestApexExecutionNano": 5796172,
+ "longestApexExecutionNano": 135046932
+ },
+ {
+ "batchNumber": 8125,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142584588,
+ "shortestRoundTripNano": 40595308,
+ "longestRoundTripNano": 175975889,
+ "averageApexExecutionNano": 67810295,
+ "shortestApexExecutionNano": 6429912,
+ "longestApexExecutionNano": 130563623
+ },
+ {
+ "batchNumber": 8126,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137802321,
+ "shortestRoundTripNano": 62305938,
+ "longestRoundTripNano": 167734160,
+ "averageApexExecutionNano": 71057411,
+ "shortestApexExecutionNano": 15122979,
+ "longestApexExecutionNano": 121222653
+ },
+ {
+ "batchNumber": 8127,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124959220,
+ "shortestRoundTripNano": 52445586,
+ "longestRoundTripNano": 155920583,
+ "averageApexExecutionNano": 43300328,
+ "shortestApexExecutionNano": 8918169,
+ "longestApexExecutionNano": 92072966
+ },
+ {
+ "batchNumber": 8128,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133466692,
+ "shortestRoundTripNano": 33516705,
+ "longestRoundTripNano": 161225905,
+ "averageApexExecutionNano": 53562236,
+ "shortestApexExecutionNano": 7667086,
+ "longestApexExecutionNano": 108179435
+ },
+ {
+ "batchNumber": 8129,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136397120,
+ "shortestRoundTripNano": 70657590,
+ "longestRoundTripNano": 167466122,
+ "averageApexExecutionNano": 62308678,
+ "shortestApexExecutionNano": 8464688,
+ "longestApexExecutionNano": 129220553
+ },
+ {
+ "batchNumber": 8130,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37864",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155938444,
+ "shortestRoundTripNano": 53028637,
+ "longestRoundTripNano": 224856543,
+ "averageApexExecutionNano": 77203787,
+ "shortestApexExecutionNano": 16417343,
+ "longestApexExecutionNano": 139037155
+ },
+ {
+ "batchNumber": 8131,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163768115,
+ "shortestRoundTripNano": 84621208,
+ "longestRoundTripNano": 194015068,
+ "averageApexExecutionNano": 46403392,
+ "shortestApexExecutionNano": 10035779,
+ "longestApexExecutionNano": 104068334
+ },
+ {
+ "batchNumber": 8132,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154730877,
+ "shortestRoundTripNano": 73001655,
+ "longestRoundTripNano": 179548880,
+ "averageApexExecutionNano": 74515503,
+ "shortestApexExecutionNano": 7867599,
+ "longestApexExecutionNano": 132028823
+ },
+ {
+ "batchNumber": 8133,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158592132,
+ "shortestRoundTripNano": 40581418,
+ "longestRoundTripNano": 193382542,
+ "averageApexExecutionNano": 73044674,
+ "shortestApexExecutionNano": 13308944,
+ "longestApexExecutionNano": 150872259
+ },
+ {
+ "batchNumber": 8134,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37868",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158978101,
+ "shortestRoundTripNano": 63675881,
+ "longestRoundTripNano": 194082676,
+ "averageApexExecutionNano": 68618762,
+ "shortestApexExecutionNano": 16554549,
+ "longestApexExecutionNano": 121816127
+ },
+ {
+ "batchNumber": 8135,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137112955,
+ "shortestRoundTripNano": 42398642,
+ "longestRoundTripNano": 174290725,
+ "averageApexExecutionNano": 55589831,
+ "shortestApexExecutionNano": 7730311,
+ "longestApexExecutionNano": 118584615
+ },
+ {
+ "batchNumber": 8136,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152403393,
+ "shortestRoundTripNano": 61888086,
+ "longestRoundTripNano": 184311873,
+ "averageApexExecutionNano": 46448810,
+ "shortestApexExecutionNano": 9221847,
+ "longestApexExecutionNano": 114457324
+ },
+ {
+ "batchNumber": 8137,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37866",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 190376514,
+ "shortestRoundTripNano": 46424034,
+ "longestRoundTripNano": 243062050,
+ "averageApexExecutionNano": 74993187,
+ "shortestApexExecutionNano": 7304389,
+ "longestApexExecutionNano": 162472123
+ },
+ {
+ "batchNumber": 8138,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148507786,
+ "shortestRoundTripNano": 74430119,
+ "longestRoundTripNano": 181988624,
+ "averageApexExecutionNano": 55430214,
+ "shortestApexExecutionNano": 9141203,
+ "longestApexExecutionNano": 105633061
+ },
+ {
+ "batchNumber": 8139,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134380820,
+ "shortestRoundTripNano": 42773452,
+ "longestRoundTripNano": 162979678,
+ "averageApexExecutionNano": 63015268,
+ "shortestApexExecutionNano": 9484105,
+ "longestApexExecutionNano": 123432629
+ },
+ {
+ "batchNumber": 8140,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37870",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173876111,
+ "shortestRoundTripNano": 70870476,
+ "longestRoundTripNano": 202457840,
+ "averageApexExecutionNano": 83386636,
+ "shortestApexExecutionNano": 17190976,
+ "longestApexExecutionNano": 147556176
+ },
+ {
+ "batchNumber": 8141,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157057438,
+ "shortestRoundTripNano": 52610465,
+ "longestRoundTripNano": 207930074,
+ "averageApexExecutionNano": 53872222,
+ "shortestApexExecutionNano": 10559461,
+ "longestApexExecutionNano": 149040506
+ },
+ {
+ "batchNumber": 8142,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150924139,
+ "shortestRoundTripNano": 81866612,
+ "longestRoundTripNano": 188964449,
+ "averageApexExecutionNano": 60641665,
+ "shortestApexExecutionNano": 7762217,
+ "longestApexExecutionNano": 137951223
+ },
+ {
+ "batchNumber": 8143,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185101108,
+ "shortestRoundTripNano": 41227563,
+ "longestRoundTripNano": 215584395,
+ "averageApexExecutionNano": 80641957,
+ "shortestApexExecutionNano": 5927333,
+ "longestApexExecutionNano": 164139610
+ },
+ {
+ "batchNumber": 8144,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142126602,
+ "shortestRoundTripNano": 73681799,
+ "longestRoundTripNano": 171721971,
+ "averageApexExecutionNano": 50353672,
+ "shortestApexExecutionNano": 6812027,
+ "longestApexExecutionNano": 141135849
+ },
+ {
+ "batchNumber": 8145,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161265657,
+ "shortestRoundTripNano": 48468284,
+ "longestRoundTripNano": 198832919,
+ "averageApexExecutionNano": 61965377,
+ "shortestApexExecutionNano": 4488776,
+ "longestApexExecutionNano": 131331936
+ },
+ {
+ "batchNumber": 8146,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161027003,
+ "shortestRoundTripNano": 84311642,
+ "longestRoundTripNano": 184076668,
+ "averageApexExecutionNano": 79796122,
+ "shortestApexExecutionNano": 12736164,
+ "longestApexExecutionNano": 143567600
+ },
+ {
+ "batchNumber": 8147,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 118749674,
+ "shortestRoundTripNano": 51663963,
+ "longestRoundTripNano": 156265064,
+ "averageApexExecutionNano": 47012214,
+ "shortestApexExecutionNano": 6113741,
+ "longestApexExecutionNano": 114503964
+ },
+ {
+ "batchNumber": 8148,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157089204,
+ "shortestRoundTripNano": 68332914,
+ "longestRoundTripNano": 192423724,
+ "averageApexExecutionNano": 56958327,
+ "shortestApexExecutionNano": 11488878,
+ "longestApexExecutionNano": 143645581
+ },
+ {
+ "batchNumber": 8149,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37872",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147997500,
+ "shortestRoundTripNano": 38834200,
+ "longestRoundTripNano": 174490700,
+ "averageApexExecutionNano": 62942960,
+ "shortestApexExecutionNano": 8858384,
+ "longestApexExecutionNano": 120569032
+ },
+ {
+ "batchNumber": 8150,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149057931,
+ "shortestRoundTripNano": 45460029,
+ "longestRoundTripNano": 186460866,
+ "averageApexExecutionNano": 74361396,
+ "shortestApexExecutionNano": 19189920,
+ "longestApexExecutionNano": 139384818
+ },
+ {
+ "batchNumber": 8151,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135454015,
+ "shortestRoundTripNano": 55541010,
+ "longestRoundTripNano": 171319868,
+ "averageApexExecutionNano": 63824505,
+ "shortestApexExecutionNano": 9051915,
+ "longestApexExecutionNano": 127881239
+ },
+ {
+ "batchNumber": 8152,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159869038,
+ "shortestRoundTripNano": 74987990,
+ "longestRoundTripNano": 178978015,
+ "averageApexExecutionNano": 52772873,
+ "shortestApexExecutionNano": 6226843,
+ "longestApexExecutionNano": 95965704
+ },
+ {
+ "batchNumber": 8153,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151479069,
+ "shortestRoundTripNano": 67141054,
+ "longestRoundTripNano": 176545013,
+ "averageApexExecutionNano": 71245478,
+ "shortestApexExecutionNano": 17074714,
+ "longestApexExecutionNano": 115438936
+ },
+ {
+ "batchNumber": 8154,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143727928,
+ "shortestRoundTripNano": 72198594,
+ "longestRoundTripNano": 168459699,
+ "averageApexExecutionNano": 54723444,
+ "shortestApexExecutionNano": 9096957,
+ "longestApexExecutionNano": 118259649
+ },
+ {
+ "batchNumber": 8155,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161403565,
+ "shortestRoundTripNano": 69930722,
+ "longestRoundTripNano": 195841814,
+ "averageApexExecutionNano": 64914730,
+ "shortestApexExecutionNano": 7511695,
+ "longestApexExecutionNano": 135485862
+ },
+ {
+ "batchNumber": 8156,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130030183,
+ "shortestRoundTripNano": 78190373,
+ "longestRoundTripNano": 159282418,
+ "averageApexExecutionNano": 70925144,
+ "shortestApexExecutionNano": 8291199,
+ "longestApexExecutionNano": 121477710
+ },
+ {
+ "batchNumber": 8157,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151929692,
+ "shortestRoundTripNano": 55696583,
+ "longestRoundTripNano": 181386790,
+ "averageApexExecutionNano": 66336648,
+ "shortestApexExecutionNano": 6758145,
+ "longestApexExecutionNano": 131433069
+ },
+ {
+ "batchNumber": 8158,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138130446,
+ "shortestRoundTripNano": 65669819,
+ "longestRoundTripNano": 162655854,
+ "averageApexExecutionNano": 41050324,
+ "shortestApexExecutionNano": 7092935,
+ "longestApexExecutionNano": 104296248
+ },
+ {
+ "batchNumber": 8159,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161196631,
+ "shortestRoundTripNano": 56864121,
+ "longestRoundTripNano": 193703327,
+ "averageApexExecutionNano": 78151981,
+ "shortestApexExecutionNano": 16135510,
+ "longestApexExecutionNano": 134514168
+ },
+ {
+ "batchNumber": 8160,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37878",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140597473,
+ "shortestRoundTripNano": 47247213,
+ "longestRoundTripNano": 172945361,
+ "averageApexExecutionNano": 66786383,
+ "shortestApexExecutionNano": 8224183,
+ "longestApexExecutionNano": 125826303
+ },
+ {
+ "batchNumber": 8161,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136582119,
+ "shortestRoundTripNano": 54272906,
+ "longestRoundTripNano": 163273573,
+ "averageApexExecutionNano": 47474573,
+ "shortestApexExecutionNano": 9620316,
+ "longestApexExecutionNano": 103267192
+ },
+ {
+ "batchNumber": 8162,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152711998,
+ "shortestRoundTripNano": 69647753,
+ "longestRoundTripNano": 185787206,
+ "averageApexExecutionNano": 54521632,
+ "shortestApexExecutionNano": 10478207,
+ "longestApexExecutionNano": 128222337
+ },
+ {
+ "batchNumber": 8163,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119786967,
+ "shortestRoundTripNano": 43706333,
+ "longestRoundTripNano": 149015072,
+ "averageApexExecutionNano": 57427370,
+ "shortestApexExecutionNano": 5093159,
+ "longestApexExecutionNano": 109143374
+ },
+ {
+ "batchNumber": 8164,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121310798,
+ "shortestRoundTripNano": 43054398,
+ "longestRoundTripNano": 147015637,
+ "averageApexExecutionNano": 56900737,
+ "shortestApexExecutionNano": 6958399,
+ "longestApexExecutionNano": 108476004
+ },
+ {
+ "batchNumber": 8165,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37874",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148599088,
+ "shortestRoundTripNano": 72314292,
+ "longestRoundTripNano": 183795168,
+ "averageApexExecutionNano": 53130760,
+ "shortestApexExecutionNano": 8518429,
+ "longestApexExecutionNano": 113795445
+ },
+ {
+ "batchNumber": 8166,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143377620,
+ "shortestRoundTripNano": 74670984,
+ "longestRoundTripNano": 164297610,
+ "averageApexExecutionNano": 63400247,
+ "shortestApexExecutionNano": 7651919,
+ "longestApexExecutionNano": 99795213
+ },
+ {
+ "batchNumber": 8167,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183277518,
+ "shortestRoundTripNano": 88067837,
+ "longestRoundTripNano": 215668179,
+ "averageApexExecutionNano": 79122387,
+ "shortestApexExecutionNano": 8774474,
+ "longestApexExecutionNano": 152808989
+ },
+ {
+ "batchNumber": 8168,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144293656,
+ "shortestRoundTripNano": 80762505,
+ "longestRoundTripNano": 170121890,
+ "averageApexExecutionNano": 64015511,
+ "shortestApexExecutionNano": 19398666,
+ "longestApexExecutionNano": 119615751
+ },
+ {
+ "batchNumber": 8169,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136744805,
+ "shortestRoundTripNano": 47118887,
+ "longestRoundTripNano": 172299944,
+ "averageApexExecutionNano": 48740323,
+ "shortestApexExecutionNano": 7767430,
+ "longestApexExecutionNano": 117119938
+ },
+ {
+ "batchNumber": 8170,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145708403,
+ "shortestRoundTripNano": 57505743,
+ "longestRoundTripNano": 177534626,
+ "averageApexExecutionNano": 74743458,
+ "shortestApexExecutionNano": 10575092,
+ "longestApexExecutionNano": 124431701
+ },
+ {
+ "batchNumber": 8171,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153773502,
+ "shortestRoundTripNano": 62844012,
+ "longestRoundTripNano": 185848997,
+ "averageApexExecutionNano": 72257790,
+ "shortestApexExecutionNano": 13710420,
+ "longestApexExecutionNano": 128098051
+ },
+ {
+ "batchNumber": 8172,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135330317,
+ "shortestRoundTripNano": 65493128,
+ "longestRoundTripNano": 162658503,
+ "averageApexExecutionNano": 48461655,
+ "shortestApexExecutionNano": 7437842,
+ "longestApexExecutionNano": 107885586
+ },
+ {
+ "batchNumber": 8173,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37880",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147779970,
+ "shortestRoundTripNano": 82019792,
+ "longestRoundTripNano": 179500314,
+ "averageApexExecutionNano": 52306755,
+ "shortestApexExecutionNano": 10081562,
+ "longestApexExecutionNano": 96758289
+ },
+ {
+ "batchNumber": 8174,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37882",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157183963,
+ "shortestRoundTripNano": 52784525,
+ "longestRoundTripNano": 183770383,
+ "averageApexExecutionNano": 57769153,
+ "shortestApexExecutionNano": 6353652,
+ "longestApexExecutionNano": 110041681
+ },
+ {
+ "batchNumber": 8175,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152702723,
+ "shortestRoundTripNano": 32870925,
+ "longestRoundTripNano": 186252101,
+ "averageApexExecutionNano": 72146988,
+ "shortestApexExecutionNano": 14236881,
+ "longestApexExecutionNano": 134209111
+ },
+ {
+ "batchNumber": 8176,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140254830,
+ "shortestRoundTripNano": 43681257,
+ "longestRoundTripNano": 173294039,
+ "averageApexExecutionNano": 59114458,
+ "shortestApexExecutionNano": 7381390,
+ "longestApexExecutionNano": 113656200
+ },
+ {
+ "batchNumber": 8177,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162617335,
+ "shortestRoundTripNano": 67942572,
+ "longestRoundTripNano": 194285157,
+ "averageApexExecutionNano": 62414486,
+ "shortestApexExecutionNano": 6861378,
+ "longestApexExecutionNano": 126309979
+ },
+ {
+ "batchNumber": 8178,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165890761,
+ "shortestRoundTripNano": 72157873,
+ "longestRoundTripNano": 193553167,
+ "averageApexExecutionNano": 57413326,
+ "shortestApexExecutionNano": 8724493,
+ "longestApexExecutionNano": 122702179
+ },
+ {
+ "batchNumber": 8179,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178083554,
+ "shortestRoundTripNano": 77634602,
+ "longestRoundTripNano": 216460301,
+ "averageApexExecutionNano": 68962073,
+ "shortestApexExecutionNano": 8156287,
+ "longestApexExecutionNano": 147678587
+ },
+ {
+ "batchNumber": 8180,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37886",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154422208,
+ "shortestRoundTripNano": 45441650,
+ "longestRoundTripNano": 191757167,
+ "averageApexExecutionNano": 79852037,
+ "shortestApexExecutionNano": 7465164,
+ "longestApexExecutionNano": 147360173
+ },
+ {
+ "batchNumber": 8181,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143535198,
+ "shortestRoundTripNano": 76309723,
+ "longestRoundTripNano": 171558664,
+ "averageApexExecutionNano": 53248549,
+ "shortestApexExecutionNano": 7458762,
+ "longestApexExecutionNano": 116842775
+ },
+ {
+ "batchNumber": 8182,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37884",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173331200,
+ "shortestRoundTripNano": 63567952,
+ "longestRoundTripNano": 218487119,
+ "averageApexExecutionNano": 61746864,
+ "shortestApexExecutionNano": 7001389,
+ "longestApexExecutionNano": 137361794
+ },
+ {
+ "batchNumber": 8183,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141119442,
+ "shortestRoundTripNano": 64510798,
+ "longestRoundTripNano": 173179286,
+ "averageApexExecutionNano": 59248248,
+ "shortestApexExecutionNano": 7432709,
+ "longestApexExecutionNano": 129270298
+ },
+ {
+ "batchNumber": 8184,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176371412,
+ "shortestRoundTripNano": 62748126,
+ "longestRoundTripNano": 206362512,
+ "averageApexExecutionNano": 61649901,
+ "shortestApexExecutionNano": 8840380,
+ "longestApexExecutionNano": 136739910
+ },
+ {
+ "batchNumber": 8185,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160822255,
+ "shortestRoundTripNano": 78157595,
+ "longestRoundTripNano": 192892040,
+ "averageApexExecutionNano": 51981009,
+ "shortestApexExecutionNano": 7428426,
+ "longestApexExecutionNano": 132174870
+ },
+ {
+ "batchNumber": 8186,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175886994,
+ "shortestRoundTripNano": 66888132,
+ "longestRoundTripNano": 208438389,
+ "averageApexExecutionNano": 75489556,
+ "shortestApexExecutionNano": 8998796,
+ "longestApexExecutionNano": 137419963
+ },
+ {
+ "batchNumber": 8187,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163017992,
+ "shortestRoundTripNano": 41518241,
+ "longestRoundTripNano": 189209861,
+ "averageApexExecutionNano": 69513483,
+ "shortestApexExecutionNano": 12289389,
+ "longestApexExecutionNano": 149495426
+ },
+ {
+ "batchNumber": 8188,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37890",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156046097,
+ "shortestRoundTripNano": 61945445,
+ "longestRoundTripNano": 191048935,
+ "averageApexExecutionNano": 55706794,
+ "shortestApexExecutionNano": 8315311,
+ "longestApexExecutionNano": 143388986
+ },
+ {
+ "batchNumber": 8189,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158354418,
+ "shortestRoundTripNano": 74238570,
+ "longestRoundTripNano": 183866978,
+ "averageApexExecutionNano": 65360479,
+ "shortestApexExecutionNano": 7360663,
+ "longestApexExecutionNano": 139807470
+ },
+ {
+ "batchNumber": 8190,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143957854,
+ "shortestRoundTripNano": 65193683,
+ "longestRoundTripNano": 176161176,
+ "averageApexExecutionNano": 63884983,
+ "shortestApexExecutionNano": 5542353,
+ "longestApexExecutionNano": 147050999
+ },
+ {
+ "batchNumber": 8191,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136696615,
+ "shortestRoundTripNano": 70488626,
+ "longestRoundTripNano": 166428962,
+ "averageApexExecutionNano": 62660194,
+ "shortestApexExecutionNano": 12447131,
+ "longestApexExecutionNano": 114786439
+ },
+ {
+ "batchNumber": 8192,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177513441,
+ "shortestRoundTripNano": 96957731,
+ "longestRoundTripNano": 208468351,
+ "averageApexExecutionNano": 73095619,
+ "shortestApexExecutionNano": 19847494,
+ "longestApexExecutionNano": 137949971
+ },
+ {
+ "batchNumber": 8193,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154888139,
+ "shortestRoundTripNano": 75253479,
+ "longestRoundTripNano": 190723753,
+ "averageApexExecutionNano": 53234595,
+ "shortestApexExecutionNano": 5495355,
+ "longestApexExecutionNano": 130441571
+ },
+ {
+ "batchNumber": 8194,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176211826,
+ "shortestRoundTripNano": 89492807,
+ "longestRoundTripNano": 213642574,
+ "averageApexExecutionNano": 89012341,
+ "shortestApexExecutionNano": 11901419,
+ "longestApexExecutionNano": 169531715
+ },
+ {
+ "batchNumber": 8195,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156514906,
+ "shortestRoundTripNano": 81454323,
+ "longestRoundTripNano": 188759056,
+ "averageApexExecutionNano": 71642021,
+ "shortestApexExecutionNano": 9949100,
+ "longestApexExecutionNano": 135077020
+ },
+ {
+ "batchNumber": 8196,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161970217,
+ "shortestRoundTripNano": 73266197,
+ "longestRoundTripNano": 193491903,
+ "averageApexExecutionNano": 65668905,
+ "shortestApexExecutionNano": 15297774,
+ "longestApexExecutionNano": 127816235
+ },
+ {
+ "batchNumber": 8197,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134997417,
+ "shortestRoundTripNano": 73774177,
+ "longestRoundTripNano": 163250229,
+ "averageApexExecutionNano": 63654710,
+ "shortestApexExecutionNano": 16076064,
+ "longestApexExecutionNano": 115143676
+ },
+ {
+ "batchNumber": 8198,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37888",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 192493594,
+ "shortestRoundTripNano": 51659148,
+ "longestRoundTripNano": 241263390,
+ "averageApexExecutionNano": 90915762,
+ "shortestApexExecutionNano": 8437220,
+ "longestApexExecutionNano": 186166369
+ },
+ {
+ "batchNumber": 8199,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176308251,
+ "shortestRoundTripNano": 86543359,
+ "longestRoundTripNano": 205498083,
+ "averageApexExecutionNano": 60428115,
+ "shortestApexExecutionNano": 10659411,
+ "longestApexExecutionNano": 138878482
+ },
+ {
+ "batchNumber": 8200,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154116592,
+ "shortestRoundTripNano": 61085349,
+ "longestRoundTripNano": 193294575,
+ "averageApexExecutionNano": 64240816,
+ "shortestApexExecutionNano": 7032589,
+ "longestApexExecutionNano": 128479324
+ },
+ {
+ "batchNumber": 8201,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132420793,
+ "shortestRoundTripNano": 68411973,
+ "longestRoundTripNano": 167829280,
+ "averageApexExecutionNano": 57383810,
+ "shortestApexExecutionNano": 6985830,
+ "longestApexExecutionNano": 123250508
+ },
+ {
+ "batchNumber": 8202,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177853240,
+ "shortestRoundTripNano": 72902030,
+ "longestRoundTripNano": 214725757,
+ "averageApexExecutionNano": 72254560,
+ "shortestApexExecutionNano": 10705728,
+ "longestApexExecutionNano": 160557391
+ },
+ {
+ "batchNumber": 8203,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180028464,
+ "shortestRoundTripNano": 78691667,
+ "longestRoundTripNano": 214126397,
+ "averageApexExecutionNano": 72970966,
+ "shortestApexExecutionNano": 5436015,
+ "longestApexExecutionNano": 154214496
+ },
+ {
+ "batchNumber": 8204,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151730164,
+ "shortestRoundTripNano": 57616178,
+ "longestRoundTripNano": 194370062,
+ "averageApexExecutionNano": 62619055,
+ "shortestApexExecutionNano": 12826446,
+ "longestApexExecutionNano": 124518550
+ },
+ {
+ "batchNumber": 8205,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145337551,
+ "shortestRoundTripNano": 66417042,
+ "longestRoundTripNano": 173773777,
+ "averageApexExecutionNano": 55141587,
+ "shortestApexExecutionNano": 14573324,
+ "longestApexExecutionNano": 111737968
+ },
+ {
+ "batchNumber": 8206,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37894",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136008881,
+ "shortestRoundTripNano": 69710698,
+ "longestRoundTripNano": 164984578,
+ "averageApexExecutionNano": 71774082,
+ "shortestApexExecutionNano": 7606016,
+ "longestApexExecutionNano": 121762252
+ },
+ {
+ "batchNumber": 8207,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150207007,
+ "shortestRoundTripNano": 79671707,
+ "longestRoundTripNano": 174667373,
+ "averageApexExecutionNano": 62953744,
+ "shortestApexExecutionNano": 5541938,
+ "longestApexExecutionNano": 128536911
+ },
+ {
+ "batchNumber": 8208,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149235948,
+ "shortestRoundTripNano": 83268500,
+ "longestRoundTripNano": 176319891,
+ "averageApexExecutionNano": 69021961,
+ "shortestApexExecutionNano": 7810136,
+ "longestApexExecutionNano": 129772524
+ },
+ {
+ "batchNumber": 8209,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164696552,
+ "shortestRoundTripNano": 68655349,
+ "longestRoundTripNano": 195970964,
+ "averageApexExecutionNano": 60910571,
+ "shortestApexExecutionNano": 12337486,
+ "longestApexExecutionNano": 104045160
+ },
+ {
+ "batchNumber": 8210,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37896",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160789386,
+ "shortestRoundTripNano": 69497343,
+ "longestRoundTripNano": 208548418,
+ "averageApexExecutionNano": 79173984,
+ "shortestApexExecutionNano": 18359140,
+ "longestApexExecutionNano": 139501932
+ },
+ {
+ "batchNumber": 8211,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 180583871,
+ "shortestRoundTripNano": 75025763,
+ "longestRoundTripNano": 212075025,
+ "averageApexExecutionNano": 72373346,
+ "shortestApexExecutionNano": 12386580,
+ "longestApexExecutionNano": 133441277
+ },
+ {
+ "batchNumber": 8212,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124855760,
+ "shortestRoundTripNano": 45907851,
+ "longestRoundTripNano": 161689249,
+ "averageApexExecutionNano": 50310995,
+ "shortestApexExecutionNano": 7932517,
+ "longestApexExecutionNano": 112466850
+ },
+ {
+ "batchNumber": 8213,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142475951,
+ "shortestRoundTripNano": 71810644,
+ "longestRoundTripNano": 167832052,
+ "averageApexExecutionNano": 68809040,
+ "shortestApexExecutionNano": 12877918,
+ "longestApexExecutionNano": 124348646
+ },
+ {
+ "batchNumber": 8214,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157847130,
+ "shortestRoundTripNano": 67650929,
+ "longestRoundTripNano": 186291514,
+ "averageApexExecutionNano": 58835823,
+ "shortestApexExecutionNano": 8851747,
+ "longestApexExecutionNano": 127245440
+ },
+ {
+ "batchNumber": 8215,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141881926,
+ "shortestRoundTripNano": 30139388,
+ "longestRoundTripNano": 172565621,
+ "averageApexExecutionNano": 60877754,
+ "shortestApexExecutionNano": 8326221,
+ "longestApexExecutionNano": 133416140
+ },
+ {
+ "batchNumber": 8216,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159369951,
+ "shortestRoundTripNano": 53137206,
+ "longestRoundTripNano": 188869198,
+ "averageApexExecutionNano": 68978351,
+ "shortestApexExecutionNano": 17274608,
+ "longestApexExecutionNano": 141484299
+ },
+ {
+ "batchNumber": 8217,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136462713,
+ "shortestRoundTripNano": 64878646,
+ "longestRoundTripNano": 169039753,
+ "averageApexExecutionNano": 58136801,
+ "shortestApexExecutionNano": 9010702,
+ "longestApexExecutionNano": 117423684
+ },
+ {
+ "batchNumber": 8218,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37898",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145324997,
+ "shortestRoundTripNano": 57804685,
+ "longestRoundTripNano": 179260179,
+ "averageApexExecutionNano": 58561336,
+ "shortestApexExecutionNano": 9403258,
+ "longestApexExecutionNano": 120477031
+ },
+ {
+ "batchNumber": 8219,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137772805,
+ "shortestRoundTripNano": 68716458,
+ "longestRoundTripNano": 164425700,
+ "averageApexExecutionNano": 52476948,
+ "shortestApexExecutionNano": 8409600,
+ "longestApexExecutionNano": 117562450
+ },
+ {
+ "batchNumber": 8220,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158195896,
+ "shortestRoundTripNano": 53585145,
+ "longestRoundTripNano": 217346851,
+ "averageApexExecutionNano": 82487317,
+ "shortestApexExecutionNano": 10147734,
+ "longestApexExecutionNano": 151757187
+ },
+ {
+ "batchNumber": 8221,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151135220,
+ "shortestRoundTripNano": 88839885,
+ "longestRoundTripNano": 178230646,
+ "averageApexExecutionNano": 54426030,
+ "shortestApexExecutionNano": 7829818,
+ "longestApexExecutionNano": 135024759
+ },
+ {
+ "batchNumber": 8222,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160523762,
+ "shortestRoundTripNano": 58513527,
+ "longestRoundTripNano": 199819717,
+ "averageApexExecutionNano": 62586569,
+ "shortestApexExecutionNano": 8482587,
+ "longestApexExecutionNano": 139108556
+ },
+ {
+ "batchNumber": 8223,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147771458,
+ "shortestRoundTripNano": 39091583,
+ "longestRoundTripNano": 177789209,
+ "averageApexExecutionNano": 62531201,
+ "shortestApexExecutionNano": 9923303,
+ "longestApexExecutionNano": 140061839
+ },
+ {
+ "batchNumber": 8224,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149881241,
+ "shortestRoundTripNano": 64729055,
+ "longestRoundTripNano": 179167752,
+ "averageApexExecutionNano": 64408645,
+ "shortestApexExecutionNano": 15097821,
+ "longestApexExecutionNano": 127713494
+ },
+ {
+ "batchNumber": 8225,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37904",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140120461,
+ "shortestRoundTripNano": 63590747,
+ "longestRoundTripNano": 171699842,
+ "averageApexExecutionNano": 35361031,
+ "shortestApexExecutionNano": 6399709,
+ "longestApexExecutionNano": 93367147
+ },
+ {
+ "batchNumber": 8226,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161675392,
+ "shortestRoundTripNano": 105996804,
+ "longestRoundTripNano": 180057940,
+ "averageApexExecutionNano": 54853592,
+ "shortestApexExecutionNano": 9488793,
+ "longestApexExecutionNano": 114541203
+ },
+ {
+ "batchNumber": 8227,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159095923,
+ "shortestRoundTripNano": 67407674,
+ "longestRoundTripNano": 199343501,
+ "averageApexExecutionNano": 63105441,
+ "shortestApexExecutionNano": 10703041,
+ "longestApexExecutionNano": 153451046
+ },
+ {
+ "batchNumber": 8228,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165085271,
+ "shortestRoundTripNano": 92739246,
+ "longestRoundTripNano": 193628116,
+ "averageApexExecutionNano": 74396537,
+ "shortestApexExecutionNano": 25906582,
+ "longestApexExecutionNano": 131471915
+ },
+ {
+ "batchNumber": 8229,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132453661,
+ "shortestRoundTripNano": 62447155,
+ "longestRoundTripNano": 163444430,
+ "averageApexExecutionNano": 54468249,
+ "shortestApexExecutionNano": 7625367,
+ "longestApexExecutionNano": 122093316
+ },
+ {
+ "batchNumber": 8230,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37902",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151786211,
+ "shortestRoundTripNano": 54481553,
+ "longestRoundTripNano": 190403980,
+ "averageApexExecutionNano": 71904415,
+ "shortestApexExecutionNano": 6254479,
+ "longestApexExecutionNano": 145439642
+ },
+ {
+ "batchNumber": 8231,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153132917,
+ "shortestRoundTripNano": 75915962,
+ "longestRoundTripNano": 179064937,
+ "averageApexExecutionNano": 57821792,
+ "shortestApexExecutionNano": 7588213,
+ "longestApexExecutionNano": 113234762
+ },
+ {
+ "batchNumber": 8232,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37906",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150242543,
+ "shortestRoundTripNano": 31284010,
+ "longestRoundTripNano": 179023370,
+ "averageApexExecutionNano": 67616396,
+ "shortestApexExecutionNano": 6583767,
+ "longestApexExecutionNano": 134807268
+ },
+ {
+ "batchNumber": 8233,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156378938,
+ "shortestRoundTripNano": 83090321,
+ "longestRoundTripNano": 186706605,
+ "averageApexExecutionNano": 64459560,
+ "shortestApexExecutionNano": 7726119,
+ "longestApexExecutionNano": 137543243
+ },
+ {
+ "batchNumber": 8234,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166856339,
+ "shortestRoundTripNano": 58422784,
+ "longestRoundTripNano": 199018634,
+ "averageApexExecutionNano": 49628362,
+ "shortestApexExecutionNano": 7831163,
+ "longestApexExecutionNano": 121451550
+ },
+ {
+ "batchNumber": 8235,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145347950,
+ "shortestRoundTripNano": 89002294,
+ "longestRoundTripNano": 172952230,
+ "averageApexExecutionNano": 82900239,
+ "shortestApexExecutionNano": 13120824,
+ "longestApexExecutionNano": 134985048
+ },
+ {
+ "batchNumber": 8236,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147170924,
+ "shortestRoundTripNano": 74408535,
+ "longestRoundTripNano": 178866432,
+ "averageApexExecutionNano": 71108344,
+ "shortestApexExecutionNano": 7809854,
+ "longestApexExecutionNano": 141618760
+ },
+ {
+ "batchNumber": 8237,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162863032,
+ "shortestRoundTripNano": 78632635,
+ "longestRoundTripNano": 191417122,
+ "averageApexExecutionNano": 48196174,
+ "shortestApexExecutionNano": 4717380,
+ "longestApexExecutionNano": 141789549
+ },
+ {
+ "batchNumber": 8238,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 274223651,
+ "shortestRoundTripNano": 50431393,
+ "longestRoundTripNano": 309564869,
+ "averageApexExecutionNano": 112875898,
+ "shortestApexExecutionNano": 8020611,
+ "longestApexExecutionNano": 246379835
+ },
+ {
+ "batchNumber": 8239,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149322829,
+ "shortestRoundTripNano": 73928307,
+ "longestRoundTripNano": 178660496,
+ "averageApexExecutionNano": 66791184,
+ "shortestApexExecutionNano": 13609939,
+ "longestApexExecutionNano": 120139532
+ },
+ {
+ "batchNumber": 8240,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 174014124,
+ "shortestRoundTripNano": 72259555,
+ "longestRoundTripNano": 210728083,
+ "averageApexExecutionNano": 69419190,
+ "shortestApexExecutionNano": 10430796,
+ "longestApexExecutionNano": 143557116
+ },
+ {
+ "batchNumber": 8241,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37910",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154335399,
+ "shortestRoundTripNano": 67106124,
+ "longestRoundTripNano": 180992299,
+ "averageApexExecutionNano": 63160469,
+ "shortestApexExecutionNano": 6293072,
+ "longestApexExecutionNano": 137277773
+ },
+ {
+ "batchNumber": 8242,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139420599,
+ "shortestRoundTripNano": 70503505,
+ "longestRoundTripNano": 163696959,
+ "averageApexExecutionNano": 51986646,
+ "shortestApexExecutionNano": 6990886,
+ "longestApexExecutionNano": 119471602
+ },
+ {
+ "batchNumber": 8243,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150298186,
+ "shortestRoundTripNano": 55493836,
+ "longestRoundTripNano": 182475881,
+ "averageApexExecutionNano": 69862299,
+ "shortestApexExecutionNano": 8614757,
+ "longestApexExecutionNano": 138606956
+ },
+ {
+ "batchNumber": 8244,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172948292,
+ "shortestRoundTripNano": 95768845,
+ "longestRoundTripNano": 195505044,
+ "averageApexExecutionNano": 81575101,
+ "shortestApexExecutionNano": 12824088,
+ "longestApexExecutionNano": 141776343
+ },
+ {
+ "batchNumber": 8245,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146820541,
+ "shortestRoundTripNano": 63955259,
+ "longestRoundTripNano": 172386143,
+ "averageApexExecutionNano": 45528215,
+ "shortestApexExecutionNano": 6877783,
+ "longestApexExecutionNano": 104116388
+ },
+ {
+ "batchNumber": 8246,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149608848,
+ "shortestRoundTripNano": 67673929,
+ "longestRoundTripNano": 184216421,
+ "averageApexExecutionNano": 53294357,
+ "shortestApexExecutionNano": 7364344,
+ "longestApexExecutionNano": 102837867
+ },
+ {
+ "batchNumber": 8247,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146494811,
+ "shortestRoundTripNano": 66516240,
+ "longestRoundTripNano": 184662805,
+ "averageApexExecutionNano": 62527505,
+ "shortestApexExecutionNano": 8183940,
+ "longestApexExecutionNano": 125883937
+ },
+ {
+ "batchNumber": 8248,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143467914,
+ "shortestRoundTripNano": 50885336,
+ "longestRoundTripNano": 174276619,
+ "averageApexExecutionNano": 61247607,
+ "shortestApexExecutionNano": 4859908,
+ "longestApexExecutionNano": 122940331
+ },
+ {
+ "batchNumber": 8249,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140441600,
+ "shortestRoundTripNano": 63859992,
+ "longestRoundTripNano": 174812469,
+ "averageApexExecutionNano": 55495430,
+ "shortestApexExecutionNano": 9748727,
+ "longestApexExecutionNano": 117514290
+ },
+ {
+ "batchNumber": 8250,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37908",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 195350547,
+ "shortestRoundTripNano": 67770096,
+ "longestRoundTripNano": 237638194,
+ "averageApexExecutionNano": 67505663,
+ "shortestApexExecutionNano": 6122019,
+ "longestApexExecutionNano": 145433754
+ },
+ {
+ "batchNumber": 8251,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128323377,
+ "shortestRoundTripNano": 66898968,
+ "longestRoundTripNano": 158389175,
+ "averageApexExecutionNano": 52516091,
+ "shortestApexExecutionNano": 7661220,
+ "longestApexExecutionNano": 126063966
+ },
+ {
+ "batchNumber": 8252,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165311756,
+ "shortestRoundTripNano": 90611700,
+ "longestRoundTripNano": 188317595,
+ "averageApexExecutionNano": 78227430,
+ "shortestApexExecutionNano": 10747513,
+ "longestApexExecutionNano": 155204480
+ },
+ {
+ "batchNumber": 8253,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145697679,
+ "shortestRoundTripNano": 61650753,
+ "longestRoundTripNano": 175410393,
+ "averageApexExecutionNano": 47685751,
+ "shortestApexExecutionNano": 6599890,
+ "longestApexExecutionNano": 133791515
+ },
+ {
+ "batchNumber": 8254,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131109096,
+ "shortestRoundTripNano": 74462281,
+ "longestRoundTripNano": 158446306,
+ "averageApexExecutionNano": 58551770,
+ "shortestApexExecutionNano": 5365168,
+ "longestApexExecutionNano": 113066055
+ },
+ {
+ "batchNumber": 8255,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37914",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158176746,
+ "shortestRoundTripNano": 67036690,
+ "longestRoundTripNano": 185167446,
+ "averageApexExecutionNano": 61469098,
+ "shortestApexExecutionNano": 11212037,
+ "longestApexExecutionNano": 127159559
+ },
+ {
+ "batchNumber": 8256,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151805926,
+ "shortestRoundTripNano": 62774177,
+ "longestRoundTripNano": 191708302,
+ "averageApexExecutionNano": 69021256,
+ "shortestApexExecutionNano": 8193092,
+ "longestApexExecutionNano": 140530658
+ },
+ {
+ "batchNumber": 8257,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154288114,
+ "shortestRoundTripNano": 73774755,
+ "longestRoundTripNano": 192423348,
+ "averageApexExecutionNano": 67528722,
+ "shortestApexExecutionNano": 7644108,
+ "longestApexExecutionNano": 149627907
+ },
+ {
+ "batchNumber": 8258,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139252531,
+ "shortestRoundTripNano": 72836797,
+ "longestRoundTripNano": 166635735,
+ "averageApexExecutionNano": 62097497,
+ "shortestApexExecutionNano": 9043376,
+ "longestApexExecutionNano": 113322132
+ },
+ {
+ "batchNumber": 8259,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141980663,
+ "shortestRoundTripNano": 80233534,
+ "longestRoundTripNano": 169034126,
+ "averageApexExecutionNano": 62834379,
+ "shortestApexExecutionNano": 9539161,
+ "longestApexExecutionNano": 114909460
+ },
+ {
+ "batchNumber": 8260,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142443085,
+ "shortestRoundTripNano": 63430612,
+ "longestRoundTripNano": 173934233,
+ "averageApexExecutionNano": 51733325,
+ "shortestApexExecutionNano": 7457593,
+ "longestApexExecutionNano": 117753635
+ },
+ {
+ "batchNumber": 8261,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139701580,
+ "shortestRoundTripNano": 46061161,
+ "longestRoundTripNano": 177808233,
+ "averageApexExecutionNano": 58151970,
+ "shortestApexExecutionNano": 4834395,
+ "longestApexExecutionNano": 132619765
+ },
+ {
+ "batchNumber": 8262,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37916",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170829092,
+ "shortestRoundTripNano": 94563686,
+ "longestRoundTripNano": 202883579,
+ "averageApexExecutionNano": 77324695,
+ "shortestApexExecutionNano": 9022340,
+ "longestApexExecutionNano": 146094998
+ },
+ {
+ "batchNumber": 8263,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176496529,
+ "shortestRoundTripNano": 49953878,
+ "longestRoundTripNano": 213966818,
+ "averageApexExecutionNano": 68484906,
+ "shortestApexExecutionNano": 10286207,
+ "longestApexExecutionNano": 127263471
+ },
+ {
+ "batchNumber": 8264,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159196451,
+ "shortestRoundTripNano": 93515143,
+ "longestRoundTripNano": 194717282,
+ "averageApexExecutionNano": 65460588,
+ "shortestApexExecutionNano": 10816178,
+ "longestApexExecutionNano": 152252927
+ },
+ {
+ "batchNumber": 8265,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169314277,
+ "shortestRoundTripNano": 66831667,
+ "longestRoundTripNano": 205350768,
+ "averageApexExecutionNano": 68798371,
+ "shortestApexExecutionNano": 10829977,
+ "longestApexExecutionNano": 139501251
+ },
+ {
+ "batchNumber": 8266,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160709014,
+ "shortestRoundTripNano": 83041537,
+ "longestRoundTripNano": 183549384,
+ "averageApexExecutionNano": 79156106,
+ "shortestApexExecutionNano": 13530760,
+ "longestApexExecutionNano": 133809974
+ },
+ {
+ "batchNumber": 8267,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157805199,
+ "shortestRoundTripNano": 66114130,
+ "longestRoundTripNano": 185292865,
+ "averageApexExecutionNano": 62332834,
+ "shortestApexExecutionNano": 8440313,
+ "longestApexExecutionNano": 136897024
+ },
+ {
+ "batchNumber": 8268,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148642179,
+ "shortestRoundTripNano": 88481682,
+ "longestRoundTripNano": 175934498,
+ "averageApexExecutionNano": 63367816,
+ "shortestApexExecutionNano": 6502054,
+ "longestApexExecutionNano": 140386461
+ },
+ {
+ "batchNumber": 8269,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153370163,
+ "shortestRoundTripNano": 81553214,
+ "longestRoundTripNano": 190111861,
+ "averageApexExecutionNano": 53899877,
+ "shortestApexExecutionNano": 7415154,
+ "longestApexExecutionNano": 121649396
+ },
+ {
+ "batchNumber": 8270,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125857806,
+ "shortestRoundTripNano": 44577807,
+ "longestRoundTripNano": 155772028,
+ "averageApexExecutionNano": 55932033,
+ "shortestApexExecutionNano": 9329834,
+ "longestApexExecutionNano": 105561703
+ },
+ {
+ "batchNumber": 8271,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142860638,
+ "shortestRoundTripNano": 69306240,
+ "longestRoundTripNano": 167563003,
+ "averageApexExecutionNano": 61814492,
+ "shortestApexExecutionNano": 7271754,
+ "longestApexExecutionNano": 118413097
+ },
+ {
+ "batchNumber": 8272,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37918",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 187921582,
+ "shortestRoundTripNano": 91000464,
+ "longestRoundTripNano": 225827923,
+ "averageApexExecutionNano": 84171056,
+ "shortestApexExecutionNano": 12452524,
+ "longestApexExecutionNano": 150585480
+ },
+ {
+ "batchNumber": 8273,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144709537,
+ "shortestRoundTripNano": 73145696,
+ "longestRoundTripNano": 181848264,
+ "averageApexExecutionNano": 75536207,
+ "shortestApexExecutionNano": 10847283,
+ "longestApexExecutionNano": 132822757
+ },
+ {
+ "batchNumber": 8274,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160441569,
+ "shortestRoundTripNano": 64066853,
+ "longestRoundTripNano": 191432589,
+ "averageApexExecutionNano": 69399349,
+ "shortestApexExecutionNano": 12350518,
+ "longestApexExecutionNano": 141702475
+ },
+ {
+ "batchNumber": 8275,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155876286,
+ "shortestRoundTripNano": 78726603,
+ "longestRoundTripNano": 190573928,
+ "averageApexExecutionNano": 76158237,
+ "shortestApexExecutionNano": 12650222,
+ "longestApexExecutionNano": 129181418
+ },
+ {
+ "batchNumber": 8276,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37922",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156066639,
+ "shortestRoundTripNano": 53147143,
+ "longestRoundTripNano": 186165273,
+ "averageApexExecutionNano": 69807731,
+ "shortestApexExecutionNano": 23615412,
+ "longestApexExecutionNano": 123907741
+ },
+ {
+ "batchNumber": 8277,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133647928,
+ "shortestRoundTripNano": 63165708,
+ "longestRoundTripNano": 160007470,
+ "averageApexExecutionNano": 58553321,
+ "shortestApexExecutionNano": 9473225,
+ "longestApexExecutionNano": 113878213
+ },
+ {
+ "batchNumber": 8278,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139520839,
+ "shortestRoundTripNano": 59289539,
+ "longestRoundTripNano": 165224680,
+ "averageApexExecutionNano": 54293954,
+ "shortestApexExecutionNano": 10286315,
+ "longestApexExecutionNano": 118668026
+ },
+ {
+ "batchNumber": 8279,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149302115,
+ "shortestRoundTripNano": 86633393,
+ "longestRoundTripNano": 172454731,
+ "averageApexExecutionNano": 72656984,
+ "shortestApexExecutionNano": 15545691,
+ "longestApexExecutionNano": 119994667
+ },
+ {
+ "batchNumber": 8280,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137925499,
+ "shortestRoundTripNano": 54521659,
+ "longestRoundTripNano": 173494303,
+ "averageApexExecutionNano": 59249879,
+ "shortestApexExecutionNano": 13512315,
+ "longestApexExecutionNano": 128283885
+ },
+ {
+ "batchNumber": 8281,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165993085,
+ "shortestRoundTripNano": 76839778,
+ "longestRoundTripNano": 199062019,
+ "averageApexExecutionNano": 70805491,
+ "shortestApexExecutionNano": 11433754,
+ "longestApexExecutionNano": 152304939
+ },
+ {
+ "batchNumber": 8282,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153827140,
+ "shortestRoundTripNano": 78119753,
+ "longestRoundTripNano": 180838086,
+ "averageApexExecutionNano": 56724342,
+ "shortestApexExecutionNano": 7205553,
+ "longestApexExecutionNano": 126662885
+ },
+ {
+ "batchNumber": 8283,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37926",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136404483,
+ "shortestRoundTripNano": 61111416,
+ "longestRoundTripNano": 162767507,
+ "averageApexExecutionNano": 43584782,
+ "shortestApexExecutionNano": 5675049,
+ "longestApexExecutionNano": 99812162
+ },
+ {
+ "batchNumber": 8284,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133268184,
+ "shortestRoundTripNano": 64136810,
+ "longestRoundTripNano": 159372700,
+ "averageApexExecutionNano": 56463266,
+ "shortestApexExecutionNano": 7705641,
+ "longestApexExecutionNano": 118019678
+ },
+ {
+ "batchNumber": 8285,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144559371,
+ "shortestRoundTripNano": 62754331,
+ "longestRoundTripNano": 175700568,
+ "averageApexExecutionNano": 56756413,
+ "shortestApexExecutionNano": 5828741,
+ "longestApexExecutionNano": 126946402
+ },
+ {
+ "batchNumber": 8286,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37924",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145478915,
+ "shortestRoundTripNano": 52863536,
+ "longestRoundTripNano": 189344612,
+ "averageApexExecutionNano": 60613716,
+ "shortestApexExecutionNano": 5673471,
+ "longestApexExecutionNano": 123720883
+ },
+ {
+ "batchNumber": 8287,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136869930,
+ "shortestRoundTripNano": 83963227,
+ "longestRoundTripNano": 164318548,
+ "averageApexExecutionNano": 60656280,
+ "shortestApexExecutionNano": 6673687,
+ "longestApexExecutionNano": 127298092
+ },
+ {
+ "batchNumber": 8288,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167820527,
+ "shortestRoundTripNano": 62374324,
+ "longestRoundTripNano": 205739543,
+ "averageApexExecutionNano": 63343241,
+ "shortestApexExecutionNano": 11518381,
+ "longestApexExecutionNano": 157152384
+ },
+ {
+ "batchNumber": 8289,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37928",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 177407243,
+ "shortestRoundTripNano": 64989473,
+ "longestRoundTripNano": 208603967,
+ "averageApexExecutionNano": 92501746,
+ "shortestApexExecutionNano": 12009514,
+ "longestApexExecutionNano": 165506515
+ },
+ {
+ "batchNumber": 8290,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150607022,
+ "shortestRoundTripNano": 79471877,
+ "longestRoundTripNano": 173014254,
+ "averageApexExecutionNano": 54129339,
+ "shortestApexExecutionNano": 9021281,
+ "longestApexExecutionNano": 131703054
+ },
+ {
+ "batchNumber": 8291,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158949380,
+ "shortestRoundTripNano": 85728606,
+ "longestRoundTripNano": 186768948,
+ "averageApexExecutionNano": 61866495,
+ "shortestApexExecutionNano": 7789972,
+ "longestApexExecutionNano": 133469453
+ },
+ {
+ "batchNumber": 8292,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127706370,
+ "shortestRoundTripNano": 48539043,
+ "longestRoundTripNano": 161600500,
+ "averageApexExecutionNano": 56695592,
+ "shortestApexExecutionNano": 4956088,
+ "longestApexExecutionNano": 112223707
+ },
+ {
+ "batchNumber": 8293,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130299246,
+ "shortestRoundTripNano": 60328390,
+ "longestRoundTripNano": 158524901,
+ "averageApexExecutionNano": 59385869,
+ "shortestApexExecutionNano": 4600020,
+ "longestApexExecutionNano": 123774346
+ },
+ {
+ "batchNumber": 8294,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144518149,
+ "shortestRoundTripNano": 93025828,
+ "longestRoundTripNano": 169515934,
+ "averageApexExecutionNano": 54843661,
+ "shortestApexExecutionNano": 7325486,
+ "longestApexExecutionNano": 129269285
+ },
+ {
+ "batchNumber": 8295,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158374263,
+ "shortestRoundTripNano": 72854023,
+ "longestRoundTripNano": 186496621,
+ "averageApexExecutionNano": 74524257,
+ "shortestApexExecutionNano": 6259358,
+ "longestApexExecutionNano": 136406229
+ },
+ {
+ "batchNumber": 8296,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140116308,
+ "shortestRoundTripNano": 54408537,
+ "longestRoundTripNano": 174291837,
+ "averageApexExecutionNano": 70475085,
+ "shortestApexExecutionNano": 7517228,
+ "longestApexExecutionNano": 132565327
+ },
+ {
+ "batchNumber": 8297,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37930",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 173855215,
+ "shortestRoundTripNano": 64817394,
+ "longestRoundTripNano": 207067154,
+ "averageApexExecutionNano": 64816305,
+ "shortestApexExecutionNano": 7867624,
+ "longestApexExecutionNano": 147979420
+ },
+ {
+ "batchNumber": 8298,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150850098,
+ "shortestRoundTripNano": 70368469,
+ "longestRoundTripNano": 174926274,
+ "averageApexExecutionNano": 56735428,
+ "shortestApexExecutionNano": 12338006,
+ "longestApexExecutionNano": 116287093
+ },
+ {
+ "batchNumber": 8299,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163418713,
+ "shortestRoundTripNano": 89295748,
+ "longestRoundTripNano": 191575030,
+ "averageApexExecutionNano": 64094689,
+ "shortestApexExecutionNano": 12337072,
+ "longestApexExecutionNano": 146663420
+ },
+ {
+ "batchNumber": 8300,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37932",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153171984,
+ "shortestRoundTripNano": 40758599,
+ "longestRoundTripNano": 191526343,
+ "averageApexExecutionNano": 56174884,
+ "shortestApexExecutionNano": 7738420,
+ "longestApexExecutionNano": 128862702
+ },
+ {
+ "batchNumber": 8301,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157045294,
+ "shortestRoundTripNano": 75760998,
+ "longestRoundTripNano": 185884302,
+ "averageApexExecutionNano": 72485175,
+ "shortestApexExecutionNano": 13669015,
+ "longestApexExecutionNano": 134877623
+ },
+ {
+ "batchNumber": 8302,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156402795,
+ "shortestRoundTripNano": 52451057,
+ "longestRoundTripNano": 190742579,
+ "averageApexExecutionNano": 54965824,
+ "shortestApexExecutionNano": 6376608,
+ "longestApexExecutionNano": 135803031
+ },
+ {
+ "batchNumber": 8303,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143040187,
+ "shortestRoundTripNano": 65942439,
+ "longestRoundTripNano": 169167685,
+ "averageApexExecutionNano": 49319198,
+ "shortestApexExecutionNano": 6223219,
+ "longestApexExecutionNano": 115540247
+ },
+ {
+ "batchNumber": 8304,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153926773,
+ "shortestRoundTripNano": 81447589,
+ "longestRoundTripNano": 189989161,
+ "averageApexExecutionNano": 70938663,
+ "shortestApexExecutionNano": 15017000,
+ "longestApexExecutionNano": 119591537
+ },
+ {
+ "batchNumber": 8305,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158275611,
+ "shortestRoundTripNano": 70501588,
+ "longestRoundTripNano": 200871229,
+ "averageApexExecutionNano": 75389742,
+ "shortestApexExecutionNano": 7984580,
+ "longestApexExecutionNano": 157340313
+ },
+ {
+ "batchNumber": 8306,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148883333,
+ "shortestRoundTripNano": 62482077,
+ "longestRoundTripNano": 180534073,
+ "averageApexExecutionNano": 50622040,
+ "shortestApexExecutionNano": 10276959,
+ "longestApexExecutionNano": 120900721
+ },
+ {
+ "batchNumber": 8307,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169429108,
+ "shortestRoundTripNano": 83556948,
+ "longestRoundTripNano": 205044404,
+ "averageApexExecutionNano": 72748213,
+ "shortestApexExecutionNano": 6758367,
+ "longestApexExecutionNano": 136283059
+ },
+ {
+ "batchNumber": 8308,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37934",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162351956,
+ "shortestRoundTripNano": 88455011,
+ "longestRoundTripNano": 189197875,
+ "averageApexExecutionNano": 52902103,
+ "shortestApexExecutionNano": 9119326,
+ "longestApexExecutionNano": 124976016
+ },
+ {
+ "batchNumber": 8309,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172180725,
+ "shortestRoundTripNano": 102671058,
+ "longestRoundTripNano": 198068875,
+ "averageApexExecutionNano": 70070221,
+ "shortestApexExecutionNano": 6107421,
+ "longestApexExecutionNano": 142725201
+ },
+ {
+ "batchNumber": 8310,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164909721,
+ "shortestRoundTripNano": 100288703,
+ "longestRoundTripNano": 204387577,
+ "averageApexExecutionNano": 73057123,
+ "shortestApexExecutionNano": 7536128,
+ "longestApexExecutionNano": 160449699
+ },
+ {
+ "batchNumber": 8311,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150390947,
+ "shortestRoundTripNano": 74861186,
+ "longestRoundTripNano": 177079636,
+ "averageApexExecutionNano": 73943546,
+ "shortestApexExecutionNano": 10277530,
+ "longestApexExecutionNano": 124730700
+ },
+ {
+ "batchNumber": 8312,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 169021976,
+ "shortestRoundTripNano": 42466420,
+ "longestRoundTripNano": 203778817,
+ "averageApexExecutionNano": 58435254,
+ "shortestApexExecutionNano": 7544806,
+ "longestApexExecutionNano": 125392147
+ },
+ {
+ "batchNumber": 8313,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37936",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146438587,
+ "shortestRoundTripNano": 55781083,
+ "longestRoundTripNano": 181594626,
+ "averageApexExecutionNano": 73311180,
+ "shortestApexExecutionNano": 6677821,
+ "longestApexExecutionNano": 142131775
+ },
+ {
+ "batchNumber": 8314,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158119714,
+ "shortestRoundTripNano": 81220775,
+ "longestRoundTripNano": 185928247,
+ "averageApexExecutionNano": 67857937,
+ "shortestApexExecutionNano": 12622952,
+ "longestApexExecutionNano": 126570233
+ },
+ {
+ "batchNumber": 8315,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152728257,
+ "shortestRoundTripNano": 73505555,
+ "longestRoundTripNano": 178246490,
+ "averageApexExecutionNano": 65193645,
+ "shortestApexExecutionNano": 9078012,
+ "longestApexExecutionNano": 132884262
+ },
+ {
+ "batchNumber": 8316,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37938",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156627922,
+ "shortestRoundTripNano": 64962222,
+ "longestRoundTripNano": 193635519,
+ "averageApexExecutionNano": 60560836,
+ "shortestApexExecutionNano": 8855155,
+ "longestApexExecutionNano": 135834152
+ },
+ {
+ "batchNumber": 8317,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168056063,
+ "shortestRoundTripNano": 44646957,
+ "longestRoundTripNano": 209329818,
+ "averageApexExecutionNano": 81624357,
+ "shortestApexExecutionNano": 10193776,
+ "longestApexExecutionNano": 155128386
+ },
+ {
+ "batchNumber": 8318,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138378230,
+ "shortestRoundTripNano": 62707661,
+ "longestRoundTripNano": 163750598,
+ "averageApexExecutionNano": 65067366,
+ "shortestApexExecutionNano": 11848020,
+ "longestApexExecutionNano": 113473070
+ },
+ {
+ "batchNumber": 8319,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37942",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137054397,
+ "shortestRoundTripNano": 58000908,
+ "longestRoundTripNano": 169361477,
+ "averageApexExecutionNano": 46911757,
+ "shortestApexExecutionNano": 8568208,
+ "longestApexExecutionNano": 88644215
+ },
+ {
+ "batchNumber": 8320,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166424253,
+ "shortestRoundTripNano": 55312678,
+ "longestRoundTripNano": 203290663,
+ "averageApexExecutionNano": 81857152,
+ "shortestApexExecutionNano": 12858183,
+ "longestApexExecutionNano": 140255824
+ },
+ {
+ "batchNumber": 8321,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166905805,
+ "shortestRoundTripNano": 90383660,
+ "longestRoundTripNano": 205585456,
+ "averageApexExecutionNano": 64128152,
+ "shortestApexExecutionNano": 5896790,
+ "longestApexExecutionNano": 162129872
+ },
+ {
+ "batchNumber": 8322,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139301172,
+ "shortestRoundTripNano": 72065919,
+ "longestRoundTripNano": 162601170,
+ "averageApexExecutionNano": 60699388,
+ "shortestApexExecutionNano": 5757725,
+ "longestApexExecutionNano": 116182853
+ },
+ {
+ "batchNumber": 8323,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155665817,
+ "shortestRoundTripNano": 67154078,
+ "longestRoundTripNano": 185112416,
+ "averageApexExecutionNano": 59257894,
+ "shortestApexExecutionNano": 7230312,
+ "longestApexExecutionNano": 110140614
+ },
+ {
+ "batchNumber": 8324,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139048584,
+ "shortestRoundTripNano": 71852567,
+ "longestRoundTripNano": 162757701,
+ "averageApexExecutionNano": 68143616,
+ "shortestApexExecutionNano": 10053029,
+ "longestApexExecutionNano": 125753119
+ },
+ {
+ "batchNumber": 8325,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160097411,
+ "shortestRoundTripNano": 75446895,
+ "longestRoundTripNano": 189452556,
+ "averageApexExecutionNano": 81600560,
+ "shortestApexExecutionNano": 12527311,
+ "longestApexExecutionNano": 147664318
+ },
+ {
+ "batchNumber": 8326,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133829086,
+ "shortestRoundTripNano": 62113622,
+ "longestRoundTripNano": 163778342,
+ "averageApexExecutionNano": 54937776,
+ "shortestApexExecutionNano": 6524342,
+ "longestApexExecutionNano": 118375704
+ },
+ {
+ "batchNumber": 8327,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153806346,
+ "shortestRoundTripNano": 78002402,
+ "longestRoundTripNano": 192999680,
+ "averageApexExecutionNano": 63519879,
+ "shortestApexExecutionNano": 5802914,
+ "longestApexExecutionNano": 129581859
+ },
+ {
+ "batchNumber": 8328,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162794112,
+ "shortestRoundTripNano": 73387879,
+ "longestRoundTripNano": 196726796,
+ "averageApexExecutionNano": 57090603,
+ "shortestApexExecutionNano": 11023110,
+ "longestApexExecutionNano": 128026834
+ },
+ {
+ "batchNumber": 8329,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179768158,
+ "shortestRoundTripNano": 85779937,
+ "longestRoundTripNano": 224316076,
+ "averageApexExecutionNano": 90528047,
+ "shortestApexExecutionNano": 5473572,
+ "longestApexExecutionNano": 162099840
+ },
+ {
+ "batchNumber": 8330,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161090689,
+ "shortestRoundTripNano": 57906054,
+ "longestRoundTripNano": 185966776,
+ "averageApexExecutionNano": 59332413,
+ "shortestApexExecutionNano": 9907217,
+ "longestApexExecutionNano": 124471863
+ },
+ {
+ "batchNumber": 8331,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161015290,
+ "shortestRoundTripNano": 60506081,
+ "longestRoundTripNano": 199044717,
+ "averageApexExecutionNano": 58028676,
+ "shortestApexExecutionNano": 7290459,
+ "longestApexExecutionNano": 134719031
+ },
+ {
+ "batchNumber": 8332,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146169872,
+ "shortestRoundTripNano": 30916281,
+ "longestRoundTripNano": 176537224,
+ "averageApexExecutionNano": 63338480,
+ "shortestApexExecutionNano": 7306018,
+ "longestApexExecutionNano": 137503681
+ },
+ {
+ "batchNumber": 8333,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130451868,
+ "shortestRoundTripNano": 54567615,
+ "longestRoundTripNano": 167736746,
+ "averageApexExecutionNano": 57484411,
+ "shortestApexExecutionNano": 10053063,
+ "longestApexExecutionNano": 113849532
+ },
+ {
+ "batchNumber": 8334,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165554045,
+ "shortestRoundTripNano": 87277390,
+ "longestRoundTripNano": 187230886,
+ "averageApexExecutionNano": 73876617,
+ "shortestApexExecutionNano": 7728944,
+ "longestApexExecutionNano": 143117544
+ },
+ {
+ "batchNumber": 8335,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166213252,
+ "shortestRoundTripNano": 88168120,
+ "longestRoundTripNano": 194848353,
+ "averageApexExecutionNano": 84488769,
+ "shortestApexExecutionNano": 11391526,
+ "longestApexExecutionNano": 155402604
+ },
+ {
+ "batchNumber": 8336,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149442815,
+ "shortestRoundTripNano": 88809921,
+ "longestRoundTripNano": 178073049,
+ "averageApexExecutionNano": 55381730,
+ "shortestApexExecutionNano": 5926712,
+ "longestApexExecutionNano": 140754817
+ },
+ {
+ "batchNumber": 8337,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165719821,
+ "shortestRoundTripNano": 50137233,
+ "longestRoundTripNano": 201085355,
+ "averageApexExecutionNano": 81910436,
+ "shortestApexExecutionNano": 9239530,
+ "longestApexExecutionNano": 154269218
+ },
+ {
+ "batchNumber": 8338,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154061374,
+ "shortestRoundTripNano": 68875949,
+ "longestRoundTripNano": 185345155,
+ "averageApexExecutionNano": 77374256,
+ "shortestApexExecutionNano": 7199380,
+ "longestApexExecutionNano": 144758992
+ },
+ {
+ "batchNumber": 8339,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155855172,
+ "shortestRoundTripNano": 95987853,
+ "longestRoundTripNano": 187649720,
+ "averageApexExecutionNano": 66064420,
+ "shortestApexExecutionNano": 13626151,
+ "longestApexExecutionNano": 143778720
+ },
+ {
+ "batchNumber": 8340,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155551232,
+ "shortestRoundTripNano": 87404945,
+ "longestRoundTripNano": 186820585,
+ "averageApexExecutionNano": 71045932,
+ "shortestApexExecutionNano": 8983007,
+ "longestApexExecutionNano": 129090705
+ },
+ {
+ "batchNumber": 8341,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148051409,
+ "shortestRoundTripNano": 59736664,
+ "longestRoundTripNano": 177396852,
+ "averageApexExecutionNano": 50972606,
+ "shortestApexExecutionNano": 5940095,
+ "longestApexExecutionNano": 131606066
+ },
+ {
+ "batchNumber": 8342,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154442216,
+ "shortestRoundTripNano": 83532842,
+ "longestRoundTripNano": 177284146,
+ "averageApexExecutionNano": 70663795,
+ "shortestApexExecutionNano": 21144617,
+ "longestApexExecutionNano": 123812032
+ },
+ {
+ "batchNumber": 8343,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142228181,
+ "shortestRoundTripNano": 53038877,
+ "longestRoundTripNano": 171177259,
+ "averageApexExecutionNano": 61741113,
+ "shortestApexExecutionNano": 12116733,
+ "longestApexExecutionNano": 111788988
+ },
+ {
+ "batchNumber": 8344,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158536662,
+ "shortestRoundTripNano": 61485628,
+ "longestRoundTripNano": 189448226,
+ "averageApexExecutionNano": 59422884,
+ "shortestApexExecutionNano": 7998844,
+ "longestApexExecutionNano": 99528785
+ },
+ {
+ "batchNumber": 8345,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37940",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 213808663,
+ "shortestRoundTripNano": 65746148,
+ "longestRoundTripNano": 245428693,
+ "averageApexExecutionNano": 122675454,
+ "shortestApexExecutionNano": 27045089,
+ "longestApexExecutionNano": 181821715
+ },
+ {
+ "batchNumber": 8346,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168958535,
+ "shortestRoundTripNano": 51900058,
+ "longestRoundTripNano": 205156654,
+ "averageApexExecutionNano": 59743458,
+ "shortestApexExecutionNano": 7245062,
+ "longestApexExecutionNano": 150534348
+ },
+ {
+ "batchNumber": 8347,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159544990,
+ "shortestRoundTripNano": 61013763,
+ "longestRoundTripNano": 187944420,
+ "averageApexExecutionNano": 69489846,
+ "shortestApexExecutionNano": 10951618,
+ "longestApexExecutionNano": 138359301
+ },
+ {
+ "batchNumber": 8348,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129979826,
+ "shortestRoundTripNano": 55301005,
+ "longestRoundTripNano": 158010540,
+ "averageApexExecutionNano": 59310175,
+ "shortestApexExecutionNano": 12329442,
+ "longestApexExecutionNano": 110652563
+ },
+ {
+ "batchNumber": 8349,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153082182,
+ "shortestRoundTripNano": 80154163,
+ "longestRoundTripNano": 182215809,
+ "averageApexExecutionNano": 62322126,
+ "shortestApexExecutionNano": 13382695,
+ "longestApexExecutionNano": 116099977
+ },
+ {
+ "batchNumber": 8350,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148866007,
+ "shortestRoundTripNano": 68190834,
+ "longestRoundTripNano": 183681395,
+ "averageApexExecutionNano": 61796712,
+ "shortestApexExecutionNano": 8900566,
+ "longestApexExecutionNano": 122400243
+ },
+ {
+ "batchNumber": 8351,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 115845804,
+ "shortestRoundTripNano": 46436157,
+ "longestRoundTripNano": 145650513,
+ "averageApexExecutionNano": 42778804,
+ "shortestApexExecutionNano": 6823111,
+ "longestApexExecutionNano": 105653291
+ },
+ {
+ "batchNumber": 8352,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37952",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 117170363,
+ "shortestRoundTripNano": 45873143,
+ "longestRoundTripNano": 148084403,
+ "averageApexExecutionNano": 49518960,
+ "shortestApexExecutionNano": 5789686,
+ "longestApexExecutionNano": 109887067
+ },
+ {
+ "batchNumber": 8353,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144144942,
+ "shortestRoundTripNano": 63581785,
+ "longestRoundTripNano": 173238343,
+ "averageApexExecutionNano": 57231706,
+ "shortestApexExecutionNano": 9565944,
+ "longestApexExecutionNano": 125488337
+ },
+ {
+ "batchNumber": 8354,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148563789,
+ "shortestRoundTripNano": 82147882,
+ "longestRoundTripNano": 185989531,
+ "averageApexExecutionNano": 44647757,
+ "shortestApexExecutionNano": 10043433,
+ "longestApexExecutionNano": 117166809
+ },
+ {
+ "batchNumber": 8355,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144938257,
+ "shortestRoundTripNano": 83498988,
+ "longestRoundTripNano": 169361533,
+ "averageApexExecutionNano": 63779940,
+ "shortestApexExecutionNano": 6645067,
+ "longestApexExecutionNano": 130019570
+ },
+ {
+ "batchNumber": 8356,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130821613,
+ "shortestRoundTripNano": 62274830,
+ "longestRoundTripNano": 168957577,
+ "averageApexExecutionNano": 46769139,
+ "shortestApexExecutionNano": 5449431,
+ "longestApexExecutionNano": 111978208
+ },
+ {
+ "batchNumber": 8357,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126289789,
+ "shortestRoundTripNano": 52025190,
+ "longestRoundTripNano": 153503743,
+ "averageApexExecutionNano": 49608434,
+ "shortestApexExecutionNano": 6060837,
+ "longestApexExecutionNano": 112456792
+ },
+ {
+ "batchNumber": 8358,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148922738,
+ "shortestRoundTripNano": 56464004,
+ "longestRoundTripNano": 183139438,
+ "averageApexExecutionNano": 63112060,
+ "shortestApexExecutionNano": 7992588,
+ "longestApexExecutionNano": 125929137
+ },
+ {
+ "batchNumber": 8359,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142296477,
+ "shortestRoundTripNano": 69814086,
+ "longestRoundTripNano": 180087309,
+ "averageApexExecutionNano": 66071820,
+ "shortestApexExecutionNano": 10676877,
+ "longestApexExecutionNano": 116943401
+ },
+ {
+ "batchNumber": 8360,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37958",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134687839,
+ "shortestRoundTripNano": 63444004,
+ "longestRoundTripNano": 167076942,
+ "averageApexExecutionNano": 56125406,
+ "shortestApexExecutionNano": 8676058,
+ "longestApexExecutionNano": 106347941
+ },
+ {
+ "batchNumber": 8361,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119474688,
+ "shortestRoundTripNano": 57301928,
+ "longestRoundTripNano": 146099049,
+ "averageApexExecutionNano": 52287126,
+ "shortestApexExecutionNano": 7129041,
+ "longestApexExecutionNano": 103498266
+ },
+ {
+ "batchNumber": 8362,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153425803,
+ "shortestRoundTripNano": 80486055,
+ "longestRoundTripNano": 186517523,
+ "averageApexExecutionNano": 50547527,
+ "shortestApexExecutionNano": 8833499,
+ "longestApexExecutionNano": 119191767
+ },
+ {
+ "batchNumber": 8363,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158570191,
+ "shortestRoundTripNano": 48544533,
+ "longestRoundTripNano": 194364056,
+ "averageApexExecutionNano": 57893320,
+ "shortestApexExecutionNano": 8712565,
+ "longestApexExecutionNano": 130362519
+ },
+ {
+ "batchNumber": 8364,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138202068,
+ "shortestRoundTripNano": 45927605,
+ "longestRoundTripNano": 165927369,
+ "averageApexExecutionNano": 69504770,
+ "shortestApexExecutionNano": 6365257,
+ "longestApexExecutionNano": 122444352
+ },
+ {
+ "batchNumber": 8365,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37954",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164440766,
+ "shortestRoundTripNano": 56913676,
+ "longestRoundTripNano": 190570381,
+ "averageApexExecutionNano": 62098757,
+ "shortestApexExecutionNano": 8454226,
+ "longestApexExecutionNano": 127806194
+ },
+ {
+ "batchNumber": 8366,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149535940,
+ "shortestRoundTripNano": 63104713,
+ "longestRoundTripNano": 175806392,
+ "averageApexExecutionNano": 56932096,
+ "shortestApexExecutionNano": 5981909,
+ "longestApexExecutionNano": 112984619
+ },
+ {
+ "batchNumber": 8367,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150362448,
+ "shortestRoundTripNano": 78634777,
+ "longestRoundTripNano": 168348387,
+ "averageApexExecutionNano": 74568251,
+ "shortestApexExecutionNano": 11697351,
+ "longestApexExecutionNano": 122232433
+ },
+ {
+ "batchNumber": 8368,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165804317,
+ "shortestRoundTripNano": 64994871,
+ "longestRoundTripNano": 195081643,
+ "averageApexExecutionNano": 71824467,
+ "shortestApexExecutionNano": 12434207,
+ "longestApexExecutionNano": 142331074
+ },
+ {
+ "batchNumber": 8369,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131371999,
+ "shortestRoundTripNano": 33189873,
+ "longestRoundTripNano": 170988675,
+ "averageApexExecutionNano": 53701617,
+ "shortestApexExecutionNano": 8154082,
+ "longestApexExecutionNano": 121443961
+ },
+ {
+ "batchNumber": 8370,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167081402,
+ "shortestRoundTripNano": 88472449,
+ "longestRoundTripNano": 195552822,
+ "averageApexExecutionNano": 74960338,
+ "shortestApexExecutionNano": 18365615,
+ "longestApexExecutionNano": 142400629
+ },
+ {
+ "batchNumber": 8371,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166774762,
+ "shortestRoundTripNano": 86358783,
+ "longestRoundTripNano": 190179695,
+ "averageApexExecutionNano": 64741501,
+ "shortestApexExecutionNano": 7678488,
+ "longestApexExecutionNano": 135676766
+ },
+ {
+ "batchNumber": 8372,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129865706,
+ "shortestRoundTripNano": 52262605,
+ "longestRoundTripNano": 172945966,
+ "averageApexExecutionNano": 52597430,
+ "shortestApexExecutionNano": 5838954,
+ "longestApexExecutionNano": 116619059
+ },
+ {
+ "batchNumber": 8373,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37960",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141080714,
+ "shortestRoundTripNano": 52531481,
+ "longestRoundTripNano": 182376773,
+ "averageApexExecutionNano": 72044069,
+ "shortestApexExecutionNano": 14166730,
+ "longestApexExecutionNano": 135129851
+ },
+ {
+ "batchNumber": 8374,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153597175,
+ "shortestRoundTripNano": 85834987,
+ "longestRoundTripNano": 178759441,
+ "averageApexExecutionNano": 68544316,
+ "shortestApexExecutionNano": 7260690,
+ "longestApexExecutionNano": 133360105
+ },
+ {
+ "batchNumber": 8375,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140659033,
+ "shortestRoundTripNano": 60703391,
+ "longestRoundTripNano": 170895479,
+ "averageApexExecutionNano": 58460116,
+ "shortestApexExecutionNano": 7780565,
+ "longestApexExecutionNano": 114104474
+ },
+ {
+ "batchNumber": 8376,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165572255,
+ "shortestRoundTripNano": 47758179,
+ "longestRoundTripNano": 196407426,
+ "averageApexExecutionNano": 61275855,
+ "shortestApexExecutionNano": 6364989,
+ "longestApexExecutionNano": 138645460
+ },
+ {
+ "batchNumber": 8377,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37964",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135645858,
+ "shortestRoundTripNano": 54992487,
+ "longestRoundTripNano": 162523225,
+ "averageApexExecutionNano": 52042840,
+ "shortestApexExecutionNano": 5161141,
+ "longestApexExecutionNano": 113359535
+ },
+ {
+ "batchNumber": 8378,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152008834,
+ "shortestRoundTripNano": 90204146,
+ "longestRoundTripNano": 177218588,
+ "averageApexExecutionNano": 63794964,
+ "shortestApexExecutionNano": 9450896,
+ "longestApexExecutionNano": 121602085
+ },
+ {
+ "batchNumber": 8379,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168492235,
+ "shortestRoundTripNano": 67266629,
+ "longestRoundTripNano": 203854653,
+ "averageApexExecutionNano": 62643063,
+ "shortestApexExecutionNano": 10524569,
+ "longestApexExecutionNano": 135728847
+ },
+ {
+ "batchNumber": 8380,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149533632,
+ "shortestRoundTripNano": 67094893,
+ "longestRoundTripNano": 187623047,
+ "averageApexExecutionNano": 69889717,
+ "shortestApexExecutionNano": 10710498,
+ "longestApexExecutionNano": 142641411
+ },
+ {
+ "batchNumber": 8381,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135199735,
+ "shortestRoundTripNano": 68791162,
+ "longestRoundTripNano": 177509414,
+ "averageApexExecutionNano": 61939094,
+ "shortestApexExecutionNano": 7099989,
+ "longestApexExecutionNano": 126437541
+ },
+ {
+ "batchNumber": 8382,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133507638,
+ "shortestRoundTripNano": 66105600,
+ "longestRoundTripNano": 160395518,
+ "averageApexExecutionNano": 59281623,
+ "shortestApexExecutionNano": 8562986,
+ "longestApexExecutionNano": 124987977
+ },
+ {
+ "batchNumber": 8383,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140760484,
+ "shortestRoundTripNano": 57393965,
+ "longestRoundTripNano": 171849700,
+ "averageApexExecutionNano": 63639055,
+ "shortestApexExecutionNano": 8081668,
+ "longestApexExecutionNano": 131488240
+ },
+ {
+ "batchNumber": 8384,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153844546,
+ "shortestRoundTripNano": 71250146,
+ "longestRoundTripNano": 185399820,
+ "averageApexExecutionNano": 51898386,
+ "shortestApexExecutionNano": 7994480,
+ "longestApexExecutionNano": 108713259
+ },
+ {
+ "batchNumber": 8385,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148028190,
+ "shortestRoundTripNano": 44152271,
+ "longestRoundTripNano": 175310839,
+ "averageApexExecutionNano": 57590850,
+ "shortestApexExecutionNano": 7987436,
+ "longestApexExecutionNano": 121730535
+ },
+ {
+ "batchNumber": 8386,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130165015,
+ "shortestRoundTripNano": 60809364,
+ "longestRoundTripNano": 157360859,
+ "averageApexExecutionNano": 59866186,
+ "shortestApexExecutionNano": 6565029,
+ "longestApexExecutionNano": 112466735
+ },
+ {
+ "batchNumber": 8387,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160646010,
+ "shortestRoundTripNano": 70705899,
+ "longestRoundTripNano": 193004990,
+ "averageApexExecutionNano": 79076910,
+ "shortestApexExecutionNano": 9460367,
+ "longestApexExecutionNano": 149583331
+ },
+ {
+ "batchNumber": 8388,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155632628,
+ "shortestRoundTripNano": 81810380,
+ "longestRoundTripNano": 193627648,
+ "averageApexExecutionNano": 78793296,
+ "shortestApexExecutionNano": 8750302,
+ "longestApexExecutionNano": 160977573
+ },
+ {
+ "batchNumber": 8389,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147943910,
+ "shortestRoundTripNano": 62963471,
+ "longestRoundTripNano": 174410618,
+ "averageApexExecutionNano": 60095933,
+ "shortestApexExecutionNano": 15660350,
+ "longestApexExecutionNano": 129739828
+ },
+ {
+ "batchNumber": 8390,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153486643,
+ "shortestRoundTripNano": 90830162,
+ "longestRoundTripNano": 174982458,
+ "averageApexExecutionNano": 72841316,
+ "shortestApexExecutionNano": 10689580,
+ "longestApexExecutionNano": 134016159
+ },
+ {
+ "batchNumber": 8391,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143223575,
+ "shortestRoundTripNano": 51132265,
+ "longestRoundTripNano": 184525326,
+ "averageApexExecutionNano": 51885953,
+ "shortestApexExecutionNano": 8539664,
+ "longestApexExecutionNano": 126496386
+ },
+ {
+ "batchNumber": 8392,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148245248,
+ "shortestRoundTripNano": 64516601,
+ "longestRoundTripNano": 184390007,
+ "averageApexExecutionNano": 72162058,
+ "shortestApexExecutionNano": 9680188,
+ "longestApexExecutionNano": 138473484
+ },
+ {
+ "batchNumber": 8393,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37962",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 236516991,
+ "shortestRoundTripNano": 55812761,
+ "longestRoundTripNano": 273522294,
+ "averageApexExecutionNano": 93096926,
+ "shortestApexExecutionNano": 10831188,
+ "longestApexExecutionNano": 232830779
+ },
+ {
+ "batchNumber": 8394,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146810850,
+ "shortestRoundTripNano": 65321343,
+ "longestRoundTripNano": 180785576,
+ "averageApexExecutionNano": 66271071,
+ "shortestApexExecutionNano": 9485212,
+ "longestApexExecutionNano": 118399222
+ },
+ {
+ "batchNumber": 8395,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162518913,
+ "shortestRoundTripNano": 57969801,
+ "longestRoundTripNano": 188428833,
+ "averageApexExecutionNano": 82700982,
+ "shortestApexExecutionNano": 10226606,
+ "longestApexExecutionNano": 139083490
+ },
+ {
+ "batchNumber": 8396,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37970",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 172893170,
+ "shortestRoundTripNano": 70045434,
+ "longestRoundTripNano": 206327733,
+ "averageApexExecutionNano": 82465689,
+ "shortestApexExecutionNano": 9580219,
+ "longestApexExecutionNano": 152205450
+ },
+ {
+ "batchNumber": 8397,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122126805,
+ "shortestRoundTripNano": 36087677,
+ "longestRoundTripNano": 156395064,
+ "averageApexExecutionNano": 53111040,
+ "shortestApexExecutionNano": 6788813,
+ "longestApexExecutionNano": 115667808
+ },
+ {
+ "batchNumber": 8398,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142950022,
+ "shortestRoundTripNano": 57826395,
+ "longestRoundTripNano": 168375046,
+ "averageApexExecutionNano": 60519644,
+ "shortestApexExecutionNano": 6670732,
+ "longestApexExecutionNano": 118127720
+ },
+ {
+ "batchNumber": 8399,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129309020,
+ "shortestRoundTripNano": 50630554,
+ "longestRoundTripNano": 158119794,
+ "averageApexExecutionNano": 54578139,
+ "shortestApexExecutionNano": 8268742,
+ "longestApexExecutionNano": 108891493
+ },
+ {
+ "batchNumber": 8400,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131711579,
+ "shortestRoundTripNano": 61390500,
+ "longestRoundTripNano": 157012783,
+ "averageApexExecutionNano": 64775038,
+ "shortestApexExecutionNano": 25639289,
+ "longestApexExecutionNano": 110918889
+ },
+ {
+ "batchNumber": 8401,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37972",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149913005,
+ "shortestRoundTripNano": 59503395,
+ "longestRoundTripNano": 183540570,
+ "averageApexExecutionNano": 72918066,
+ "shortestApexExecutionNano": 10805431,
+ "longestApexExecutionNano": 136986018
+ },
+ {
+ "batchNumber": 8402,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141527544,
+ "shortestRoundTripNano": 90544113,
+ "longestRoundTripNano": 161894560,
+ "averageApexExecutionNano": 52771751,
+ "shortestApexExecutionNano": 9554801,
+ "longestApexExecutionNano": 99263540
+ },
+ {
+ "batchNumber": 8403,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 122618354,
+ "shortestRoundTripNano": 49763229,
+ "longestRoundTripNano": 148376339,
+ "averageApexExecutionNano": 61552197,
+ "shortestApexExecutionNano": 10108237,
+ "longestApexExecutionNano": 110732051
+ },
+ {
+ "batchNumber": 8404,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133144443,
+ "shortestRoundTripNano": 68213365,
+ "longestRoundTripNano": 169322382,
+ "averageApexExecutionNano": 43848518,
+ "shortestApexExecutionNano": 4755538,
+ "longestApexExecutionNano": 114015140
+ },
+ {
+ "batchNumber": 8405,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130370026,
+ "shortestRoundTripNano": 62444081,
+ "longestRoundTripNano": 152762633,
+ "averageApexExecutionNano": 53324532,
+ "shortestApexExecutionNano": 25276188,
+ "longestApexExecutionNano": 97724842
+ },
+ {
+ "batchNumber": 8406,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154723890,
+ "shortestRoundTripNano": 52873434,
+ "longestRoundTripNano": 181550676,
+ "averageApexExecutionNano": 75834584,
+ "shortestApexExecutionNano": 6816862,
+ "longestApexExecutionNano": 136645735
+ },
+ {
+ "batchNumber": 8407,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37976",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140845910,
+ "shortestRoundTripNano": 63593971,
+ "longestRoundTripNano": 169239825,
+ "averageApexExecutionNano": 46974997,
+ "shortestApexExecutionNano": 6626658,
+ "longestApexExecutionNano": 109409412
+ },
+ {
+ "batchNumber": 8408,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133306286,
+ "shortestRoundTripNano": 71766638,
+ "longestRoundTripNano": 167792762,
+ "averageApexExecutionNano": 59024549,
+ "shortestApexExecutionNano": 7196984,
+ "longestApexExecutionNano": 117680153
+ },
+ {
+ "batchNumber": 8409,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 120071218,
+ "shortestRoundTripNano": 55902323,
+ "longestRoundTripNano": 155737958,
+ "averageApexExecutionNano": 58484221,
+ "shortestApexExecutionNano": 14405777,
+ "longestApexExecutionNano": 109065147
+ },
+ {
+ "batchNumber": 8410,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146605561,
+ "shortestRoundTripNano": 40545120,
+ "longestRoundTripNano": 179229715,
+ "averageApexExecutionNano": 62835432,
+ "shortestApexExecutionNano": 8272596,
+ "longestApexExecutionNano": 127366808
+ },
+ {
+ "batchNumber": 8411,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37974",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151864269,
+ "shortestRoundTripNano": 47679227,
+ "longestRoundTripNano": 184679449,
+ "averageApexExecutionNano": 68611485,
+ "shortestApexExecutionNano": 6824425,
+ "longestApexExecutionNano": 149261925
+ },
+ {
+ "batchNumber": 8412,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148495040,
+ "shortestRoundTripNano": 66734332,
+ "longestRoundTripNano": 180166982,
+ "averageApexExecutionNano": 64366501,
+ "shortestApexExecutionNano": 6996186,
+ "longestApexExecutionNano": 146910444
+ },
+ {
+ "batchNumber": 8413,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135774561,
+ "shortestRoundTripNano": 78218672,
+ "longestRoundTripNano": 159991256,
+ "averageApexExecutionNano": 62102343,
+ "shortestApexExecutionNano": 9683329,
+ "longestApexExecutionNano": 118876441
+ },
+ {
+ "batchNumber": 8414,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139863468,
+ "shortestRoundTripNano": 53558619,
+ "longestRoundTripNano": 170093402,
+ "averageApexExecutionNano": 52097395,
+ "shortestApexExecutionNano": 8843014,
+ "longestApexExecutionNano": 120552554
+ },
+ {
+ "batchNumber": 8415,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140435962,
+ "shortestRoundTripNano": 67540243,
+ "longestRoundTripNano": 168216369,
+ "averageApexExecutionNano": 53020207,
+ "shortestApexExecutionNano": 5595881,
+ "longestApexExecutionNano": 110108300
+ },
+ {
+ "batchNumber": 8416,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121564259,
+ "shortestRoundTripNano": 41740742,
+ "longestRoundTripNano": 150001222,
+ "averageApexExecutionNano": 46762359,
+ "shortestApexExecutionNano": 5790479,
+ "longestApexExecutionNano": 105125574
+ },
+ {
+ "batchNumber": 8417,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159588870,
+ "shortestRoundTripNano": 60938815,
+ "longestRoundTripNano": 193817394,
+ "averageApexExecutionNano": 74000106,
+ "shortestApexExecutionNano": 9077109,
+ "longestApexExecutionNano": 124619671
+ },
+ {
+ "batchNumber": 8418,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37980",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136798303,
+ "shortestRoundTripNano": 68559388,
+ "longestRoundTripNano": 166435498,
+ "averageApexExecutionNano": 56044389,
+ "shortestApexExecutionNano": 10452466,
+ "longestApexExecutionNano": 104481789
+ },
+ {
+ "batchNumber": 8419,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37978",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146103065,
+ "shortestRoundTripNano": 41279792,
+ "longestRoundTripNano": 184430668,
+ "averageApexExecutionNano": 64251104,
+ "shortestApexExecutionNano": 8044790,
+ "longestApexExecutionNano": 130853671
+ },
+ {
+ "batchNumber": 8420,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159207110,
+ "shortestRoundTripNano": 61496614,
+ "longestRoundTripNano": 189965073,
+ "averageApexExecutionNano": 66964498,
+ "shortestApexExecutionNano": 14027493,
+ "longestApexExecutionNano": 131404214
+ },
+ {
+ "batchNumber": 8421,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135605609,
+ "shortestRoundTripNano": 61814626,
+ "longestRoundTripNano": 167304194,
+ "averageApexExecutionNano": 51020616,
+ "shortestApexExecutionNano": 5179648,
+ "longestApexExecutionNano": 124881554
+ },
+ {
+ "batchNumber": 8422,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139169975,
+ "shortestRoundTripNano": 54916434,
+ "longestRoundTripNano": 173509335,
+ "averageApexExecutionNano": 47049446,
+ "shortestApexExecutionNano": 7432229,
+ "longestApexExecutionNano": 122127506
+ },
+ {
+ "batchNumber": 8423,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153043746,
+ "shortestRoundTripNano": 47825513,
+ "longestRoundTripNano": 182935942,
+ "averageApexExecutionNano": 73881771,
+ "shortestApexExecutionNano": 7209334,
+ "longestApexExecutionNano": 136325885
+ },
+ {
+ "batchNumber": 8424,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153541134,
+ "shortestRoundTripNano": 70655464,
+ "longestRoundTripNano": 179256084,
+ "averageApexExecutionNano": 65807730,
+ "shortestApexExecutionNano": 8647103,
+ "longestApexExecutionNano": 129007268
+ },
+ {
+ "batchNumber": 8425,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142230972,
+ "shortestRoundTripNano": 67481796,
+ "longestRoundTripNano": 169473244,
+ "averageApexExecutionNano": 53250628,
+ "shortestApexExecutionNano": 9446705,
+ "longestApexExecutionNano": 125223582
+ },
+ {
+ "batchNumber": 8426,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 198565650,
+ "shortestRoundTripNano": 104673791,
+ "longestRoundTripNano": 235274599,
+ "averageApexExecutionNano": 78038521,
+ "shortestApexExecutionNano": 5963076,
+ "longestApexExecutionNano": 140035108
+ },
+ {
+ "batchNumber": 8427,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153457677,
+ "shortestRoundTripNano": 51720610,
+ "longestRoundTripNano": 186116830,
+ "averageApexExecutionNano": 75371723,
+ "shortestApexExecutionNano": 17776449,
+ "longestApexExecutionNano": 139929608
+ },
+ {
+ "batchNumber": 8428,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127257987,
+ "shortestRoundTripNano": 50206338,
+ "longestRoundTripNano": 152304364,
+ "averageApexExecutionNano": 54972597,
+ "shortestApexExecutionNano": 8322806,
+ "longestApexExecutionNano": 106900341
+ },
+ {
+ "batchNumber": 8429,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135607849,
+ "shortestRoundTripNano": 54821092,
+ "longestRoundTripNano": 170335703,
+ "averageApexExecutionNano": 54566298,
+ "shortestApexExecutionNano": 6237692,
+ "longestApexExecutionNano": 101874705
+ },
+ {
+ "batchNumber": 8430,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37982",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140307107,
+ "shortestRoundTripNano": 59704781,
+ "longestRoundTripNano": 170272891,
+ "averageApexExecutionNano": 58642450,
+ "shortestApexExecutionNano": 10389229,
+ "longestApexExecutionNano": 116326516
+ },
+ {
+ "batchNumber": 8431,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131371339,
+ "shortestRoundTripNano": 68451573,
+ "longestRoundTripNano": 160334250,
+ "averageApexExecutionNano": 68810042,
+ "shortestApexExecutionNano": 6619033,
+ "longestApexExecutionNano": 110313568
+ },
+ {
+ "batchNumber": 8432,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134237326,
+ "shortestRoundTripNano": 39894262,
+ "longestRoundTripNano": 170266567,
+ "averageApexExecutionNano": 60027561,
+ "shortestApexExecutionNano": 9256094,
+ "longestApexExecutionNano": 131355225
+ },
+ {
+ "batchNumber": 8433,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 128313373,
+ "shortestRoundTripNano": 54542626,
+ "longestRoundTripNano": 157533054,
+ "averageApexExecutionNano": 46430169,
+ "shortestApexExecutionNano": 8436378,
+ "longestApexExecutionNano": 106642378
+ },
+ {
+ "batchNumber": 8434,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138897371,
+ "shortestRoundTripNano": 61982231,
+ "longestRoundTripNano": 165714432,
+ "averageApexExecutionNano": 55197015,
+ "shortestApexExecutionNano": 7745413,
+ "longestApexExecutionNano": 108659874
+ },
+ {
+ "batchNumber": 8435,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155522085,
+ "shortestRoundTripNano": 83318063,
+ "longestRoundTripNano": 180586725,
+ "averageApexExecutionNano": 62042362,
+ "shortestApexExecutionNano": 7632296,
+ "longestApexExecutionNano": 134035463
+ },
+ {
+ "batchNumber": 8436,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161102674,
+ "shortestRoundTripNano": 79931741,
+ "longestRoundTripNano": 184288564,
+ "averageApexExecutionNano": 66554639,
+ "shortestApexExecutionNano": 9347424,
+ "longestApexExecutionNano": 120334006
+ },
+ {
+ "batchNumber": 8437,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168010842,
+ "shortestRoundTripNano": 84261951,
+ "longestRoundTripNano": 198698606,
+ "averageApexExecutionNano": 52408836,
+ "shortestApexExecutionNano": 7641476,
+ "longestApexExecutionNano": 110515404
+ },
+ {
+ "batchNumber": 8438,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134388217,
+ "shortestRoundTripNano": 68936529,
+ "longestRoundTripNano": 161872357,
+ "averageApexExecutionNano": 60629459,
+ "shortestApexExecutionNano": 9845229,
+ "longestApexExecutionNano": 105217653
+ },
+ {
+ "batchNumber": 8439,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145643984,
+ "shortestRoundTripNano": 53871264,
+ "longestRoundTripNano": 173717385,
+ "averageApexExecutionNano": 61277932,
+ "shortestApexExecutionNano": 8866282,
+ "longestApexExecutionNano": 122383039
+ },
+ {
+ "batchNumber": 8440,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163730705,
+ "shortestRoundTripNano": 61806819,
+ "longestRoundTripNano": 192564678,
+ "averageApexExecutionNano": 64031424,
+ "shortestApexExecutionNano": 7490948,
+ "longestApexExecutionNano": 138863072
+ },
+ {
+ "batchNumber": 8441,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135784993,
+ "shortestRoundTripNano": 51532392,
+ "longestRoundTripNano": 162717756,
+ "averageApexExecutionNano": 58005422,
+ "shortestApexExecutionNano": 7246357,
+ "longestApexExecutionNano": 113362630
+ },
+ {
+ "batchNumber": 8442,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142754159,
+ "shortestRoundTripNano": 74104100,
+ "longestRoundTripNano": 166105801,
+ "averageApexExecutionNano": 53512551,
+ "shortestApexExecutionNano": 8869951,
+ "longestApexExecutionNano": 122691932
+ },
+ {
+ "batchNumber": 8443,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146139201,
+ "shortestRoundTripNano": 75297628,
+ "longestRoundTripNano": 178510347,
+ "averageApexExecutionNano": 64777847,
+ "shortestApexExecutionNano": 10577978,
+ "longestApexExecutionNano": 109233604
+ },
+ {
+ "batchNumber": 8444,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137613036,
+ "shortestRoundTripNano": 66575939,
+ "longestRoundTripNano": 173184204,
+ "averageApexExecutionNano": 61348439,
+ "shortestApexExecutionNano": 7973520,
+ "longestApexExecutionNano": 120296674
+ },
+ {
+ "batchNumber": 8445,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37986",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154524277,
+ "shortestRoundTripNano": 59342289,
+ "longestRoundTripNano": 191487588,
+ "averageApexExecutionNano": 61402412,
+ "shortestApexExecutionNano": 8100288,
+ "longestApexExecutionNano": 147117362
+ },
+ {
+ "batchNumber": 8446,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 131413821,
+ "shortestRoundTripNano": 49337970,
+ "longestRoundTripNano": 164815969,
+ "averageApexExecutionNano": 62728406,
+ "shortestApexExecutionNano": 7785738,
+ "longestApexExecutionNano": 125523291
+ },
+ {
+ "batchNumber": 8447,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140069480,
+ "shortestRoundTripNano": 65566308,
+ "longestRoundTripNano": 165896358,
+ "averageApexExecutionNano": 68986509,
+ "shortestApexExecutionNano": 10902002,
+ "longestApexExecutionNano": 121855084
+ },
+ {
+ "batchNumber": 8448,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135439114,
+ "shortestRoundTripNano": 66513886,
+ "longestRoundTripNano": 157377888,
+ "averageApexExecutionNano": 54181613,
+ "shortestApexExecutionNano": 10677556,
+ "longestApexExecutionNano": 106921405
+ },
+ {
+ "batchNumber": 8449,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133090242,
+ "shortestRoundTripNano": 57900333,
+ "longestRoundTripNano": 160411600,
+ "averageApexExecutionNano": 47797773,
+ "shortestApexExecutionNano": 7764452,
+ "longestApexExecutionNano": 107896862
+ },
+ {
+ "batchNumber": 8450,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140153600,
+ "shortestRoundTripNano": 76325370,
+ "longestRoundTripNano": 173331295,
+ "averageApexExecutionNano": 56603185,
+ "shortestApexExecutionNano": 6135387,
+ "longestApexExecutionNano": 109392267
+ },
+ {
+ "batchNumber": 8451,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148808614,
+ "shortestRoundTripNano": 64091158,
+ "longestRoundTripNano": 186302529,
+ "averageApexExecutionNano": 57099106,
+ "shortestApexExecutionNano": 8757077,
+ "longestApexExecutionNano": 117770784
+ },
+ {
+ "batchNumber": 8452,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123122905,
+ "shortestRoundTripNano": 44444189,
+ "longestRoundTripNano": 156570213,
+ "averageApexExecutionNano": 54513107,
+ "shortestApexExecutionNano": 4550173,
+ "longestApexExecutionNano": 114617814
+ },
+ {
+ "batchNumber": 8453,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 129054215,
+ "shortestRoundTripNano": 67238166,
+ "longestRoundTripNano": 146081058,
+ "averageApexExecutionNano": 50725122,
+ "shortestApexExecutionNano": 5446469,
+ "longestApexExecutionNano": 107351145
+ },
+ {
+ "batchNumber": 8454,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154262990,
+ "shortestRoundTripNano": 83854085,
+ "longestRoundTripNano": 183649839,
+ "averageApexExecutionNano": 61400633,
+ "shortestApexExecutionNano": 9581554,
+ "longestApexExecutionNano": 135082837
+ },
+ {
+ "batchNumber": 8455,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154811782,
+ "shortestRoundTripNano": 38062161,
+ "longestRoundTripNano": 200162987,
+ "averageApexExecutionNano": 67120774,
+ "shortestApexExecutionNano": 9990687,
+ "longestApexExecutionNano": 159861278
+ },
+ {
+ "batchNumber": 8456,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37990",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159522358,
+ "shortestRoundTripNano": 94458742,
+ "longestRoundTripNano": 188230596,
+ "averageApexExecutionNano": 62203951,
+ "shortestApexExecutionNano": 11591601,
+ "longestApexExecutionNano": 126400179
+ },
+ {
+ "batchNumber": 8457,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133178333,
+ "shortestRoundTripNano": 65592633,
+ "longestRoundTripNano": 164518797,
+ "averageApexExecutionNano": 53901961,
+ "shortestApexExecutionNano": 7285435,
+ "longestApexExecutionNano": 111785435
+ },
+ {
+ "batchNumber": 8458,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136585083,
+ "shortestRoundTripNano": 71068045,
+ "longestRoundTripNano": 162763686,
+ "averageApexExecutionNano": 64344633,
+ "shortestApexExecutionNano": 9172921,
+ "longestApexExecutionNano": 106380501
+ },
+ {
+ "batchNumber": 8459,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167015950,
+ "shortestRoundTripNano": 85690923,
+ "longestRoundTripNano": 196656220,
+ "averageApexExecutionNano": 61175067,
+ "shortestApexExecutionNano": 10736346,
+ "longestApexExecutionNano": 143879939
+ },
+ {
+ "batchNumber": 8460,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142707871,
+ "shortestRoundTripNano": 59068565,
+ "longestRoundTripNano": 173529521,
+ "averageApexExecutionNano": 57066433,
+ "shortestApexExecutionNano": 7403788,
+ "longestApexExecutionNano": 119245446
+ },
+ {
+ "batchNumber": 8461,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145631839,
+ "shortestRoundTripNano": 80100005,
+ "longestRoundTripNano": 174468120,
+ "averageApexExecutionNano": 65273445,
+ "shortestApexExecutionNano": 7829693,
+ "longestApexExecutionNano": 130670784
+ },
+ {
+ "batchNumber": 8462,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140212041,
+ "shortestRoundTripNano": 72786060,
+ "longestRoundTripNano": 165299053,
+ "averageApexExecutionNano": 51077765,
+ "shortestApexExecutionNano": 7267531,
+ "longestApexExecutionNano": 108072565
+ },
+ {
+ "batchNumber": 8463,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153097931,
+ "shortestRoundTripNano": 56035609,
+ "longestRoundTripNano": 180087238,
+ "averageApexExecutionNano": 60436774,
+ "shortestApexExecutionNano": 6648312,
+ "longestApexExecutionNano": 124762265
+ },
+ {
+ "batchNumber": 8464,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151175684,
+ "shortestRoundTripNano": 78392980,
+ "longestRoundTripNano": 180109260,
+ "averageApexExecutionNano": 65265992,
+ "shortestApexExecutionNano": 6663333,
+ "longestApexExecutionNano": 140473312
+ },
+ {
+ "batchNumber": 8465,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144704409,
+ "shortestRoundTripNano": 51168116,
+ "longestRoundTripNano": 175182619,
+ "averageApexExecutionNano": 58048251,
+ "shortestApexExecutionNano": 8298566,
+ "longestApexExecutionNano": 134154301
+ },
+ {
+ "batchNumber": 8466,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167415804,
+ "shortestRoundTripNano": 71116083,
+ "longestRoundTripNano": 200361530,
+ "averageApexExecutionNano": 60644194,
+ "shortestApexExecutionNano": 7957669,
+ "longestApexExecutionNano": 134175341
+ },
+ {
+ "batchNumber": 8467,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155590254,
+ "shortestRoundTripNano": 58950419,
+ "longestRoundTripNano": 185146910,
+ "averageApexExecutionNano": 71384149,
+ "shortestApexExecutionNano": 9895128,
+ "longestApexExecutionNano": 146583069
+ },
+ {
+ "batchNumber": 8468,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135819877,
+ "shortestRoundTripNano": 46906257,
+ "longestRoundTripNano": 180992740,
+ "averageApexExecutionNano": 59486153,
+ "shortestApexExecutionNano": 6483658,
+ "longestApexExecutionNano": 133929001
+ },
+ {
+ "batchNumber": 8469,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136092713,
+ "shortestRoundTripNano": 37432019,
+ "longestRoundTripNano": 161307389,
+ "averageApexExecutionNano": 51120539,
+ "shortestApexExecutionNano": 7713204,
+ "longestApexExecutionNano": 104624160
+ },
+ {
+ "batchNumber": 8470,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150296914,
+ "shortestRoundTripNano": 74059499,
+ "longestRoundTripNano": 179396822,
+ "averageApexExecutionNano": 50580932,
+ "shortestApexExecutionNano": 9512609,
+ "longestApexExecutionNano": 129634505
+ },
+ {
+ "batchNumber": 8471,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137835482,
+ "shortestRoundTripNano": 73074657,
+ "longestRoundTripNano": 172478373,
+ "averageApexExecutionNano": 56004865,
+ "shortestApexExecutionNano": 7273938,
+ "longestApexExecutionNano": 119555653
+ },
+ {
+ "batchNumber": 8472,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163036962,
+ "shortestRoundTripNano": 41907819,
+ "longestRoundTripNano": 209499343,
+ "averageApexExecutionNano": 78299347,
+ "shortestApexExecutionNano": 11382286,
+ "longestApexExecutionNano": 150673922
+ },
+ {
+ "batchNumber": 8473,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152612615,
+ "shortestRoundTripNano": 58038459,
+ "longestRoundTripNano": 177094850,
+ "averageApexExecutionNano": 66919068,
+ "shortestApexExecutionNano": 11427471,
+ "longestApexExecutionNano": 119086752
+ },
+ {
+ "batchNumber": 8474,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 149264331,
+ "shortestRoundTripNano": 75622977,
+ "longestRoundTripNano": 180822613,
+ "averageApexExecutionNano": 72913264,
+ "shortestApexExecutionNano": 11010040,
+ "longestApexExecutionNano": 141235532
+ },
+ {
+ "batchNumber": 8475,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38002",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 163459734,
+ "shortestRoundTripNano": 58862356,
+ "longestRoundTripNano": 195692705,
+ "averageApexExecutionNano": 79425038,
+ "shortestApexExecutionNano": 13441007,
+ "longestApexExecutionNano": 144826589
+ },
+ {
+ "batchNumber": 8476,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157934624,
+ "shortestRoundTripNano": 38319984,
+ "longestRoundTripNano": 187441265,
+ "averageApexExecutionNano": 57375055,
+ "shortestApexExecutionNano": 7132269,
+ "longestApexExecutionNano": 134091525
+ },
+ {
+ "batchNumber": 8477,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142510568,
+ "shortestRoundTripNano": 54825644,
+ "longestRoundTripNano": 177163087,
+ "averageApexExecutionNano": 63366982,
+ "shortestApexExecutionNano": 10974894,
+ "longestApexExecutionNano": 135098939
+ },
+ {
+ "batchNumber": 8478,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165327653,
+ "shortestRoundTripNano": 85329924,
+ "longestRoundTripNano": 210061288,
+ "averageApexExecutionNano": 75426591,
+ "shortestApexExecutionNano": 12153082,
+ "longestApexExecutionNano": 140027408
+ },
+ {
+ "batchNumber": 8479,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143300512,
+ "shortestRoundTripNano": 68562401,
+ "longestRoundTripNano": 163529348,
+ "averageApexExecutionNano": 57543277,
+ "shortestApexExecutionNano": 9176204,
+ "longestApexExecutionNano": 109479855
+ },
+ {
+ "batchNumber": 8480,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132867949,
+ "shortestRoundTripNano": 63737258,
+ "longestRoundTripNano": 160653716,
+ "averageApexExecutionNano": 37455130,
+ "shortestApexExecutionNano": 8114816,
+ "longestApexExecutionNano": 104380381
+ },
+ {
+ "batchNumber": 8481,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154569716,
+ "shortestRoundTripNano": 88101989,
+ "longestRoundTripNano": 181366105,
+ "averageApexExecutionNano": 65927762,
+ "shortestApexExecutionNano": 16357972,
+ "longestApexExecutionNano": 112023881
+ },
+ {
+ "batchNumber": 8482,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167148366,
+ "shortestRoundTripNano": 74926572,
+ "longestRoundTripNano": 196712603,
+ "averageApexExecutionNano": 73990427,
+ "shortestApexExecutionNano": 8393457,
+ "longestApexExecutionNano": 134668671
+ },
+ {
+ "batchNumber": 8483,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175845775,
+ "shortestRoundTripNano": 64531550,
+ "longestRoundTripNano": 219295546,
+ "averageApexExecutionNano": 77635901,
+ "shortestApexExecutionNano": 7144377,
+ "longestApexExecutionNano": 153207095
+ },
+ {
+ "batchNumber": 8484,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 161573648,
+ "shortestRoundTripNano": 93492243,
+ "longestRoundTripNano": 195170738,
+ "averageApexExecutionNano": 73592150,
+ "shortestApexExecutionNano": 9945152,
+ "longestApexExecutionNano": 136673619
+ },
+ {
+ "batchNumber": 8485,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164686906,
+ "shortestRoundTripNano": 72219332,
+ "longestRoundTripNano": 203297056,
+ "averageApexExecutionNano": 65000804,
+ "shortestApexExecutionNano": 11545844,
+ "longestApexExecutionNano": 142910839
+ },
+ {
+ "batchNumber": 8486,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):37996",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175132550,
+ "shortestRoundTripNano": 80651164,
+ "longestRoundTripNano": 197410708,
+ "averageApexExecutionNano": 88271343,
+ "shortestApexExecutionNano": 7783216,
+ "longestApexExecutionNano": 153522192
+ },
+ {
+ "batchNumber": 8487,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137124340,
+ "shortestRoundTripNano": 65728929,
+ "longestRoundTripNano": 166933761,
+ "averageApexExecutionNano": 59710553,
+ "shortestApexExecutionNano": 8112896,
+ "longestApexExecutionNano": 114839687
+ },
+ {
+ "batchNumber": 8488,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146741555,
+ "shortestRoundTripNano": 72494171,
+ "longestRoundTripNano": 177962206,
+ "averageApexExecutionNano": 64420987,
+ "shortestApexExecutionNano": 8320672,
+ "longestApexExecutionNano": 129370749
+ },
+ {
+ "batchNumber": 8489,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153747981,
+ "shortestRoundTripNano": 58751816,
+ "longestRoundTripNano": 189286486,
+ "averageApexExecutionNano": 68508839,
+ "shortestApexExecutionNano": 11619497,
+ "longestApexExecutionNano": 120825648
+ },
+ {
+ "batchNumber": 8490,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136693249,
+ "shortestRoundTripNano": 74514811,
+ "longestRoundTripNano": 162170433,
+ "averageApexExecutionNano": 65195359,
+ "shortestApexExecutionNano": 9783039,
+ "longestApexExecutionNano": 126834375
+ },
+ {
+ "batchNumber": 8491,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 145914850,
+ "shortestRoundTripNano": 55838690,
+ "longestRoundTripNano": 178570725,
+ "averageApexExecutionNano": 55183396,
+ "shortestApexExecutionNano": 9375018,
+ "longestApexExecutionNano": 133152940
+ },
+ {
+ "batchNumber": 8492,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170196075,
+ "shortestRoundTripNano": 104178725,
+ "longestRoundTripNano": 212012349,
+ "averageApexExecutionNano": 60280454,
+ "shortestApexExecutionNano": 9124244,
+ "longestApexExecutionNano": 129828699
+ },
+ {
+ "batchNumber": 8493,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140305773,
+ "shortestRoundTripNano": 90751013,
+ "longestRoundTripNano": 169356901,
+ "averageApexExecutionNano": 73289832,
+ "shortestApexExecutionNano": 11161438,
+ "longestApexExecutionNano": 127575130
+ },
+ {
+ "batchNumber": 8494,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38010",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134974570,
+ "shortestRoundTripNano": 50826622,
+ "longestRoundTripNano": 168305253,
+ "averageApexExecutionNano": 53766651,
+ "shortestApexExecutionNano": 5388876,
+ "longestApexExecutionNano": 111184242
+ },
+ {
+ "batchNumber": 8495,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38008",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 190821935,
+ "shortestRoundTripNano": 75461390,
+ "longestRoundTripNano": 241442726,
+ "averageApexExecutionNano": 72122351,
+ "shortestApexExecutionNano": 10220884,
+ "longestApexExecutionNano": 150866255
+ },
+ {
+ "batchNumber": 8496,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148690518,
+ "shortestRoundTripNano": 76023013,
+ "longestRoundTripNano": 179194489,
+ "averageApexExecutionNano": 52573560,
+ "shortestApexExecutionNano": 7217649,
+ "longestApexExecutionNano": 125786400
+ },
+ {
+ "batchNumber": 8497,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38012",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150006170,
+ "shortestRoundTripNano": 50465941,
+ "longestRoundTripNano": 179140667,
+ "averageApexExecutionNano": 61943105,
+ "shortestApexExecutionNano": 11134095,
+ "longestApexExecutionNano": 122919581
+ },
+ {
+ "batchNumber": 8498,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152797431,
+ "shortestRoundTripNano": 29305361,
+ "longestRoundTripNano": 180391608,
+ "averageApexExecutionNano": 59806673,
+ "shortestApexExecutionNano": 8499575,
+ "longestApexExecutionNano": 131340131
+ },
+ {
+ "batchNumber": 8499,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152532403,
+ "shortestRoundTripNano": 65703138,
+ "longestRoundTripNano": 195726260,
+ "averageApexExecutionNano": 56049366,
+ "shortestApexExecutionNano": 10461487,
+ "longestApexExecutionNano": 153375443
+ },
+ {
+ "batchNumber": 8500,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 156097913,
+ "shortestRoundTripNano": 81511388,
+ "longestRoundTripNano": 187879345,
+ "averageApexExecutionNano": 72805130,
+ "shortestApexExecutionNano": 15106895,
+ "longestApexExecutionNano": 141854929
+ },
+ {
+ "batchNumber": 8501,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 171591016,
+ "shortestRoundTripNano": 70084339,
+ "longestRoundTripNano": 208276228,
+ "averageApexExecutionNano": 69401997,
+ "shortestApexExecutionNano": 7780479,
+ "longestApexExecutionNano": 139094523
+ },
+ {
+ "batchNumber": 8502,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 176457914,
+ "shortestRoundTripNano": 102372196,
+ "longestRoundTripNano": 200955320,
+ "averageApexExecutionNano": 76373973,
+ "shortestApexExecutionNano": 9951261,
+ "longestApexExecutionNano": 161479558
+ },
+ {
+ "batchNumber": 8503,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38014",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 210157615,
+ "shortestRoundTripNano": 44820293,
+ "longestRoundTripNano": 256931717,
+ "averageApexExecutionNano": 76304606,
+ "shortestApexExecutionNano": 12852916,
+ "longestApexExecutionNano": 184372783
+ },
+ {
+ "batchNumber": 8504,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148213701,
+ "shortestRoundTripNano": 75100413,
+ "longestRoundTripNano": 175035008,
+ "averageApexExecutionNano": 66440828,
+ "shortestApexExecutionNano": 10420839,
+ "longestApexExecutionNano": 130356002
+ },
+ {
+ "batchNumber": 8505,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138108096,
+ "shortestRoundTripNano": 26347785,
+ "longestRoundTripNano": 168346477,
+ "averageApexExecutionNano": 59919603,
+ "shortestApexExecutionNano": 9488990,
+ "longestApexExecutionNano": 123054992
+ },
+ {
+ "batchNumber": 8506,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 185152928,
+ "shortestRoundTripNano": 87826838,
+ "longestRoundTripNano": 231182366,
+ "averageApexExecutionNano": 74936000,
+ "shortestApexExecutionNano": 15928479,
+ "longestApexExecutionNano": 140869762
+ },
+ {
+ "batchNumber": 8507,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159933496,
+ "shortestRoundTripNano": 93299166,
+ "longestRoundTripNano": 202462066,
+ "averageApexExecutionNano": 78433071,
+ "shortestApexExecutionNano": 9521590,
+ "longestApexExecutionNano": 147585125
+ },
+ {
+ "batchNumber": 8508,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 178589792,
+ "shortestRoundTripNano": 65655595,
+ "longestRoundTripNano": 211700198,
+ "averageApexExecutionNano": 60783207,
+ "shortestApexExecutionNano": 6947079,
+ "longestApexExecutionNano": 141859728
+ },
+ {
+ "batchNumber": 8509,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164360131,
+ "shortestRoundTripNano": 78448464,
+ "longestRoundTripNano": 195593953,
+ "averageApexExecutionNano": 73077207,
+ "shortestApexExecutionNano": 7744206,
+ "longestApexExecutionNano": 144455849
+ },
+ {
+ "batchNumber": 8510,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183994020,
+ "shortestRoundTripNano": 63062942,
+ "longestRoundTripNano": 219498109,
+ "averageApexExecutionNano": 85797289,
+ "shortestApexExecutionNano": 5537255,
+ "longestApexExecutionNano": 161638501
+ },
+ {
+ "batchNumber": 8511,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144399066,
+ "shortestRoundTripNano": 47265032,
+ "longestRoundTripNano": 172613919,
+ "averageApexExecutionNano": 57268105,
+ "shortestApexExecutionNano": 6880596,
+ "longestApexExecutionNano": 130301011
+ },
+ {
+ "batchNumber": 8512,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133589402,
+ "shortestRoundTripNano": 64787344,
+ "longestRoundTripNano": 161400412,
+ "averageApexExecutionNano": 59542715,
+ "shortestApexExecutionNano": 7812067,
+ "longestApexExecutionNano": 118826238
+ },
+ {
+ "batchNumber": 8513,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38016",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133158008,
+ "shortestRoundTripNano": 56075328,
+ "longestRoundTripNano": 172647103,
+ "averageApexExecutionNano": 41914587,
+ "shortestApexExecutionNano": 6064930,
+ "longestApexExecutionNano": 93691016
+ },
+ {
+ "batchNumber": 8514,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138082600,
+ "shortestRoundTripNano": 39427754,
+ "longestRoundTripNano": 167612008,
+ "averageApexExecutionNano": 56824522,
+ "shortestApexExecutionNano": 9007345,
+ "longestApexExecutionNano": 108006474
+ },
+ {
+ "batchNumber": 8515,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144727485,
+ "shortestRoundTripNano": 74608829,
+ "longestRoundTripNano": 170889095,
+ "averageApexExecutionNano": 52399001,
+ "shortestApexExecutionNano": 6636779,
+ "longestApexExecutionNano": 113492617
+ },
+ {
+ "batchNumber": 8516,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133081347,
+ "shortestRoundTripNano": 61967428,
+ "longestRoundTripNano": 172962439,
+ "averageApexExecutionNano": 62798121,
+ "shortestApexExecutionNano": 9009177,
+ "longestApexExecutionNano": 146630440
+ },
+ {
+ "batchNumber": 8517,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142166724,
+ "shortestRoundTripNano": 66768647,
+ "longestRoundTripNano": 175756158,
+ "averageApexExecutionNano": 56705377,
+ "shortestApexExecutionNano": 6320612,
+ "longestApexExecutionNano": 109810585
+ },
+ {
+ "batchNumber": 8518,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38018",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153327598,
+ "shortestRoundTripNano": 55246256,
+ "longestRoundTripNano": 191521811,
+ "averageApexExecutionNano": 80479398,
+ "shortestApexExecutionNano": 11632948,
+ "longestApexExecutionNano": 149672679
+ },
+ {
+ "batchNumber": 8519,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147737625,
+ "shortestRoundTripNano": 81992777,
+ "longestRoundTripNano": 172667101,
+ "averageApexExecutionNano": 55513173,
+ "shortestApexExecutionNano": 4760137,
+ "longestApexExecutionNano": 133941497
+ },
+ {
+ "batchNumber": 8520,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140839999,
+ "shortestRoundTripNano": 57940924,
+ "longestRoundTripNano": 177200738,
+ "averageApexExecutionNano": 58957047,
+ "shortestApexExecutionNano": 5781215,
+ "longestApexExecutionNano": 123409015
+ },
+ {
+ "batchNumber": 8521,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143131583,
+ "shortestRoundTripNano": 57858464,
+ "longestRoundTripNano": 193962332,
+ "averageApexExecutionNano": 59923014,
+ "shortestApexExecutionNano": 6473904,
+ "longestApexExecutionNano": 109972850
+ },
+ {
+ "batchNumber": 8522,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38020",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124538993,
+ "shortestRoundTripNano": 63429907,
+ "longestRoundTripNano": 151425173,
+ "averageApexExecutionNano": 52707719,
+ "shortestApexExecutionNano": 7703770,
+ "longestApexExecutionNano": 111965879
+ },
+ {
+ "batchNumber": 8523,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 141179313,
+ "shortestRoundTripNano": 57067257,
+ "longestRoundTripNano": 172088287,
+ "averageApexExecutionNano": 46669168,
+ "shortestApexExecutionNano": 5853098,
+ "longestApexExecutionNano": 125729467
+ },
+ {
+ "batchNumber": 8524,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 175993971,
+ "shortestRoundTripNano": 74642919,
+ "longestRoundTripNano": 201094093,
+ "averageApexExecutionNano": 67449896,
+ "shortestApexExecutionNano": 8166701,
+ "longestApexExecutionNano": 137234745
+ },
+ {
+ "batchNumber": 8525,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183862892,
+ "shortestRoundTripNano": 108730099,
+ "longestRoundTripNano": 217020483,
+ "averageApexExecutionNano": 82962525,
+ "shortestApexExecutionNano": 8030465,
+ "longestApexExecutionNano": 159510672
+ },
+ {
+ "batchNumber": 8526,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123214398,
+ "shortestRoundTripNano": 56481424,
+ "longestRoundTripNano": 149668777,
+ "averageApexExecutionNano": 48849043,
+ "shortestApexExecutionNano": 7177943,
+ "longestApexExecutionNano": 104865285
+ },
+ {
+ "batchNumber": 8527,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158774026,
+ "shortestRoundTripNano": 55414197,
+ "longestRoundTripNano": 194520106,
+ "averageApexExecutionNano": 67692030,
+ "shortestApexExecutionNano": 9674021,
+ "longestApexExecutionNano": 144785185
+ },
+ {
+ "batchNumber": 8528,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147602761,
+ "shortestRoundTripNano": 85022705,
+ "longestRoundTripNano": 177866418,
+ "averageApexExecutionNano": 65306529,
+ "shortestApexExecutionNano": 6163900,
+ "longestApexExecutionNano": 126942830
+ },
+ {
+ "batchNumber": 8529,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140991534,
+ "shortestRoundTripNano": 43467922,
+ "longestRoundTripNano": 175505929,
+ "averageApexExecutionNano": 44211391,
+ "shortestApexExecutionNano": 5792702,
+ "longestApexExecutionNano": 125704342
+ },
+ {
+ "batchNumber": 8530,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130160725,
+ "shortestRoundTripNano": 64368854,
+ "longestRoundTripNano": 166232551,
+ "averageApexExecutionNano": 44495356,
+ "shortestApexExecutionNano": 6548952,
+ "longestApexExecutionNano": 100178321
+ },
+ {
+ "batchNumber": 8531,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153076154,
+ "shortestRoundTripNano": 68038110,
+ "longestRoundTripNano": 185893554,
+ "averageApexExecutionNano": 76326589,
+ "shortestApexExecutionNano": 14608417,
+ "longestApexExecutionNano": 135814385
+ },
+ {
+ "batchNumber": 8532,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150495294,
+ "shortestRoundTripNano": 72925446,
+ "longestRoundTripNano": 173612987,
+ "averageApexExecutionNano": 60870998,
+ "shortestApexExecutionNano": 8476379,
+ "longestApexExecutionNano": 126488996
+ },
+ {
+ "batchNumber": 8533,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132309320,
+ "shortestRoundTripNano": 51246984,
+ "longestRoundTripNano": 177899992,
+ "averageApexExecutionNano": 52548731,
+ "shortestApexExecutionNano": 7110573,
+ "longestApexExecutionNano": 123977424
+ },
+ {
+ "batchNumber": 8534,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140680882,
+ "shortestRoundTripNano": 65595829,
+ "longestRoundTripNano": 171403718,
+ "averageApexExecutionNano": 73275689,
+ "shortestApexExecutionNano": 10082408,
+ "longestApexExecutionNano": 128727725
+ },
+ {
+ "batchNumber": 8535,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38022",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136412532,
+ "shortestRoundTripNano": 57580383,
+ "longestRoundTripNano": 170770641,
+ "averageApexExecutionNano": 45493585,
+ "shortestApexExecutionNano": 7914592,
+ "longestApexExecutionNano": 112472755
+ },
+ {
+ "batchNumber": 8536,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123264207,
+ "shortestRoundTripNano": 43818474,
+ "longestRoundTripNano": 148102953,
+ "averageApexExecutionNano": 52787437,
+ "shortestApexExecutionNano": 9272244,
+ "longestApexExecutionNano": 106523111
+ },
+ {
+ "batchNumber": 8537,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139269779,
+ "shortestRoundTripNano": 65355181,
+ "longestRoundTripNano": 183737707,
+ "averageApexExecutionNano": 59802129,
+ "shortestApexExecutionNano": 8599746,
+ "longestApexExecutionNano": 120179109
+ },
+ {
+ "batchNumber": 8538,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143588976,
+ "shortestRoundTripNano": 22719453,
+ "longestRoundTripNano": 182680431,
+ "averageApexExecutionNano": 60014500,
+ "shortestApexExecutionNano": 5222312,
+ "longestApexExecutionNano": 135366738
+ },
+ {
+ "batchNumber": 8539,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158097037,
+ "shortestRoundTripNano": 81624815,
+ "longestRoundTripNano": 186257217,
+ "averageApexExecutionNano": 74825896,
+ "shortestApexExecutionNano": 18912098,
+ "longestApexExecutionNano": 146635331
+ },
+ {
+ "batchNumber": 8540,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 166319221,
+ "shortestRoundTripNano": 49803253,
+ "longestRoundTripNano": 199242213,
+ "averageApexExecutionNano": 70026865,
+ "shortestApexExecutionNano": 9201540,
+ "longestApexExecutionNano": 123965835
+ },
+ {
+ "batchNumber": 8541,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160795580,
+ "shortestRoundTripNano": 81145243,
+ "longestRoundTripNano": 190974639,
+ "averageApexExecutionNano": 67055245,
+ "shortestApexExecutionNano": 11370608,
+ "longestApexExecutionNano": 143249995
+ },
+ {
+ "batchNumber": 8542,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152160982,
+ "shortestRoundTripNano": 43198205,
+ "longestRoundTripNano": 211260713,
+ "averageApexExecutionNano": 58894239,
+ "shortestApexExecutionNano": 5125266,
+ "longestApexExecutionNano": 121967157
+ },
+ {
+ "batchNumber": 8543,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138734950,
+ "shortestRoundTripNano": 69801579,
+ "longestRoundTripNano": 167538661,
+ "averageApexExecutionNano": 51444642,
+ "shortestApexExecutionNano": 8895957,
+ "longestApexExecutionNano": 129725352
+ },
+ {
+ "batchNumber": 8544,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153937164,
+ "shortestRoundTripNano": 56778359,
+ "longestRoundTripNano": 180566935,
+ "averageApexExecutionNano": 53320889,
+ "shortestApexExecutionNano": 5839621,
+ "longestApexExecutionNano": 120486094
+ },
+ {
+ "batchNumber": 8545,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151947576,
+ "shortestRoundTripNano": 48689576,
+ "longestRoundTripNano": 180704767,
+ "averageApexExecutionNano": 61856406,
+ "shortestApexExecutionNano": 11396947,
+ "longestApexExecutionNano": 123995898
+ },
+ {
+ "batchNumber": 8546,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152168902,
+ "shortestRoundTripNano": 45281281,
+ "longestRoundTripNano": 196210519,
+ "averageApexExecutionNano": 65445193,
+ "shortestApexExecutionNano": 6438766,
+ "longestApexExecutionNano": 132041965
+ },
+ {
+ "batchNumber": 8547,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38026",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143535102,
+ "shortestRoundTripNano": 60215671,
+ "longestRoundTripNano": 172925410,
+ "averageApexExecutionNano": 69646909,
+ "shortestApexExecutionNano": 6581380,
+ "longestApexExecutionNano": 130722651
+ },
+ {
+ "batchNumber": 8548,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144873635,
+ "shortestRoundTripNano": 59178616,
+ "longestRoundTripNano": 176292857,
+ "averageApexExecutionNano": 59091231,
+ "shortestApexExecutionNano": 9061824,
+ "longestApexExecutionNano": 106519391
+ },
+ {
+ "batchNumber": 8549,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154056383,
+ "shortestRoundTripNano": 74527397,
+ "longestRoundTripNano": 181019137,
+ "averageApexExecutionNano": 69668825,
+ "shortestApexExecutionNano": 13226529,
+ "longestApexExecutionNano": 136899139
+ },
+ {
+ "batchNumber": 8550,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162456897,
+ "shortestRoundTripNano": 72286322,
+ "longestRoundTripNano": 199070034,
+ "averageApexExecutionNano": 64569972,
+ "shortestApexExecutionNano": 8780331,
+ "longestApexExecutionNano": 141688607
+ },
+ {
+ "batchNumber": 8551,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 167192756,
+ "shortestRoundTripNano": 42563335,
+ "longestRoundTripNano": 196996439,
+ "averageApexExecutionNano": 82103871,
+ "shortestApexExecutionNano": 20443978,
+ "longestApexExecutionNano": 148939939
+ },
+ {
+ "batchNumber": 8552,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143062142,
+ "shortestRoundTripNano": 66718274,
+ "longestRoundTripNano": 179510713,
+ "averageApexExecutionNano": 62535138,
+ "shortestApexExecutionNano": 9344445,
+ "longestApexExecutionNano": 125034976
+ },
+ {
+ "batchNumber": 8553,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162516022,
+ "shortestRoundTripNano": 76130871,
+ "longestRoundTripNano": 188745647,
+ "averageApexExecutionNano": 76693536,
+ "shortestApexExecutionNano": 13541296,
+ "longestApexExecutionNano": 142235887
+ },
+ {
+ "batchNumber": 8554,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 157491289,
+ "shortestRoundTripNano": 55824901,
+ "longestRoundTripNano": 192440019,
+ "averageApexExecutionNano": 67071443,
+ "shortestApexExecutionNano": 4952009,
+ "longestApexExecutionNano": 139520984
+ },
+ {
+ "batchNumber": 8555,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143419539,
+ "shortestRoundTripNano": 69284880,
+ "longestRoundTripNano": 170106781,
+ "averageApexExecutionNano": 55638947,
+ "shortestApexExecutionNano": 6893104,
+ "longestApexExecutionNano": 123358239
+ },
+ {
+ "batchNumber": 8556,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152484769,
+ "shortestRoundTripNano": 42553852,
+ "longestRoundTripNano": 198828823,
+ "averageApexExecutionNano": 51399356,
+ "shortestApexExecutionNano": 7510456,
+ "longestApexExecutionNano": 122060600
+ },
+ {
+ "batchNumber": 8557,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142448651,
+ "shortestRoundTripNano": 71987884,
+ "longestRoundTripNano": 166334016,
+ "averageApexExecutionNano": 54708286,
+ "shortestApexExecutionNano": 8541816,
+ "longestApexExecutionNano": 126874805
+ },
+ {
+ "batchNumber": 8558,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146535777,
+ "shortestRoundTripNano": 90050290,
+ "longestRoundTripNano": 174922354,
+ "averageApexExecutionNano": 59551634,
+ "shortestApexExecutionNano": 12232128,
+ "longestApexExecutionNano": 113818080
+ },
+ {
+ "batchNumber": 8559,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 179090188,
+ "shortestRoundTripNano": 98852845,
+ "longestRoundTripNano": 232403043,
+ "averageApexExecutionNano": 85746311,
+ "shortestApexExecutionNano": 6500616,
+ "longestApexExecutionNano": 139488073
+ },
+ {
+ "batchNumber": 8560,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138274359,
+ "shortestRoundTripNano": 64303718,
+ "longestRoundTripNano": 170989952,
+ "averageApexExecutionNano": 63133440,
+ "shortestApexExecutionNano": 8155710,
+ "longestApexExecutionNano": 130590992
+ },
+ {
+ "batchNumber": 8561,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155792995,
+ "shortestRoundTripNano": 63523929,
+ "longestRoundTripNano": 194438562,
+ "averageApexExecutionNano": 68452948,
+ "shortestApexExecutionNano": 8565814,
+ "longestApexExecutionNano": 130617256
+ },
+ {
+ "batchNumber": 8562,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152847912,
+ "shortestRoundTripNano": 38984136,
+ "longestRoundTripNano": 185522657,
+ "averageApexExecutionNano": 80105218,
+ "shortestApexExecutionNano": 9897372,
+ "longestApexExecutionNano": 146743699
+ },
+ {
+ "batchNumber": 8563,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152018359,
+ "shortestRoundTripNano": 56762914,
+ "longestRoundTripNano": 190482056,
+ "averageApexExecutionNano": 62332241,
+ "shortestApexExecutionNano": 13748470,
+ "longestApexExecutionNano": 143692198
+ },
+ {
+ "batchNumber": 8564,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 164512816,
+ "shortestRoundTripNano": 89405184,
+ "longestRoundTripNano": 191400430,
+ "averageApexExecutionNano": 69928460,
+ "shortestApexExecutionNano": 9488239,
+ "longestApexExecutionNano": 138365851
+ },
+ {
+ "batchNumber": 8565,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38034",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150854314,
+ "shortestRoundTripNano": 55544011,
+ "longestRoundTripNano": 180478608,
+ "averageApexExecutionNano": 52177087,
+ "shortestApexExecutionNano": 6828973,
+ "longestApexExecutionNano": 122057969
+ },
+ {
+ "batchNumber": 8566,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 202920337,
+ "shortestRoundTripNano": 68327577,
+ "longestRoundTripNano": 255838874,
+ "averageApexExecutionNano": 80815877,
+ "shortestApexExecutionNano": 7860195,
+ "longestApexExecutionNano": 163723545
+ },
+ {
+ "batchNumber": 8567,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148968297,
+ "shortestRoundTripNano": 62504155,
+ "longestRoundTripNano": 174842938,
+ "averageApexExecutionNano": 52289371,
+ "shortestApexExecutionNano": 10117282,
+ "longestApexExecutionNano": 120801959
+ },
+ {
+ "batchNumber": 8568,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155840843,
+ "shortestRoundTripNano": 62238822,
+ "longestRoundTripNano": 190594536,
+ "averageApexExecutionNano": 56518565,
+ "shortestApexExecutionNano": 10575483,
+ "longestApexExecutionNano": 125126423
+ },
+ {
+ "batchNumber": 8569,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38042",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 243983185,
+ "shortestRoundTripNano": 58246220,
+ "longestRoundTripNano": 276242288,
+ "averageApexExecutionNano": 133785338,
+ "shortestApexExecutionNano": 6120561,
+ "longestApexExecutionNano": 231992079
+ },
+ {
+ "batchNumber": 8570,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123532722,
+ "shortestRoundTripNano": 59804955,
+ "longestRoundTripNano": 154743768,
+ "averageApexExecutionNano": 67900217,
+ "shortestApexExecutionNano": 8078068,
+ "longestApexExecutionNano": 123964911
+ },
+ {
+ "batchNumber": 8571,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 144998940,
+ "shortestRoundTripNano": 74345882,
+ "longestRoundTripNano": 174696532,
+ "averageApexExecutionNano": 44902871,
+ "shortestApexExecutionNano": 6137228,
+ "longestApexExecutionNano": 108638826
+ },
+ {
+ "batchNumber": 8572,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146444058,
+ "shortestRoundTripNano": 62173174,
+ "longestRoundTripNano": 200462316,
+ "averageApexExecutionNano": 51518388,
+ "shortestApexExecutionNano": 6102310,
+ "longestApexExecutionNano": 110610298
+ },
+ {
+ "batchNumber": 8573,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 143823751,
+ "shortestRoundTripNano": 63127127,
+ "longestRoundTripNano": 177862962,
+ "averageApexExecutionNano": 53745550,
+ "shortestApexExecutionNano": 8751124,
+ "longestApexExecutionNano": 137218543
+ },
+ {
+ "batchNumber": 8574,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 168183501,
+ "shortestRoundTripNano": 115594719,
+ "longestRoundTripNano": 189702335,
+ "averageApexExecutionNano": 71009844,
+ "shortestApexExecutionNano": 4823110,
+ "longestApexExecutionNano": 141342256
+ },
+ {
+ "batchNumber": 8575,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158026560,
+ "shortestRoundTripNano": 73112978,
+ "longestRoundTripNano": 188605657,
+ "averageApexExecutionNano": 59165259,
+ "shortestApexExecutionNano": 9745058,
+ "longestApexExecutionNano": 119767377
+ },
+ {
+ "batchNumber": 8576,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138060745,
+ "shortestRoundTripNano": 43493127,
+ "longestRoundTripNano": 168643481,
+ "averageApexExecutionNano": 64712085,
+ "shortestApexExecutionNano": 7325999,
+ "longestApexExecutionNano": 127600436
+ },
+ {
+ "batchNumber": 8577,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 140698285,
+ "shortestRoundTripNano": 70022547,
+ "longestRoundTripNano": 168390375,
+ "averageApexExecutionNano": 62003186,
+ "shortestApexExecutionNano": 7884024,
+ "longestApexExecutionNano": 132885011
+ },
+ {
+ "batchNumber": 8578,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139145492,
+ "shortestRoundTripNano": 58716277,
+ "longestRoundTripNano": 179839544,
+ "averageApexExecutionNano": 58445446,
+ "shortestApexExecutionNano": 7120568,
+ "longestApexExecutionNano": 127396056
+ },
+ {
+ "batchNumber": 8579,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38044",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 121296056,
+ "shortestRoundTripNano": 57797284,
+ "longestRoundTripNano": 147172579,
+ "averageApexExecutionNano": 61276746,
+ "shortestApexExecutionNano": 7387985,
+ "longestApexExecutionNano": 108277099
+ },
+ {
+ "batchNumber": 8580,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139003563,
+ "shortestRoundTripNano": 85749303,
+ "longestRoundTripNano": 162012239,
+ "averageApexExecutionNano": 48090166,
+ "shortestApexExecutionNano": 9298667,
+ "longestApexExecutionNano": 106802294
+ },
+ {
+ "batchNumber": 8581,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151958725,
+ "shortestRoundTripNano": 79561582,
+ "longestRoundTripNano": 178462705,
+ "averageApexExecutionNano": 77109786,
+ "shortestApexExecutionNano": 13512207,
+ "longestApexExecutionNano": 129997648
+ },
+ {
+ "batchNumber": 8582,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38046",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 170559465,
+ "shortestRoundTripNano": 58542681,
+ "longestRoundTripNano": 204698796,
+ "averageApexExecutionNano": 58280229,
+ "shortestApexExecutionNano": 7297664,
+ "longestApexExecutionNano": 132100521
+ },
+ {
+ "batchNumber": 8583,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 138035770,
+ "shortestRoundTripNano": 47453148,
+ "longestRoundTripNano": 169414384,
+ "averageApexExecutionNano": 61440870,
+ "shortestApexExecutionNano": 9407034,
+ "longestApexExecutionNano": 127515635
+ },
+ {
+ "batchNumber": 8584,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 151313766,
+ "shortestRoundTripNano": 66845986,
+ "longestRoundTripNano": 174445829,
+ "averageApexExecutionNano": 66276857,
+ "shortestApexExecutionNano": 5513694,
+ "longestApexExecutionNano": 125449852
+ },
+ {
+ "batchNumber": 8585,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 159715079,
+ "shortestRoundTripNano": 47617271,
+ "longestRoundTripNano": 191720181,
+ "averageApexExecutionNano": 67447135,
+ "shortestApexExecutionNano": 8809221,
+ "longestApexExecutionNano": 122714077
+ },
+ {
+ "batchNumber": 8586,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137848111,
+ "shortestRoundTripNano": 72651450,
+ "longestRoundTripNano": 165769633,
+ "averageApexExecutionNano": 58211642,
+ "shortestApexExecutionNano": 9759256,
+ "longestApexExecutionNano": 107733338
+ },
+ {
+ "batchNumber": 8587,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38048",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 124038667,
+ "shortestRoundTripNano": 37630101,
+ "longestRoundTripNano": 154564563,
+ "averageApexExecutionNano": 56934313,
+ "shortestApexExecutionNano": 7944956,
+ "longestApexExecutionNano": 112691044
+ },
+ {
+ "batchNumber": 8588,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127106721,
+ "shortestRoundTripNano": 58280486,
+ "longestRoundTripNano": 159321546,
+ "averageApexExecutionNano": 41569415,
+ "shortestApexExecutionNano": 7354802,
+ "longestApexExecutionNano": 119680281
+ },
+ {
+ "batchNumber": 8589,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 123568070,
+ "shortestRoundTripNano": 44126916,
+ "longestRoundTripNano": 154435125,
+ "averageApexExecutionNano": 47398573,
+ "shortestApexExecutionNano": 8330930,
+ "longestApexExecutionNano": 104595121
+ },
+ {
+ "batchNumber": 8590,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 155461591,
+ "shortestRoundTripNano": 68434074,
+ "longestRoundTripNano": 179859609,
+ "averageApexExecutionNano": 60655850,
+ "shortestApexExecutionNano": 6524322,
+ "longestApexExecutionNano": 138293314
+ },
+ {
+ "batchNumber": 8591,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 137441187,
+ "shortestRoundTripNano": 65000848,
+ "longestRoundTripNano": 176503093,
+ "averageApexExecutionNano": 51903002,
+ "shortestApexExecutionNano": 9429837,
+ "longestApexExecutionNano": 116807225
+ },
+ {
+ "batchNumber": 8592,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38050",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 160195478,
+ "shortestRoundTripNano": 74997765,
+ "longestRoundTripNano": 194386285,
+ "averageApexExecutionNano": 69185341,
+ "shortestApexExecutionNano": 12637993,
+ "longestApexExecutionNano": 120193574
+ },
+ {
+ "batchNumber": 8593,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 165208342,
+ "shortestRoundTripNano": 92275033,
+ "longestRoundTripNano": 191018885,
+ "averageApexExecutionNano": 83725876,
+ "shortestApexExecutionNano": 12277163,
+ "longestApexExecutionNano": 143329358
+ },
+ {
+ "batchNumber": 8594,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134253131,
+ "shortestRoundTripNano": 57410649,
+ "longestRoundTripNano": 159837025,
+ "averageApexExecutionNano": 53175426,
+ "shortestApexExecutionNano": 6605448,
+ "longestApexExecutionNano": 122764434
+ },
+ {
+ "batchNumber": 8595,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 136884401,
+ "shortestRoundTripNano": 58917487,
+ "longestRoundTripNano": 172293442,
+ "averageApexExecutionNano": 53632099,
+ "shortestApexExecutionNano": 6198035,
+ "longestApexExecutionNano": 120351631
+ },
+ {
+ "batchNumber": 8596,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 125126787,
+ "shortestRoundTripNano": 64263058,
+ "longestRoundTripNano": 149950739,
+ "averageApexExecutionNano": 55574182,
+ "shortestApexExecutionNano": 8507070,
+ "longestApexExecutionNano": 104704420
+ },
+ {
+ "batchNumber": 8597,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146156939,
+ "shortestRoundTripNano": 53942266,
+ "longestRoundTripNano": 182501555,
+ "averageApexExecutionNano": 59952897,
+ "shortestApexExecutionNano": 10467382,
+ "longestApexExecutionNano": 136743779
+ },
+ {
+ "batchNumber": 8598,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 133317083,
+ "shortestRoundTripNano": 64634160,
+ "longestRoundTripNano": 162148641,
+ "averageApexExecutionNano": 49508519,
+ "shortestApexExecutionNano": 8193904,
+ "longestApexExecutionNano": 107098101
+ },
+ {
+ "batchNumber": 8599,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38052",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 126230737,
+ "shortestRoundTripNano": 50305350,
+ "longestRoundTripNano": 153743385,
+ "averageApexExecutionNano": 52341059,
+ "shortestApexExecutionNano": 11070632,
+ "longestApexExecutionNano": 105384001
+ },
+ {
+ "batchNumber": 8600,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 127396649,
+ "shortestRoundTripNano": 50718446,
+ "longestRoundTripNano": 155800551,
+ "averageApexExecutionNano": 51336145,
+ "shortestApexExecutionNano": 5337295,
+ "longestApexExecutionNano": 108484887
+ },
+ {
+ "batchNumber": 8601,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135002355,
+ "shortestRoundTripNano": 81833620,
+ "longestRoundTripNano": 165305073,
+ "averageApexExecutionNano": 49081070,
+ "shortestApexExecutionNano": 10071069,
+ "longestApexExecutionNano": 102074046
+ },
+ {
+ "batchNumber": 8602,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147278343,
+ "shortestRoundTripNano": 75541873,
+ "longestRoundTripNano": 181026672,
+ "averageApexExecutionNano": 75513483,
+ "shortestApexExecutionNano": 5656873,
+ "longestApexExecutionNano": 141720071
+ },
+ {
+ "batchNumber": 8603,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38054",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 150241236,
+ "shortestRoundTripNano": 56155761,
+ "longestRoundTripNano": 176642957,
+ "averageApexExecutionNano": 63634802,
+ "shortestApexExecutionNano": 12789073,
+ "longestApexExecutionNano": 125583378
+ },
+ {
+ "batchNumber": 8604,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 132952231,
+ "shortestRoundTripNano": 61374725,
+ "longestRoundTripNano": 166061751,
+ "averageApexExecutionNano": 58309602,
+ "shortestApexExecutionNano": 10162947,
+ "longestApexExecutionNano": 119446036
+ },
+ {
+ "batchNumber": 8605,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 146335316,
+ "shortestRoundTripNano": 62346746,
+ "longestRoundTripNano": 173394767,
+ "averageApexExecutionNano": 65820365,
+ "shortestApexExecutionNano": 7025619,
+ "longestApexExecutionNano": 124257334
+ },
+ {
+ "batchNumber": 8606,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 112740089,
+ "shortestRoundTripNano": 52074769,
+ "longestRoundTripNano": 145872780,
+ "averageApexExecutionNano": 46696087,
+ "shortestApexExecutionNano": 5981715,
+ "longestApexExecutionNano": 101331411
+ },
+ {
+ "batchNumber": 8607,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 148542525,
+ "shortestRoundTripNano": 64443957,
+ "longestRoundTripNano": 179672123,
+ "averageApexExecutionNano": 49887889,
+ "shortestApexExecutionNano": 11284473,
+ "longestApexExecutionNano": 129258208
+ },
+ {
+ "batchNumber": 8608,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 162909412,
+ "shortestRoundTripNano": 56336662,
+ "longestRoundTripNano": 199205026,
+ "averageApexExecutionNano": 61173022,
+ "shortestApexExecutionNano": 7953807,
+ "longestApexExecutionNano": 150928533
+ },
+ {
+ "batchNumber": 8609,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 139115144,
+ "shortestRoundTripNano": 60548143,
+ "longestRoundTripNano": 167953441,
+ "averageApexExecutionNano": 53315027,
+ "shortestApexExecutionNano": 6679450,
+ "longestApexExecutionNano": 116459104
+ },
+ {
+ "batchNumber": 8610,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38058",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 142509320,
+ "shortestRoundTripNano": 68252785,
+ "longestRoundTripNano": 169398683,
+ "averageApexExecutionNano": 45581137,
+ "shortestApexExecutionNano": 6536630,
+ "longestApexExecutionNano": 115911044
+ },
+ {
+ "batchNumber": 8611,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135204266,
+ "shortestRoundTripNano": 39135520,
+ "longestRoundTripNano": 160411605,
+ "averageApexExecutionNano": 59358769,
+ "shortestApexExecutionNano": 10045398,
+ "longestApexExecutionNano": 119517051
+ },
+ {
+ "batchNumber": 8612,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 183454243,
+ "shortestRoundTripNano": 59229422,
+ "longestRoundTripNano": 241110907,
+ "averageApexExecutionNano": 81025256,
+ "shortestApexExecutionNano": 8549898,
+ "longestApexExecutionNano": 142364406
+ },
+ {
+ "batchNumber": 8613,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 153153782,
+ "shortestRoundTripNano": 76263812,
+ "longestRoundTripNano": 185545533,
+ "averageApexExecutionNano": 71372957,
+ "shortestApexExecutionNano": 9658836,
+ "longestApexExecutionNano": 131486446
+ },
+ {
+ "batchNumber": 8614,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154258105,
+ "shortestRoundTripNano": 58848211,
+ "longestRoundTripNano": 197248266,
+ "averageApexExecutionNano": 62818471,
+ "shortestApexExecutionNano": 7560224,
+ "longestApexExecutionNano": 155865545
+ },
+ {
+ "batchNumber": 8615,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119611672,
+ "shortestRoundTripNano": 54276941,
+ "longestRoundTripNano": 152433742,
+ "averageApexExecutionNano": 45163593,
+ "shortestApexExecutionNano": 6569967,
+ "longestApexExecutionNano": 93622039
+ },
+ {
+ "batchNumber": 8616,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38056",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 152667156,
+ "shortestRoundTripNano": 54124097,
+ "longestRoundTripNano": 184682929,
+ "averageApexExecutionNano": 67540918,
+ "shortestApexExecutionNano": 9978163,
+ "longestApexExecutionNano": 145157548
+ },
+ {
+ "batchNumber": 8617,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147344683,
+ "shortestRoundTripNano": 67441513,
+ "longestRoundTripNano": 172349075,
+ "averageApexExecutionNano": 61559851,
+ "shortestApexExecutionNano": 8410814,
+ "longestApexExecutionNano": 124875339
+ },
+ {
+ "batchNumber": 8618,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 147604177,
+ "shortestRoundTripNano": 56225385,
+ "longestRoundTripNano": 175048499,
+ "averageApexExecutionNano": 53053351,
+ "shortestApexExecutionNano": 8370559,
+ "longestApexExecutionNano": 119391175
+ },
+ {
+ "batchNumber": 8619,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 130190460,
+ "shortestRoundTripNano": 49318372,
+ "longestRoundTripNano": 176332714,
+ "averageApexExecutionNano": 48326586,
+ "shortestApexExecutionNano": 5609223,
+ "longestApexExecutionNano": 109894981
+ },
+ {
+ "batchNumber": 8620,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 119565880,
+ "shortestRoundTripNano": 38559461,
+ "longestRoundTripNano": 152736637,
+ "averageApexExecutionNano": 49190674,
+ "shortestApexExecutionNano": 5025355,
+ "longestApexExecutionNano": 115893838
+ },
+ {
+ "batchNumber": 8621,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 135914997,
+ "shortestRoundTripNano": 68690535,
+ "longestRoundTripNano": 159871687,
+ "averageApexExecutionNano": 61967017,
+ "shortestApexExecutionNano": 10914778,
+ "longestApexExecutionNano": 112359238
+ },
+ {
+ "batchNumber": 8622,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 134736620,
+ "shortestRoundTripNano": 69335059,
+ "longestRoundTripNano": 160015001,
+ "averageApexExecutionNano": 53173671,
+ "shortestApexExecutionNano": 15731748,
+ "longestApexExecutionNano": 113290215
+ },
+ {
+ "batchNumber": 8623,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 158537981,
+ "shortestRoundTripNano": 70697877,
+ "longestRoundTripNano": 187753357,
+ "averageApexExecutionNano": 66221249,
+ "shortestApexExecutionNano": 7280284,
+ "longestApexExecutionNano": 110794239
+ },
+ {
+ "batchNumber": 8624,
+ "batchSize": 50,
+ "apexClient": "localhost(127.0.0.1):38064",
+ "eventsNotSent": 0,
+ "eventsSent": 50,
+ "eventsNotReceived": 0,
+ "eventsReceived": 50,
+ "averageRoundTripNano": 154145441,
+ "shortestRoundTripNano": 76099730,
+ "longestRoundTripNano": 176291005,
+ "averageApexExecutionNano": 68750134,
+ "shortestApexExecutionNano": 12478432,
+ "longestApexExecutionNano": 125156990
+ }
+ ]
+} \ No newline at end of file
diff --git a/docs/development/devtools/zip/result.tar b/docs/development/devtools/zip/result.tar
new file mode 100644
index 00000000..39a29454
--- /dev/null
+++ b/docs/development/devtools/zip/result.tar
Binary files differ